X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fstandalone%2FMasterState.cpp;h=5ade4f1ed89a3f6009d19e54adb407c2d2c77a1e;hb=10a310869c61cc52046e165f36ac9639fe9d0c69;hp=81017f78603cea89bca967d440089e7c26876e05;hpb=69e4d6c0a86a27f9b3f1297e46c55b36059a24b9;p=blank.git diff --git a/src/standalone/MasterState.cpp b/src/standalone/MasterState.cpp index 81017f7..5ade4f1 100644 --- a/src/standalone/MasterState.cpp +++ b/src/standalone/MasterState.cpp @@ -36,6 +36,7 @@ MasterState::MasterState( , chunk_renderer(player.GetChunks()) , spawner(world, res.models, env.rng) , sky(env.loader.LoadCubeMap("skybox")) +, cli(world) , preload(env, chunk_loader, chunk_renderer) , unload(env, world.Chunks(), save) , chat(env, *this, *this) { @@ -99,6 +100,11 @@ void MasterState::Handle(const SDL_Event &event) { case SDL_KEYDOWN: // TODO: move to interface if (event.key.keysym.sym == SDLK_RETURN) { + chat.Clear(); + env.state.Push(&chat); + hud.KeepMessages(true); + } else if (event.key.keysym.sym == SDLK_SLASH) { + chat.Preset("/"); env.state.Push(&chat); hud.KeepMessages(true); } else { @@ -206,7 +212,12 @@ void MasterState::Exit() { } void MasterState::OnLineSubmit(const std::string &line) { - if (!line.empty()) { + if (line.empty()) { + return; + } + if (line[0] == '/' && line.size() > 1 && line[1] != '/') { + cli.Execute(player, line.substr(1)); + } else { hud.PostMessage(line); } }