]> git.localhorst.tv Git - blank.git/blob - src/ui/ui.cpp
light entities according to block light level
[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/CongestionControl.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 CongestionControl &stat) {
385         if (!config.video.debug) return;
386
387         std::stringstream s;
388         s << std::fixed << std::setprecision(1)
389                 << "TX: " << stat.Upstream()
390                 << "KB/s, RX: " << stat.Downstream() << "KB/s";
391         bandwidth_text.Set(env.assets.small_ui_font, s.str());
392
393         s.str("");
394         s << "RTT: " << stat.RoundTripTime() << "ms";
395         rtt_text.Set(env.assets.small_ui_font, s.str());
396
397         s.str("");
398         s << "Packet loss: " << (stat.PacketLoss() * 100.0f) << "%";
399         packet_loss_text.Set(env.assets.small_ui_font, s.str());
400
401         show_net = true;
402 }
403
404
405 void HUD::Update(int dt) {
406         msg_timer.Update(dt);
407         if (msg_timer.HitOnce()) {
408                 msg_timer.Stop();
409         }
410
411         if (config.video.debug) {
412                 if (env.counter.Changed()) {
413                         UpdateCounter();
414                 }
415                 UpdatePosition();
416                 UpdateOrientation();
417         }
418 }
419
420 void HUD::Render(Viewport &viewport) noexcept {
421         // block focus
422         if (outline_visible && config.video.world) {
423                 PlainColor &outline_prog = viewport.WorldColorProgram();
424                 outline_prog.SetM(outline_transform);
425                 outline.DrawLines();
426         }
427
428         // clear depth buffer so everything renders above the world
429         viewport.ClearDepth();
430
431         if (config.video.hud) {
432                 // "inventory"
433                 if (block_visible) {
434                         DirectionalLighting &world_prog = viewport.HUDProgram();
435                         world_prog.SetLightDirection({ 1.0f, 3.0f, 5.0f });
436                         world_prog.SetLightColor({ 1.0f, 1.0f, 1.0f });
437                         world_prog.SetAmbientColor({ 0.1f, 0.1f, 0.1f });
438                         // disable distance fog
439                         world_prog.SetFogDensity(0.0f);
440
441                         viewport.DisableBlending();
442                         world_prog.SetM(block_transform);
443                         block.Draw();
444                         block_label.Render(viewport);
445                 }
446
447                 // message box
448                 if (msg_keep || msg_timer.Running()) {
449                         messages.Render(viewport);
450                 }
451
452                 // crosshair
453                 PlainColor &outline_prog = viewport.HUDColorProgram();
454                 viewport.EnableInvertBlending();
455                 viewport.SetCursor(glm::vec3(0.0f), Gravity::CENTER);
456                 outline_prog.SetM(viewport.Cursor());
457                 crosshair.DrawLines();
458         }
459
460         // debug overlay
461         if (config.video.debug) {
462                 counter_text.Render(viewport);
463                 position_text.Render(viewport);
464                 orientation_text.Render(viewport);
465                 if (show_block) {
466                         block_text.Render(viewport);
467                 } else if (show_entity) {
468                         entity_text.Render(viewport);
469                 }
470                 if (show_net) {
471                         bandwidth_text.Render(viewport);
472                         rtt_text.Render(viewport);
473                         packet_loss_text.Render(viewport);
474                 }
475         }
476 }
477
478
479 InteractiveManipulator::InteractiveManipulator(Audio &audio, const SoundBank &sounds, Entity &player)
480 : player(player)
481 , audio(audio)
482 , sounds(sounds) {
483
484 }
485
486 void InteractiveManipulator::SetBlock(Chunk &chunk, int index, const Block &block) {
487         const BlockType &old_type = chunk.Type(index);
488         chunk.SetBlock(index, block);
489         const BlockType &new_type = chunk.Type(index);
490         glm::vec3 coords = chunk.ToSceneCoords(player.ChunkCoords(), Chunk::ToCoords(index));
491         if (new_type.id == 0) {
492                 if (old_type.remove_sound >= 0) {
493                         audio.Play(sounds[old_type.remove_sound], coords);
494                 }
495         } else {
496                 if (new_type.place_sound >= 0) {
497                         audio.Play(sounds[new_type.place_sound], coords);
498                 }
499         }
500 }
501
502
503 Interface::Interface(
504         Config &config,
505         const Keymap &keymap,
506         PlayerController &pc,
507         ClientController &cc)
508 : config(config)
509 , keymap(keymap)
510 , player_ctrl(pc)
511 , client_ctrl(cc)
512 , fwd(0)
513 , rev(0)
514 , slot(0)
515 , num_slots(10)
516 , locked(false) {
517
518 }
519
520 void Interface::Lock() {
521         fwd = glm::ivec3(0);
522         rev = glm::ivec3(0);
523         locked = true;
524 }
525
526 void Interface::Unlock() {
527         locked = false;
528 }
529
530 void Interface::HandlePress(const SDL_KeyboardEvent &event) {
531         if (!config.input.keyboard) return;
532
533         Keymap::Action action = keymap.Lookup(event);
534         switch (action) {
535                 case Keymap::MOVE_FORWARD:
536                         rev.z = 1;
537                         UpdateMovement();
538                         break;
539                 case Keymap::MOVE_BACKWARD:
540                         fwd.z = 1;
541                         UpdateMovement();
542                         break;
543                 case Keymap::MOVE_LEFT:
544                         rev.x = 1;
545                         UpdateMovement();
546                         break;
547                 case Keymap::MOVE_RIGHT:
548                         fwd.x = 1;
549                         UpdateMovement();
550                         break;
551                 case Keymap::MOVE_UP:
552                         fwd.y = 1;
553                         UpdateMovement();
554                         break;
555                 case Keymap::MOVE_DOWN:
556                         rev.y = 1;
557                         UpdateMovement();
558                         break;
559
560                 case Keymap::PRIMARY:
561                         player_ctrl.StartPrimaryAction();
562                         break;
563                 case Keymap::SECONDARY:
564                         player_ctrl.StartSecondaryAction();
565                         break;
566                 case Keymap::TERTIARY:
567                         player_ctrl.StartTertiaryAction();
568                         break;
569
570                 case Keymap::INV_NEXT:
571                         InvRel(1);
572                         break;
573                 case Keymap::INV_PREVIOUS:
574                         InvRel(-1);
575                         break;
576                 case Keymap::INV_1:
577                 case Keymap::INV_2:
578                 case Keymap::INV_3:
579                 case Keymap::INV_4:
580                 case Keymap::INV_5:
581                 case Keymap::INV_6:
582                 case Keymap::INV_7:
583                 case Keymap::INV_8:
584                 case Keymap::INV_9:
585                 case Keymap::INV_10:
586                         InvAbs(action - Keymap::INV_1);
587                         break;
588
589                 case Keymap::EXIT:
590                         client_ctrl.Exit();
591                         break;
592
593                 case Keymap::TOGGLE_AUDIO:
594                         config.audio.enabled = !config.audio.enabled;
595                         client_ctrl.SetAudio(config.audio.enabled);
596                         break;
597                 case Keymap::TOGGLE_VIDEO:
598                         config.video.world = !config.video.world;
599                         client_ctrl.SetVideo(config.video.world);
600                         break;
601                 case Keymap::TOGGLE_HUD:
602                         config.video.hud = !config.video.hud;
603                         client_ctrl.SetHUD(config.video.hud);
604                         break;
605                 case Keymap::TOGGLE_DEBUG:
606                         config.video.debug = !config.video.debug;
607                         client_ctrl.SetDebug(config.video.debug);
608                         break;
609
610                 default:
611                         break;
612         }
613 }
614
615 void Interface::HandleRelease(const SDL_KeyboardEvent &event) {
616         if (!config.input.keyboard) return;
617
618         switch (keymap.Lookup(event)) {
619                 case Keymap::MOVE_FORWARD:
620                         rev.z = 0;
621                         UpdateMovement();
622                         break;
623                 case Keymap::MOVE_BACKWARD:
624                         fwd.z = 0;
625                         UpdateMovement();
626                         break;
627                 case Keymap::MOVE_LEFT:
628                         rev.x = 0;
629                         UpdateMovement();
630                         break;
631                 case Keymap::MOVE_RIGHT:
632                         fwd.x = 0;
633                         UpdateMovement();
634                         break;
635                 case Keymap::MOVE_UP:
636                         fwd.y = 0;
637                         UpdateMovement();
638                         break;
639                 case Keymap::MOVE_DOWN:
640                         rev.y = 0;
641                         UpdateMovement();
642                         break;
643
644                 case Keymap::PRIMARY:
645                         player_ctrl.StopPrimaryAction();
646                         break;
647                 case Keymap::SECONDARY:
648                         player_ctrl.StopSecondaryAction();
649                         break;
650                 case Keymap::TERTIARY:
651                         player_ctrl.StopTertiaryAction();
652                         break;
653
654                 default:
655                         break;
656         }
657 }
658
659 void Interface::Handle(const SDL_MouseMotionEvent &event) {
660         if (locked || !config.input.mouse) return;
661         player_ctrl.TurnHead(
662                 event.yrel * config.input.pitch_sensitivity,
663                 event.xrel * config.input.yaw_sensitivity);
664 }
665
666 void Interface::HandlePress(const SDL_MouseButtonEvent &event) {
667         if (!config.input.mouse) return;
668
669         switch (event.button) {
670                 case SDL_BUTTON_LEFT:
671                         player_ctrl.StartPrimaryAction();
672                         break;
673                 case SDL_BUTTON_RIGHT:
674                         player_ctrl.StartSecondaryAction();
675                         break;
676                 case SDL_BUTTON_MIDDLE:
677                         player_ctrl.StartTertiaryAction();
678                         break;
679         }
680 }
681
682 void Interface::HandleRelease(const SDL_MouseButtonEvent &event) {
683         if (!config.input.mouse) return;
684
685         switch (event.button) {
686                 case SDL_BUTTON_LEFT:
687                         player_ctrl.StopPrimaryAction();
688                         break;
689                 case SDL_BUTTON_RIGHT:
690                         player_ctrl.StopSecondaryAction();
691                         break;
692                 case SDL_BUTTON_MIDDLE:
693                         player_ctrl.StopTertiaryAction();
694                         break;
695         }
696 }
697
698
699 void Interface::Handle(const SDL_MouseWheelEvent &event) {
700         if (!config.input.mouse) return;
701
702         if (event.y < 0) {
703                 InvRel(1);
704         } else if (event.y > 0) {
705                 InvRel(-1);
706         }
707 }
708
709 void Interface::UpdateMovement() {
710         player_ctrl.SetMovement(glm::vec3(fwd - rev));
711 }
712
713 void Interface::InvAbs(int s) {
714         slot = s % num_slots;
715         while (slot < 0) {
716                 slot += num_slots;
717         }
718         player_ctrl.SelectInventory(slot);
719 }
720
721 void Interface::InvRel(int delta) {
722         InvAbs(slot + delta);
723 }
724
725
726 Keymap::Keymap()
727 : codemap{ NONE } {
728
729 }
730
731 void Keymap::Map(SDL_Scancode scancode, Action action) {
732         if (scancode > MAX_SCANCODE) {
733                 throw std::runtime_error("refusing to map scancode: too damn high");
734         }
735         codemap[scancode] = action;
736 }
737
738 Keymap::Action Keymap::Lookup(SDL_Scancode scancode) const {
739         if (scancode < NUM_SCANCODES) {
740                 return codemap[scancode];
741         } else {
742                 return NONE;
743         }
744 }
745
746
747 void Keymap::LoadDefault() {
748         Map(SDL_SCANCODE_UP, MOVE_FORWARD);
749         Map(SDL_SCANCODE_W, MOVE_FORWARD);
750         Map(SDL_SCANCODE_DOWN, MOVE_BACKWARD);
751         Map(SDL_SCANCODE_S, MOVE_BACKWARD);
752         Map(SDL_SCANCODE_LEFT, MOVE_LEFT);
753         Map(SDL_SCANCODE_A, MOVE_LEFT);
754         Map(SDL_SCANCODE_RIGHT, MOVE_RIGHT);
755         Map(SDL_SCANCODE_D, MOVE_RIGHT);
756         Map(SDL_SCANCODE_SPACE, MOVE_UP);
757         Map(SDL_SCANCODE_RSHIFT, MOVE_UP);
758         Map(SDL_SCANCODE_LSHIFT, MOVE_DOWN);
759         Map(SDL_SCANCODE_LCTRL, MOVE_DOWN);
760         Map(SDL_SCANCODE_RCTRL, MOVE_DOWN);
761
762         Map(SDL_SCANCODE_TAB, INV_NEXT);
763         Map(SDL_SCANCODE_RIGHTBRACKET, INV_NEXT);
764         Map(SDL_SCANCODE_LEFTBRACKET, INV_PREVIOUS);
765         Map(SDL_SCANCODE_1, INV_1);
766         Map(SDL_SCANCODE_2, INV_2);
767         Map(SDL_SCANCODE_3, INV_3);
768         Map(SDL_SCANCODE_4, INV_4);
769         Map(SDL_SCANCODE_5, INV_5);
770         Map(SDL_SCANCODE_6, INV_6);
771         Map(SDL_SCANCODE_7, INV_7);
772         Map(SDL_SCANCODE_8, INV_8);
773         Map(SDL_SCANCODE_9, INV_9);
774         Map(SDL_SCANCODE_0, INV_10);
775
776         Map(SDL_SCANCODE_INSERT, SECONDARY);
777         Map(SDL_SCANCODE_RETURN, SECONDARY);
778         Map(SDL_SCANCODE_MENU, TERTIARY);
779         Map(SDL_SCANCODE_DELETE, PRIMARY);
780         Map(SDL_SCANCODE_BACKSPACE, PRIMARY);
781
782         Map(SDL_SCANCODE_F1, TOGGLE_HUD);
783         Map(SDL_SCANCODE_F2, TOGGLE_VIDEO);
784         Map(SDL_SCANCODE_F3, TOGGLE_DEBUG);
785         Map(SDL_SCANCODE_F4, TOGGLE_AUDIO);
786
787         Map(SDL_SCANCODE_ESCAPE, EXIT);
788 }
789
790
791 void Keymap::Load(std::istream &is) {
792         TokenStreamReader in(is);
793         std::string key_name;
794         std::string action_name;
795         SDL_Scancode key;
796         Action action;
797         while (in.HasMore()) {
798                 if (in.Peek().type == Token::STRING) {
799                         in.ReadString(key_name);
800                         key = SDL_GetScancodeFromName(key_name.c_str());
801                 } else {
802                         key = SDL_Scancode(in.GetInt());
803                 }
804                 in.Skip(Token::EQUALS);
805                 in.ReadIdentifier(action_name);
806                 action = StringToAction(action_name);
807                 if (in.HasMore() && in.Peek().type == Token::SEMICOLON) {
808                         in.Skip(Token::SEMICOLON);
809                 }
810                 Map(key, action);
811         }
812 }
813
814 void Keymap::Save(std::ostream &out) {
815         for (unsigned int i = 0; i < NUM_SCANCODES; ++i) {
816                 if (codemap[i] == NONE) continue;
817
818                 const char *str = SDL_GetScancodeName(SDL_Scancode(i));
819                 if (str && *str) {
820                         out << '"';
821                         while (*str) {
822                                 if (*str == '"') {
823                                         out << "\\\"";
824                                 } else {
825                                         out << *str;
826                                 }
827                                 ++str;
828                         }
829                         out << '"';
830                 } else {
831                         out << i;
832                 }
833
834                 out << " = " << ActionToString(codemap[i]) << std::endl;;
835         }
836 }
837
838
839 namespace {
840
841 std::map<std::string, Keymap::Action> action_map = {
842         { "none", Keymap::NONE },
843         { "move_forward", Keymap::MOVE_FORWARD },
844         { "move_backward", Keymap::MOVE_BACKWARD },
845         { "move_left", Keymap::MOVE_LEFT },
846         { "move_right", Keymap::MOVE_RIGHT },
847         { "move_up", Keymap::MOVE_UP },
848         { "move_down", Keymap::MOVE_DOWN },
849
850         { "primary", Keymap::PRIMARY },
851         { "secondary", Keymap::SECONDARY },
852         { "tertiary", Keymap::TERTIARY },
853
854         { "inventory_next", Keymap::INV_NEXT },
855         { "inventory_prev", Keymap::INV_PREVIOUS },
856         { "inventory_1", Keymap::INV_1 },
857         { "inventory_2", Keymap::INV_2 },
858         { "inventory_3", Keymap::INV_3 },
859         { "inventory_4", Keymap::INV_4 },
860         { "inventory_5", Keymap::INV_5 },
861         { "inventory_6", Keymap::INV_6 },
862         { "inventory_7", Keymap::INV_7 },
863         { "inventory_8", Keymap::INV_8 },
864         { "inventory_9", Keymap::INV_9 },
865         { "inventory_10", Keymap::INV_10 },
866
867         { "toggle_audio", Keymap::TOGGLE_AUDIO },
868         { "toggle_video", Keymap::TOGGLE_VIDEO },
869         { "toggle_hud", Keymap::TOGGLE_HUD },
870         { "toggle_debug", Keymap::TOGGLE_DEBUG },
871
872         { "exit", Keymap::EXIT },
873 };
874
875 }
876
877 const char *Keymap::ActionToString(Action action) {
878         for (const auto &entry : action_map) {
879                 if (action == entry.second) {
880                         return entry.first.c_str();
881                 }
882         }
883         return "none";
884 }
885
886 Keymap::Action Keymap::StringToAction(const std::string &str) {
887         auto entry = action_map.find(str);
888         if (entry != action_map.end()) {
889                 return entry->second;
890         } else {
891                 std::cerr << "unknown action \"" << str << '"' << std::endl;
892                 return NONE;
893         }
894 }
895
896 }