]> git.localhorst.tv Git - blank.git/blob - src/ui/ui.cpp
show net stats in debug overlay
[blank.git] / src / ui / ui.cpp
1 #include "ClientController.hpp"
2 #include "DirectInput.hpp"
3 #include "HUD.hpp"
4 #include "InteractiveManipulator.hpp"
5 #include "Interface.hpp"
6 #include "Keymap.hpp"
7 #include "PlayerController.hpp"
8
9 #include "../app/Assets.hpp"
10 #include "../app/Config.hpp"
11 #include "../app/Environment.hpp"
12 #include "../app/FrameCounter.hpp"
13 #include "../app/init.hpp"
14 #include "../audio/Audio.hpp"
15 #include "../audio/SoundBank.hpp"
16 #include "../graphics/Font.hpp"
17 #include "../graphics/Viewport.hpp"
18 #include "../io/TokenStreamReader.hpp"
19 #include "../model/bounds.hpp"
20 #include "../net/ConnectionHandler.hpp"
21 #include "../world/BlockLookup.hpp"
22 #include "../world/World.hpp"
23 #include "../world/WorldManipulator.hpp"
24
25 #include <algorithm>
26 #include <cmath>
27 #include <iostream>
28 #include <map>
29 #include <sstream>
30 #include <glm/gtc/matrix_transform.hpp>
31 #include <glm/gtx/rotate_vector.hpp>
32 #include <glm/gtx/io.hpp>
33
34
35 namespace blank {
36
37 PlayerController::PlayerController(World &world, Player &player)
38 : world(world)
39 , player(player)
40 , move_dir(0.0f)
41 , dirty(true)
42 , aim_world()
43 , aim_entity() {
44         player.GetEntity().SetController(*this);
45 }
46
47 PlayerController::~PlayerController() {
48         if (&player.GetEntity().GetController() == this) {
49                 player.GetEntity().UnsetController();
50         }
51 }
52
53 void PlayerController::SetMovement(const glm::vec3 &m) noexcept {
54         if (dot(m, m) > 1.0f) {
55                 move_dir = normalize(m);
56         } else {
57                 move_dir = m;
58         }
59         Invalidate();
60 }
61
62 glm::vec3 PlayerController::ControlForce(const Entity &e, const EntityState &s) const {
63         return TargetVelocity(rotateY(move_dir * e.MaxVelocity(), s.yaw), s, 5.0f);
64 }
65
66 void PlayerController::TurnHead(float dp, float dy) noexcept {
67         player.GetEntity().TurnHead(dp, dy);
68 }
69
70 float PlayerController::GetPitch() const noexcept {
71         return player.GetEntity().Pitch();
72 }
73
74 float PlayerController::GetYaw() const noexcept {
75         return player.GetEntity().Yaw();
76 }
77
78 void PlayerController::SelectInventory(int i) noexcept {
79         player.SetInventorySlot(i);
80 }
81
82 int PlayerController::InventorySlot() const noexcept {
83         return player.GetInventorySlot();
84 }
85
86 void PlayerController::Invalidate() noexcept {
87         dirty = true;
88 }
89
90 void PlayerController::UpdatePlayer() noexcept {
91         if (dirty) {
92                 Ray aim = player.Aim();
93                 if (!world.Intersection(aim, glm::mat4(1.0f), player.GetEntity().ChunkCoords(), aim_world)) {
94                         aim_world = WorldCollision();
95                 }
96                 if (!world.Intersection(aim, glm::mat4(1.0f), player.GetEntity(), aim_entity)) {
97                         aim_entity = EntityCollision();
98                 }
99                 if (aim_world && aim_entity) {
100                         // got both, pick the closest one
101                         if (aim_world.depth < aim_entity.depth) {
102                                 aim_entity = EntityCollision();
103                         } else {
104                                 aim_world = WorldCollision();
105                         }
106                 }
107                 dirty = false;
108         }
109 }
110
111
112 DirectInput::DirectInput(World &world, Player &player, WorldManipulator &manip)
113 : PlayerController(world, player)
114 , manip(manip)
115 , place_timer(0.25f)
116 , remove_timer(0.25f) {
117
118 }
119
120 void DirectInput::Update(Entity &, float dt) {
121         Invalidate(); // world has changed in the meantime
122         UpdatePlayer();
123
124         remove_timer.Update(dt);
125         if (remove_timer.Hit()) {
126                 RemoveBlock();
127         }
128
129         place_timer.Update(dt);
130         if (place_timer.Hit()) {
131                 PlaceBlock();
132         }
133 }
134
135 void DirectInput::StartPrimaryAction() {
136         if (!remove_timer.Running()) {
137                 RemoveBlock();
138                 remove_timer.Start();
139         }
140 }
141
142 void DirectInput::StopPrimaryAction() {
143         remove_timer.Stop();
144 }
145
146 void DirectInput::StartSecondaryAction() {
147         if (!place_timer.Running()) {
148                 PlaceBlock();
149                 place_timer.Start();
150         }
151 }
152
153 void DirectInput::StopSecondaryAction() {
154         place_timer.Stop();
155 }
156
157 void DirectInput::StartTertiaryAction() {
158         PickBlock();
159 }
160
161 void DirectInput::StopTertiaryAction() {
162         // nothing
163 }
164
165 void DirectInput::PickBlock() {
166         UpdatePlayer();
167         if (!BlockFocus()) return;
168         SelectInventory(BlockFocus().GetBlock().type - 1);
169 }
170
171 void DirectInput::PlaceBlock() {
172         UpdatePlayer();
173         if (!BlockFocus()) return;
174
175         BlockLookup next_block(BlockFocus().chunk, BlockFocus().BlockPos(), Block::NormalFace(BlockFocus().normal));
176         if (!next_block) {
177                 return;
178         }
179         manip.SetBlock(next_block.GetChunk(), next_block.GetBlockIndex(), Block(InventorySlot() + 1));
180         Invalidate();
181 }
182
183 void DirectInput::RemoveBlock() {
184         UpdatePlayer();
185         if (!BlockFocus()) return;
186         manip.SetBlock(BlockFocus().GetChunk(), BlockFocus().block, Block(0));
187         Invalidate();
188 }
189
190
191 HUD::HUD(Environment &env, Config &config, const Player &player)
192 : env(env)
193 , config(config)
194 , player(player)
195 // block focus
196 , outline()
197 , outline_transform(1.0f)
198 , outline_visible(false)
199 // "inventory"
200 , block()
201 , block_buf()
202 , block_transform(1.0f)
203 , block_label()
204 , block_visible(false)
205 // debug overlay
206 , counter_text()
207 , position_text()
208 , orientation_text()
209 , block_text()
210 , show_block(false)
211 , show_entity(false)
212 // net stats
213 , bandwidth_text()
214 , rtt_text()
215 , packet_loss_text()
216 , show_net(false)
217 // message box
218 , messages(env.assets.small_ui_font)
219 , msg_timer(5000)
220 , msg_keep(false)
221 // crosshair
222 , crosshair() {
223         const float ls = env.assets.small_ui_font.LineSkip();
224
225         // "inventory"
226         block_transform = glm::translate(block_transform, glm::vec3(50.0f, 50.0f, 0.0f));
227         block_transform = glm::scale(block_transform, glm::vec3(50.0f));
228         block_transform = glm::rotate(block_transform, 3.5f, glm::vec3(1.0f, 0.0f, 0.0f));
229         block_transform = glm::rotate(block_transform, 0.35f, glm::vec3(0.0f, 1.0f, 0.0f));
230         block_label.Position(
231                 glm::vec3(50.0f, 85.0f, 0.0f),
232                 Gravity::NORTH_WEST,
233                 Gravity::NORTH
234         );
235         block_label.Foreground(glm::vec4(1.0f));
236         block_label.Background(glm::vec4(0.5f));
237
238         // debug overlay
239         counter_text.Position(glm::vec3(-25.0f, 25.0f, 0.0f), Gravity::NORTH_EAST);
240         counter_text.Foreground(glm::vec4(1.0f));
241         counter_text.Background(glm::vec4(0.5f));
242         position_text.Position(glm::vec3(-25.0f, 25.0f + ls, 0.0f), Gravity::NORTH_EAST);
243         position_text.Foreground(glm::vec4(1.0f));
244         position_text.Background(glm::vec4(0.5f));
245         orientation_text.Position(glm::vec3(-25.0f, 25.0f + 2 * ls, 0.0f), Gravity::NORTH_EAST);
246         orientation_text.Foreground(glm::vec4(1.0f));
247         orientation_text.Background(glm::vec4(0.5f));
248         block_text.Position(glm::vec3(-25.0f, 25.0f + 4 * ls, 0.0f), Gravity::NORTH_EAST);
249         block_text.Foreground(glm::vec4(1.0f));
250         block_text.Background(glm::vec4(0.5f));
251         block_text.Set(env.assets.small_ui_font, "Block: none");
252         entity_text.Position(glm::vec3(-25.0f, 25.0f + 4 * ls, 0.0f), Gravity::NORTH_EAST);
253         entity_text.Foreground(glm::vec4(1.0f));
254         entity_text.Background(glm::vec4(0.5f));
255         entity_text.Set(env.assets.small_ui_font, "Entity: none");
256
257         // net stats
258         bandwidth_text.Position(glm::vec3(-25.0f, 25.0f + 6 * ls, 0.0f), Gravity::NORTH_EAST);
259         bandwidth_text.Foreground(glm::vec4(1.0f));
260         bandwidth_text.Background(glm::vec4(0.5f));
261         bandwidth_text.Set(env.assets.small_ui_font, "TX: 0.0KB/s RX: 0.0KB/s");
262         rtt_text.Position(glm::vec3(-25.0f, 25.0f + 7 * ls, 0.0f), Gravity::NORTH_EAST);
263         rtt_text.Foreground(glm::vec4(1.0f));
264         rtt_text.Background(glm::vec4(0.5f));
265         rtt_text.Set(env.assets.small_ui_font, "RTT: unavailable");
266         packet_loss_text.Position(glm::vec3(-25.0f, 25.0f + 8 * ls, 0.0f), Gravity::NORTH_EAST);
267         packet_loss_text.Foreground(glm::vec4(1.0f));
268         packet_loss_text.Background(glm::vec4(0.5f));
269         packet_loss_text.Set(env.assets.small_ui_font, "Packet loss: 0.0%");
270
271         // message box
272         messages.Position(glm::vec3(25.0f, -25.0f - 2 * ls, 0.0f), Gravity::SOUTH_WEST);
273         messages.Foreground(glm::vec4(1.0f));
274         messages.Background(glm::vec4(0.5f));
275
276         // crosshair
277         PrimitiveMesh::Buffer buf;
278         buf.vertices = std::vector<glm::vec3>({
279                 { -10.0f,   0.0f, 0.0f }, { 10.0f,  0.0f, 0.0f },
280                 {   0.0f, -10.0f, 0.0f }, {  0.0f, 10.0f, 0.0f },
281         });
282         buf.indices = std::vector<PrimitiveMesh::Index>({
283                 0, 1, 2, 3
284         });
285         buf.colors.resize(4, { 10.0f, 10.0f, 10.0f, 1.0f });
286         crosshair.Update(buf);
287 }
288
289 namespace {
290
291 PrimitiveMesh::Buffer outl_buf;
292
293 }
294
295 void HUD::FocusBlock(const Chunk &chunk, int index) {
296         const Block &block = chunk.BlockAt(index);
297         const BlockType &type = chunk.Type(index);
298         outl_buf.Clear();
299         type.OutlinePrimitiveMesh(outl_buf);
300         outline.Update(outl_buf);
301         outline_transform = chunk.Transform(player.GetEntity().ChunkCoords());
302         outline_transform *= chunk.ToTransform(Chunk::ToPos(index), index);
303         outline_transform *= glm::scale(glm::vec3(1.005f));
304         outline_visible = true;
305         {
306                 std::stringstream s;
307                 s << "Block: "
308                         << type.label
309                         << ", face: " << block.GetFace()
310                         << ", turn: " << block.GetTurn();
311                 block_text.Set(env.assets.small_ui_font, s.str());
312         }
313         show_block = true;
314         show_entity = false;
315 }
316
317 void HUD::FocusEntity(const Entity &entity) {
318         {
319                 std::stringstream s;
320                 s << "Entity: " << entity.Name();
321                 entity_text.Set(env.assets.small_ui_font, s.str());
322         }
323         show_block = false;
324         show_entity = true;
325 }
326
327 void HUD::FocusNone() {
328         outline_visible = false;
329         show_block = false;
330         show_entity = false;
331 }
332
333 void HUD::DisplayNone() {
334         block_visible = false;
335 }
336
337 void HUD::Display(const BlockType &type) {
338         block_buf.Clear();
339         type.FillEntityMesh(block_buf);
340         block.Update(block_buf);
341
342         block_label.Set(env.assets.small_ui_font, type.label);
343
344         block_visible = type.visible;
345 }
346
347
348 void HUD::UpdateDebug() {
349         UpdateCounter();
350         UpdatePosition();
351         UpdateOrientation();
352 }
353
354 void HUD::UpdateCounter() {
355         std::stringstream s;
356         s << std::setprecision(3) <<
357                 "avg: " << env.counter.Average().running << "ms, "
358                 "peak: " << env.counter.Peak().running << "ms";
359         std::string text = s.str();
360         counter_text.Set(env.assets.small_ui_font, text);
361 }
362
363 void HUD::UpdatePosition() {
364         std::stringstream s;
365         s << std::setprecision(3) << "pos: " << player.GetEntity().AbsolutePosition();
366         position_text.Set(env.assets.small_ui_font, s.str());
367 }
368
369 void HUD::UpdateOrientation() {
370         std::stringstream s;
371         s << std::setprecision(3) << "pitch: " << rad2deg(player.GetEntity().Pitch())
372                 << ", yaw: " << rad2deg(player.GetEntity().Yaw());
373         orientation_text.Set(env.assets.small_ui_font, s.str());
374 }
375
376 void HUD::PostMessage(const char *msg) {
377         messages.PushLine(msg);
378         msg_timer.Reset();
379         msg_timer.Start();
380         std::cout << msg << std::endl;
381 }
382
383
384 void HUD::UpdateNetStats(const ConnectionHandler &conn) {
385         std::stringstream s;
386         s << std::fixed << std::setprecision(1)
387                 << "TX: " << conn.Upstream()
388                 << "KB/s, RX: " << conn.Downstream() << "KB/s";
389         bandwidth_text.Set(env.assets.small_ui_font, s.str());
390
391         s.str("");
392         s << "RTT: " << conn.RoundTripTime() << "ms";
393         rtt_text.Set(env.assets.small_ui_font, s.str());
394
395         s.str("");
396         s << "Packet loss: " << (conn.PacketLoss() * 100.0f) << "%";
397         packet_loss_text.Set(env.assets.small_ui_font, s.str());
398
399         show_net = true;
400 }
401
402
403 void HUD::Update(int dt) {
404         msg_timer.Update(dt);
405         if (msg_timer.HitOnce()) {
406                 msg_timer.Stop();
407         }
408
409         if (config.video.debug) {
410                 if (env.counter.Changed()) {
411                         UpdateCounter();
412                 }
413                 UpdatePosition();
414                 UpdateOrientation();
415         }
416 }
417
418 void HUD::Render(Viewport &viewport) noexcept {
419         // block focus
420         if (outline_visible && config.video.world) {
421                 PlainColor &outline_prog = viewport.WorldColorProgram();
422                 outline_prog.SetM(outline_transform);
423                 outline.DrawLines();
424         }
425
426         // clear depth buffer so everything renders above the world
427         viewport.ClearDepth();
428
429         if (config.video.hud) {
430                 // "inventory"
431                 if (block_visible) {
432                         DirectionalLighting &world_prog = viewport.HUDProgram();
433                         world_prog.SetLightDirection({ 1.0f, 3.0f, 5.0f });
434                         // disable distance fog
435                         world_prog.SetFogDensity(0.0f);
436
437                         viewport.DisableBlending();
438                         world_prog.SetM(block_transform);
439                         block.Draw();
440                         block_label.Render(viewport);
441                 }
442
443                 // message box
444                 if (msg_keep || msg_timer.Running()) {
445                         messages.Render(viewport);
446                 }
447
448                 // crosshair
449                 PlainColor &outline_prog = viewport.HUDColorProgram();
450                 viewport.EnableInvertBlending();
451                 viewport.SetCursor(glm::vec3(0.0f), Gravity::CENTER);
452                 outline_prog.SetM(viewport.Cursor());
453                 crosshair.DrawLines();
454         }
455
456         // debug overlay
457         if (config.video.debug) {
458                 counter_text.Render(viewport);
459                 position_text.Render(viewport);
460                 orientation_text.Render(viewport);
461                 if (show_block) {
462                         block_text.Render(viewport);
463                 } else if (show_entity) {
464                         entity_text.Render(viewport);
465                 }
466                 if (show_net) {
467                         bandwidth_text.Render(viewport);
468                         rtt_text.Render(viewport);
469                         packet_loss_text.Render(viewport);
470                 }
471         }
472 }
473
474
475 InteractiveManipulator::InteractiveManipulator(Audio &audio, const SoundBank &sounds, Entity &player)
476 : player(player)
477 , audio(audio)
478 , sounds(sounds) {
479
480 }
481
482 void InteractiveManipulator::SetBlock(Chunk &chunk, int index, const Block &block) {
483         const BlockType &old_type = chunk.Type(index);
484         chunk.SetBlock(index, block);
485         const BlockType &new_type = chunk.Type(index);
486         glm::vec3 coords = chunk.ToSceneCoords(player.ChunkCoords(), Chunk::ToCoords(index));
487         if (new_type.id == 0) {
488                 if (old_type.remove_sound >= 0) {
489                         audio.Play(sounds[old_type.remove_sound], coords);
490                 }
491         } else {
492                 if (new_type.place_sound >= 0) {
493                         audio.Play(sounds[new_type.place_sound], coords);
494                 }
495         }
496 }
497
498
499 Interface::Interface(
500         Config &config,
501         const Keymap &keymap,
502         PlayerController &pc,
503         ClientController &cc)
504 : config(config)
505 , keymap(keymap)
506 , player_ctrl(pc)
507 , client_ctrl(cc)
508 , fwd(0)
509 , rev(0)
510 , slot(0)
511 , num_slots(10)
512 , locked(false) {
513
514 }
515
516 void Interface::Lock() {
517         fwd = glm::ivec3(0);
518         rev = glm::ivec3(0);
519         locked = true;
520 }
521
522 void Interface::Unlock() {
523         locked = false;
524 }
525
526 void Interface::HandlePress(const SDL_KeyboardEvent &event) {
527         if (!config.input.keyboard) return;
528
529         Keymap::Action action = keymap.Lookup(event);
530         switch (action) {
531                 case Keymap::MOVE_FORWARD:
532                         rev.z = 1;
533                         UpdateMovement();
534                         break;
535                 case Keymap::MOVE_BACKWARD:
536                         fwd.z = 1;
537                         UpdateMovement();
538                         break;
539                 case Keymap::MOVE_LEFT:
540                         rev.x = 1;
541                         UpdateMovement();
542                         break;
543                 case Keymap::MOVE_RIGHT:
544                         fwd.x = 1;
545                         UpdateMovement();
546                         break;
547                 case Keymap::MOVE_UP:
548                         fwd.y = 1;
549                         UpdateMovement();
550                         break;
551                 case Keymap::MOVE_DOWN:
552                         rev.y = 1;
553                         UpdateMovement();
554                         break;
555
556                 case Keymap::PRIMARY:
557                         player_ctrl.StartPrimaryAction();
558                         break;
559                 case Keymap::SECONDARY:
560                         player_ctrl.StartSecondaryAction();
561                         break;
562                 case Keymap::TERTIARY:
563                         player_ctrl.StartTertiaryAction();
564                         break;
565
566                 case Keymap::INV_NEXT:
567                         InvRel(1);
568                         break;
569                 case Keymap::INV_PREVIOUS:
570                         InvRel(-1);
571                         break;
572                 case Keymap::INV_1:
573                 case Keymap::INV_2:
574                 case Keymap::INV_3:
575                 case Keymap::INV_4:
576                 case Keymap::INV_5:
577                 case Keymap::INV_6:
578                 case Keymap::INV_7:
579                 case Keymap::INV_8:
580                 case Keymap::INV_9:
581                 case Keymap::INV_10:
582                         InvAbs(action - Keymap::INV_1);
583                         break;
584
585                 case Keymap::EXIT:
586                         client_ctrl.Exit();
587                         break;
588
589                 case Keymap::TOGGLE_AUDIO:
590                         config.audio.enabled = !config.audio.enabled;
591                         client_ctrl.SetAudio(config.audio.enabled);
592                         break;
593                 case Keymap::TOGGLE_VIDEO:
594                         config.video.world = !config.video.world;
595                         client_ctrl.SetVideo(config.video.world);
596                         break;
597                 case Keymap::TOGGLE_HUD:
598                         config.video.hud = !config.video.hud;
599                         client_ctrl.SetHUD(config.video.hud);
600                         break;
601                 case Keymap::TOGGLE_DEBUG:
602                         config.video.debug = !config.video.debug;
603                         client_ctrl.SetDebug(config.video.debug);
604                         break;
605
606                 default:
607                         break;
608         }
609 }
610
611 void Interface::HandleRelease(const SDL_KeyboardEvent &event) {
612         if (!config.input.keyboard) return;
613
614         switch (keymap.Lookup(event)) {
615                 case Keymap::MOVE_FORWARD:
616                         rev.z = 0;
617                         UpdateMovement();
618                         break;
619                 case Keymap::MOVE_BACKWARD:
620                         fwd.z = 0;
621                         UpdateMovement();
622                         break;
623                 case Keymap::MOVE_LEFT:
624                         rev.x = 0;
625                         UpdateMovement();
626                         break;
627                 case Keymap::MOVE_RIGHT:
628                         fwd.x = 0;
629                         UpdateMovement();
630                         break;
631                 case Keymap::MOVE_UP:
632                         fwd.y = 0;
633                         UpdateMovement();
634                         break;
635                 case Keymap::MOVE_DOWN:
636                         rev.y = 0;
637                         UpdateMovement();
638                         break;
639
640                 case Keymap::PRIMARY:
641                         player_ctrl.StopPrimaryAction();
642                         break;
643                 case Keymap::SECONDARY:
644                         player_ctrl.StopSecondaryAction();
645                         break;
646                 case Keymap::TERTIARY:
647                         player_ctrl.StopTertiaryAction();
648                         break;
649
650                 default:
651                         break;
652         }
653 }
654
655 void Interface::Handle(const SDL_MouseMotionEvent &event) {
656         if (locked || !config.input.mouse) return;
657         player_ctrl.TurnHead(
658                 event.yrel * config.input.pitch_sensitivity,
659                 event.xrel * config.input.yaw_sensitivity);
660 }
661
662 void Interface::HandlePress(const SDL_MouseButtonEvent &event) {
663         if (!config.input.mouse) return;
664
665         switch (event.button) {
666                 case SDL_BUTTON_LEFT:
667                         player_ctrl.StartPrimaryAction();
668                         break;
669                 case SDL_BUTTON_RIGHT:
670                         player_ctrl.StartSecondaryAction();
671                         break;
672                 case SDL_BUTTON_MIDDLE:
673                         player_ctrl.StartTertiaryAction();
674                         break;
675         }
676 }
677
678 void Interface::HandleRelease(const SDL_MouseButtonEvent &event) {
679         if (!config.input.mouse) return;
680
681         switch (event.button) {
682                 case SDL_BUTTON_LEFT:
683                         player_ctrl.StopPrimaryAction();
684                         break;
685                 case SDL_BUTTON_RIGHT:
686                         player_ctrl.StopSecondaryAction();
687                         break;
688                 case SDL_BUTTON_MIDDLE:
689                         player_ctrl.StopTertiaryAction();
690                         break;
691         }
692 }
693
694
695 void Interface::Handle(const SDL_MouseWheelEvent &event) {
696         if (!config.input.mouse) return;
697
698         if (event.y < 0) {
699                 InvRel(1);
700         } else if (event.y > 0) {
701                 InvRel(-1);
702         }
703 }
704
705 void Interface::UpdateMovement() {
706         player_ctrl.SetMovement(glm::vec3(fwd - rev));
707 }
708
709 void Interface::InvAbs(int s) {
710         slot = s % num_slots;
711         while (slot < 0) {
712                 slot += num_slots;
713         }
714         player_ctrl.SelectInventory(slot);
715 }
716
717 void Interface::InvRel(int delta) {
718         InvAbs(slot + delta);
719 }
720
721
722 Keymap::Keymap()
723 : codemap{ NONE } {
724
725 }
726
727 void Keymap::Map(SDL_Scancode scancode, Action action) {
728         if (scancode > MAX_SCANCODE) {
729                 throw std::runtime_error("refusing to map scancode: too damn high");
730         }
731         codemap[scancode] = action;
732 }
733
734 Keymap::Action Keymap::Lookup(SDL_Scancode scancode) const {
735         if (scancode < NUM_SCANCODES) {
736                 return codemap[scancode];
737         } else {
738                 return NONE;
739         }
740 }
741
742
743 void Keymap::LoadDefault() {
744         Map(SDL_SCANCODE_UP, MOVE_FORWARD);
745         Map(SDL_SCANCODE_W, MOVE_FORWARD);
746         Map(SDL_SCANCODE_DOWN, MOVE_BACKWARD);
747         Map(SDL_SCANCODE_S, MOVE_BACKWARD);
748         Map(SDL_SCANCODE_LEFT, MOVE_LEFT);
749         Map(SDL_SCANCODE_A, MOVE_LEFT);
750         Map(SDL_SCANCODE_RIGHT, MOVE_RIGHT);
751         Map(SDL_SCANCODE_D, MOVE_RIGHT);
752         Map(SDL_SCANCODE_SPACE, MOVE_UP);
753         Map(SDL_SCANCODE_RSHIFT, MOVE_UP);
754         Map(SDL_SCANCODE_LSHIFT, MOVE_DOWN);
755         Map(SDL_SCANCODE_LCTRL, MOVE_DOWN);
756         Map(SDL_SCANCODE_RCTRL, MOVE_DOWN);
757
758         Map(SDL_SCANCODE_TAB, INV_NEXT);
759         Map(SDL_SCANCODE_RIGHTBRACKET, INV_NEXT);
760         Map(SDL_SCANCODE_LEFTBRACKET, INV_PREVIOUS);
761         Map(SDL_SCANCODE_1, INV_1);
762         Map(SDL_SCANCODE_2, INV_2);
763         Map(SDL_SCANCODE_3, INV_3);
764         Map(SDL_SCANCODE_4, INV_4);
765         Map(SDL_SCANCODE_5, INV_5);
766         Map(SDL_SCANCODE_6, INV_6);
767         Map(SDL_SCANCODE_7, INV_7);
768         Map(SDL_SCANCODE_8, INV_8);
769         Map(SDL_SCANCODE_9, INV_9);
770         Map(SDL_SCANCODE_0, INV_10);
771
772         Map(SDL_SCANCODE_INSERT, SECONDARY);
773         Map(SDL_SCANCODE_RETURN, SECONDARY);
774         Map(SDL_SCANCODE_MENU, TERTIARY);
775         Map(SDL_SCANCODE_DELETE, PRIMARY);
776         Map(SDL_SCANCODE_BACKSPACE, PRIMARY);
777
778         Map(SDL_SCANCODE_F1, TOGGLE_HUD);
779         Map(SDL_SCANCODE_F2, TOGGLE_VIDEO);
780         Map(SDL_SCANCODE_F3, TOGGLE_DEBUG);
781         Map(SDL_SCANCODE_F4, TOGGLE_AUDIO);
782
783         Map(SDL_SCANCODE_ESCAPE, EXIT);
784 }
785
786
787 void Keymap::Load(std::istream &is) {
788         TokenStreamReader in(is);
789         std::string key_name;
790         std::string action_name;
791         SDL_Scancode key;
792         Action action;
793         while (in.HasMore()) {
794                 if (in.Peek().type == Token::STRING) {
795                         in.ReadString(key_name);
796                         key = SDL_GetScancodeFromName(key_name.c_str());
797                 } else {
798                         key = SDL_Scancode(in.GetInt());
799                 }
800                 in.Skip(Token::EQUALS);
801                 in.ReadIdentifier(action_name);
802                 action = StringToAction(action_name);
803                 if (in.HasMore() && in.Peek().type == Token::SEMICOLON) {
804                         in.Skip(Token::SEMICOLON);
805                 }
806                 Map(key, action);
807         }
808 }
809
810 void Keymap::Save(std::ostream &out) {
811         for (unsigned int i = 0; i < NUM_SCANCODES; ++i) {
812                 if (codemap[i] == NONE) continue;
813
814                 const char *str = SDL_GetScancodeName(SDL_Scancode(i));
815                 if (str && *str) {
816                         out << '"';
817                         while (*str) {
818                                 if (*str == '"') {
819                                         out << "\\\"";
820                                 } else {
821                                         out << *str;
822                                 }
823                                 ++str;
824                         }
825                         out << '"';
826                 } else {
827                         out << i;
828                 }
829
830                 out << " = " << ActionToString(codemap[i]) << std::endl;;
831         }
832 }
833
834
835 namespace {
836
837 std::map<std::string, Keymap::Action> action_map = {
838         { "none", Keymap::NONE },
839         { "move_forward", Keymap::MOVE_FORWARD },
840         { "move_backward", Keymap::MOVE_BACKWARD },
841         { "move_left", Keymap::MOVE_LEFT },
842         { "move_right", Keymap::MOVE_RIGHT },
843         { "move_up", Keymap::MOVE_UP },
844         { "move_down", Keymap::MOVE_DOWN },
845
846         { "primary", Keymap::PRIMARY },
847         { "secondary", Keymap::SECONDARY },
848         { "tertiary", Keymap::TERTIARY },
849
850         { "inventory_next", Keymap::INV_NEXT },
851         { "inventory_prev", Keymap::INV_PREVIOUS },
852         { "inventory_1", Keymap::INV_1 },
853         { "inventory_2", Keymap::INV_2 },
854         { "inventory_3", Keymap::INV_3 },
855         { "inventory_4", Keymap::INV_4 },
856         { "inventory_5", Keymap::INV_5 },
857         { "inventory_6", Keymap::INV_6 },
858         { "inventory_7", Keymap::INV_7 },
859         { "inventory_8", Keymap::INV_8 },
860         { "inventory_9", Keymap::INV_9 },
861         { "inventory_10", Keymap::INV_10 },
862
863         { "toggle_audio", Keymap::TOGGLE_AUDIO },
864         { "toggle_video", Keymap::TOGGLE_VIDEO },
865         { "toggle_hud", Keymap::TOGGLE_HUD },
866         { "toggle_debug", Keymap::TOGGLE_DEBUG },
867
868         { "exit", Keymap::EXIT },
869 };
870
871 }
872
873 const char *Keymap::ActionToString(Action action) {
874         for (const auto &entry : action_map) {
875                 if (action == entry.second) {
876                         return entry.first.c_str();
877                 }
878         }
879         return "none";
880 }
881
882 Keymap::Action Keymap::StringToAction(const std::string &str) {
883         auto entry = action_map.find(str);
884         if (entry != action_map.end()) {
885                 return entry->second;
886         } else {
887                 std::cerr << "unknown action \"" << str << '"' << std::endl;
888                 return NONE;
889         }
890 }
891
892 }