]> git.localhorst.tv Git - l2e.git/blob - src/main.cpp
added Selan's IP attacks
[l2e.git] / src / main.cpp
1 /*
2  * main.cpp
3  *
4  *  Created on: Aug 1, 2012
5  *      Author: holy
6  */
7
8 #include "app/Application.h"
9 #include "app/Input.h"
10 #include "battle/BattleState.h"
11 #include "battle/Hero.h"
12 #include "battle/Monster.h"
13 #include "battle/PartyLayout.h"
14 #include "battle/Resources.h"
15 #include "common/Ikari.h"
16 #include "common/Inventory.h"
17 #include "common/Item.h"
18 #include "common/Spell.h"
19 #include "geometry/Point.h"
20 #include "graphics/Font.h"
21 #include "graphics/Frame.h"
22 #include "graphics/Gauge.h"
23 #include "graphics/Menu.h"
24 #include "graphics/Sprite.h"
25 #include "sdl/InitImage.h"
26 #include "sdl/InitScreen.h"
27 #include "sdl/InitSDL.h"
28
29 #include <exception>
30 #include <iostream>
31 #include <SDL.h>
32 #include <SDL_image.h>
33
34 using app::Application;
35 using app::Input;
36 using battle::BattleState;
37 using battle::Hero;
38 using battle::Monster;
39 using battle::PartyLayout;
40 using common::Ikari;
41 using common::Inventory;
42 using common::Item;
43 using common::Spell;
44 using geometry::Point;
45 using graphics::Font;
46 using graphics::Frame;
47 using graphics::Gauge;
48 using graphics::Menu;
49 using graphics::Sprite;
50 using sdl::InitImage;
51 using sdl::InitScreen;
52 using sdl::InitSDL;
53
54 using std::cerr;
55 using std::cout;
56 using std::endl;
57 using std::exception;
58
59 int main(int argc, char **argv) {
60         const int width = 800;
61         const int height = 480;
62
63         try {
64                 InitSDL sdl;
65                 InitImage image(IMG_INIT_PNG);
66                 InitScreen screen(width, height);
67
68                 // temporary test data
69                 SDL_Surface *bg(IMG_Load("test-data/battle-bg.png"));
70                 PartyLayout monstersLayout;
71                 monstersLayout.AddPosition(Point<Uint8>(88, 104));
72                 monstersLayout.AddPosition(Point<Uint8>(128, 104));
73                 monstersLayout.AddPosition(Point<Uint8>(168, 104));
74                 monstersLayout.AddPosition(Point<Uint8>(208, 104));
75                 PartyLayout heroesLayout;
76                 heroesLayout.AddPosition(Point<Uint8>(27, 219));
77                 heroesLayout.AddPosition(Point<Uint8>(104, 227));
78                 heroesLayout.AddPosition(Point<Uint8>(66, 238));
79                 heroesLayout.AddPosition(Point<Uint8>(143, 246));
80
81                 SDL_Surface *monsterImg(IMG_Load("test-data/monster.png"));
82                 Sprite dummySprite(monsterImg, 64, 64);
83                 Monster monster;
84                 monster.SetSprite(&dummySprite);
85                 monster.SetMaxHealth(10);
86                 monster.SetHealth(10);
87
88                 SDL_Surface *maximImg(IMG_Load("test-data/maxim.png"));
89                 Sprite maximSprite(maximImg, 64, 64);
90                 Hero maxim;
91                 maxim.SetName("Maxim");
92                 maxim.SetLevel(1);
93                 maxim.SetSprite(&maximSprite);
94                 maxim.SetMaxHealth(33);
95                 maxim.SetHealth(33);
96                 maxim.SetMaxMana(20);
97                 maxim.SetMana(20);
98                 maxim.SetIP(55);
99
100                 SDL_Surface *selanImg(IMG_Load("test-data/selan.png"));
101                 Sprite selanSprite(selanImg, 64, 64);
102                 Hero selan;
103                 selan.SetName("Selan");
104                 selan.SetLevel(1);
105                 selan.SetSprite(&selanSprite);
106                 selan.SetMaxHealth(28);
107                 selan.SetHealth(28);
108                 selan.SetMaxMana(23);
109                 selan.SetMana(23);
110                 selan.SetIP(80);
111
112                 SDL_Surface *guyImg(IMG_Load("test-data/guy.png"));
113                 Sprite guySprite(guyImg, 64, 64);
114                 Hero guy;
115                 guy.SetName("Guy");
116                 guy.SetLevel(1);
117                 guy.SetSprite(&guySprite);
118                 guy.SetMaxHealth(38);
119                 guy.SetHealth(38);
120                 guy.SetMaxMana(0);
121                 guy.SetMana(0);
122                 guy.SetIP(85);
123
124                 SDL_Surface *dekarImg(IMG_Load("test-data/dekar.png"));
125                 Sprite dekarSprite(dekarImg, 64, 64);
126                 Hero dekar;
127                 dekar.SetName("Dekar");
128                 dekar.SetLevel(1);
129                 dekar.SetSprite(&dekarSprite);
130                 dekar.SetMaxHealth(38);
131                 dekar.SetHealth(38);
132                 dekar.SetMaxMana(0);
133                 dekar.SetMana(0);
134                 dekar.SetIP(50);
135
136                 battle::Resources battleRes;
137
138                 SDL_Surface *attackIconsImg(IMG_Load("test-data/attack-type-icons.png"));
139                 Sprite attackIconsSprite(attackIconsImg, 32, 32);
140                 battleRes.attackIcons = &attackIconsSprite;
141                 SDL_Surface *attackChoiceIconsImg(IMG_Load("test-data/attack-choice-icons.png"));
142                 Sprite attackChoiceIconsSprite(attackChoiceIconsImg, 16, 16);
143                 battleRes.attackChoiceIcons = &attackChoiceIconsSprite;
144                 SDL_Surface *moveIconsImg(IMG_Load("test-data/move-icons.png"));
145                 Sprite moveIconsSprite(moveIconsImg, 32, 32);
146                 battleRes.moveIcons = &moveIconsSprite;
147                 SDL_Surface *heroTagImg(IMG_Load("test-data/hero-tag-sprites.png"));
148                 Sprite heroTagSprite(heroTagImg, 32, 16);
149                 battleRes.heroTagLabels = &heroTagSprite;
150                 SDL_Surface *numbersImg(IMG_Load("test-data/numbers.png"));
151                 Sprite numbersSprite(numbersImg, 16, 16);
152                 Font heroTagFont(&numbersSprite);
153                 battleRes.heroTagFont = &heroTagFont;
154                 SDL_Surface *tagFramesImg(IMG_Load("test-data/tag-frames.png"));
155                 Frame heroTagFrame(tagFramesImg, 16, 16, 1, 1, 0, 33);
156                 battleRes.heroTagFrame = &heroTagFrame;
157                 Frame activeHeroTagFrame(tagFramesImg, 16, 16);
158                 battleRes.activeHeroTagFrame = &activeHeroTagFrame;
159
160                 SDL_Surface *gauges(IMG_Load("test-data/gauges.png"));
161                 Gauge healthGauge(gauges, 0, 16, 0, 0, 16, 6, 1, 6);
162                 battleRes.healthGauge = &healthGauge;
163                 Gauge manaGauge(gauges, 0, 32, 0, 0, 16, 6, 1, 6);
164                 battleRes.manaGauge = &manaGauge;
165                 Gauge ikariGauge(gauges, 0, 48, 0, 0, 16, 6, 1, 6);
166                 battleRes.ikariGauge = &ikariGauge;
167
168                 SDL_Surface *selectFrameImg(IMG_Load("test-data/select-frame.png"));
169                 Frame selectFrame(selectFrameImg, 16, 16);
170                 battleRes.selectFrame = &selectFrame;
171
172                 SDL_Surface *normalFontImg(IMG_Load("test-data/normal-font.png"));
173                 Sprite normalFontSprite(normalFontImg, 16, 16);
174                 Font normalFont(&normalFontSprite);
175                 normalFont.MapRange('A', 'M', 0, 1);
176                 normalFont.MapRange('N', 'Z', 0, 2);
177                 normalFont.MapRange('a', 'm', 0, 3);
178                 normalFont.MapRange('n', 'z', 0, 4);
179                 normalFont.MapChar(':', 10, 0);
180                 normalFont.MapChar('!', 11, 0);
181                 normalFont.MapChar('?', 12, 0);
182                 // TODO: add '.' and '-' characters
183                 battleRes.normalFont = &normalFont;
184
185                 SDL_Surface *disabledFontImg(IMG_Load("test-data/disabled-font.png"));
186                 Sprite disabledFontSprite(disabledFontImg, 16, 16);
187                 Font disabledFont(&disabledFontSprite);
188                 disabledFont.MapRange('A', 'M', 0, 1);
189                 disabledFont.MapRange('N', 'Z', 0, 2);
190                 disabledFont.MapRange('a', 'm', 0, 3);
191                 disabledFont.MapRange('n', 'z', 0, 4);
192                 disabledFont.MapChar(':', 10, 0);
193                 disabledFont.MapChar('!', 11, 0);
194                 disabledFont.MapChar('?', 12, 0);
195                 // TODO: add '.' and '-' characters
196                 battleRes.disabledFont = &disabledFont;
197
198                 SDL_Surface *handCursorImg(IMG_Load("test-data/cursor-hand.png"));
199                 Sprite handCursorSprite(handCursorImg, 32, 32);
200                 battleRes.menuCursor = &handCursorSprite;
201
202                 SDL_Surface *targetingIconsImg(IMG_Load("test-data/targeting-icons.png"));
203                 Sprite weaponTargetCursor(targetingIconsImg, 32, 32);
204                 Sprite magicTargetCursor(targetingIconsImg, 32, 32, 0, 32);
205                 Sprite itemTargetCursor(targetingIconsImg, 32, 32, 0, 64);
206                 battleRes.weaponTargetCursor = &weaponTargetCursor;
207                 // TODO: add image for magic targeting cursor
208                 battleRes.magicTargetCursor = &magicTargetCursor;
209                 // TODO: add image for item targeting cursor
210                 battleRes.itemTargetCursor = &itemTargetCursor;
211
212                 Spell resetSpell;
213                 resetSpell.SetName("Reset");
214                 maxim.AddSpell(&resetSpell);
215                 Spell strongSpell;
216                 strongSpell.SetName("Strong");
217                 strongSpell.SetCost(3);
218                 strongSpell.SetUsableInBattle();
219                 strongSpell.GetTargetingMode().TargetMultipleAllies();
220                 maxim.AddSpell(&strongSpell);
221                 selan.AddSpell(&strongSpell);
222                 Spell strongerSpell;
223                 strongerSpell.SetName("Stronger");
224                 strongerSpell.SetCost(8);
225                 strongerSpell.SetUsableInBattle();
226                 strongerSpell.GetTargetingMode().TargetMultipleAllies();
227                 maxim.AddSpell(&strongerSpell);
228                 selan.AddSpell(&strongerSpell);
229                 Spell championSpell;
230                 championSpell.SetName("Champion");
231                 championSpell.SetCost(16);
232                 championSpell.SetUsableInBattle();
233                 championSpell.GetTargetingMode().TargetMultipleAllies();
234                 maxim.AddSpell(&championSpell);
235                 selan.AddSpell(&championSpell);
236                 Spell rallySpell;
237                 rallySpell.SetName("Rally");
238                 rallySpell.SetCost(10);
239                 rallySpell.SetUsableInBattle();
240                 rallySpell.GetTargetingMode().TargetMultipleAllies();
241                 maxim.AddSpell(&rallySpell);
242                 selan.AddSpell(&rallySpell);
243                 Spell escapeSpell;
244                 escapeSpell.SetName("Escape");
245                 escapeSpell.SetCost(8);
246                 selan.AddSpell(&escapeSpell);
247                 Spell valorSpell;
248                 valorSpell.SetName("Valor");
249                 valorSpell.SetCost(30);
250                 valorSpell.SetUsableInBattle();
251                 valorSpell.GetTargetingMode().TargetMultipleAllies();
252                 maxim.AddSpell(&valorSpell);
253                 selan.AddSpell(&valorSpell);
254
255                 battleRes.spellMenuHeadline = "Please choose a spell.";
256                 battleRes.spellMenuPrototype = Menu<const Spell *>(&normalFont, &disabledFont, &handCursorSprite, 9, 6, 8, 0, 2, 32, 2, ':');
257
258                 SDL_Surface *itemIcons(IMG_Load("test-data/item-icons.png"));
259                 Sprite potionIcon(itemIcons, 16, 16);
260                 Sprite ballIcon(itemIcons, 16, 16, 0, 16);
261                 Sprite crankIcon(itemIcons, 16, 16, 0, 32);
262                 Sprite spearIcon(itemIcons, 16, 16, 0, 48);
263                 Sprite swordIcon(itemIcons, 16, 16, 0, 64);
264                 Sprite axIcon(itemIcons, 16, 16, 0, 80);
265                 Sprite rodIcon(itemIcons, 16, 16, 0, 96);
266                 Sprite armorIcon(itemIcons, 16, 16, 0, 112);
267                 Sprite shieldIcon(itemIcons, 16, 16, 0, 128);
268                 Sprite helmetIcon(itemIcons, 16, 16, 0, 144);
269                 Sprite ringIcon(itemIcons, 16, 16, 0, 160);
270                 Sprite jewelIcon(itemIcons, 16, 16, 0, 176);
271
272                 battleRes.weaponMenuIcon = &swordIcon;
273                 battleRes.armorMenuIcon = &armorIcon;
274                 battleRes.shieldMenuIcon = &shieldIcon;
275                 battleRes.helmetMenuIcon = &helmetIcon;
276                 battleRes.ringMenuIcon = &ringIcon;
277                 battleRes.jewelMenuIcon = &jewelIcon;
278
279                 Inventory inventory;
280                 Item antidote;
281                 antidote.SetName("Antidote");
282                 antidote.SetMenuIcon(&potionIcon);
283                 antidote.SetUsableInBattle();
284                 antidote.GetTargetingMode().TargetSingleAlly();
285                 inventory.Add(&antidote, 9);
286                 Item magicJar;
287                 magicJar.SetName("Magic jar");
288                 magicJar.SetMenuIcon(&potionIcon);
289                 magicJar.SetUsableInBattle();
290                 magicJar.GetTargetingMode().TargetSingleAlly();
291                 inventory.Add(&magicJar, 4);
292                 Item hiPotion;
293                 hiPotion.SetName("Hi-Potion");
294                 hiPotion.SetMenuIcon(&potionIcon);
295                 hiPotion.SetUsableInBattle();
296                 hiPotion.GetTargetingMode().TargetSingleAlly();
297                 inventory.Add(&hiPotion, 4);
298                 Item powerPotion;
299                 powerPotion.SetName("Power potion");
300                 powerPotion.SetMenuIcon(&potionIcon);
301                 inventory.Add(&powerPotion, 4);
302                 Item escape;
303                 escape.SetName("Escape");
304                 inventory.Add(&escape, 2);
305                 Item sleepBall;
306                 sleepBall.SetName("Sleep ball");
307                 sleepBall.SetMenuIcon(&ballIcon);
308                 sleepBall.SetUsableInBattle();
309                 sleepBall.GetTargetingMode().TargetSingleEnemy();
310                 inventory.Add(&sleepBall, 1);
311                 Item multiBall;
312                 multiBall.SetName("Multi-ball!");
313                 multiBall.SetMenuIcon(&ballIcon);
314                 multiBall.SetUsableInBattle();
315                 multiBall.GetTargetingMode().TargetMultipleEnemies();
316                 inventory.Add(&multiBall, 1);
317                 Item figgoru;
318                 figgoru.SetName("Figgoru");
319                 figgoru.SetMenuIcon(&crankIcon);
320                 figgoru.GetTargetingMode().TargetAllEnemies();
321                 inventory.Add(&figgoru, 1);
322                 battleRes.inventory = &inventory;
323
324                 battleRes.itemMenuHeadline = "Please choose an item.";
325                 battleRes.itemMenuPrototype = Menu<const common::Item *>(&normalFont, &disabledFont, &handCursorSprite, 15, 6, 8, 16, 1, 32, 2, ':');
326
327                 Item zircoSword;
328                 zircoSword.SetName("Zirco sword");
329                 zircoSword.SetMenuIcon(&swordIcon);
330                 Ikari firestorm;
331                 firestorm.SetName("Firestorm");
332                 firestorm.SetCost(88);
333                 firestorm.GetTargetingMode().TargetAllEnemies();
334                 zircoSword.SetIkari(&firestorm);
335                 maxim.SetWeapon(&zircoSword);
336                 Item zirconArmor;
337                 zirconArmor.SetName("Zircon armor");
338                 zirconArmor.SetMenuIcon(&armorIcon);
339                 Ikari magicCure;
340                 magicCure.SetName("Magic cure");
341                 magicCure.SetCost(51);
342                 magicCure.GetTargetingMode().TargetSingleAlly();
343                 zirconArmor.SetIkari(&magicCure);
344                 maxim.SetArmor(&zirconArmor);
345                 Item holyShield;
346                 holyShield.SetName("Holy shield");
347                 holyShield.SetMenuIcon(&shieldIcon);
348                 Ikari lightGuard;
349                 lightGuard.SetName("Light guard");
350                 lightGuard.SetCost(51);
351                 lightGuard.GetTargetingMode().TargetAllAllies(); // FIXME: actually only targets self
352                 holyShield.SetIkari(&lightGuard);
353                 maxim.SetShield(&holyShield);
354                 Item legendHelm;
355                 legendHelm.SetName("Legend helm");
356                 legendHelm.SetMenuIcon(&helmetIcon);
357                 Ikari boomerang;
358                 boomerang.SetName("Boomerang");
359                 boomerang.SetCost(65);
360                 boomerang.GetTargetingMode().TargetAllAllies(); // FIXME: actually only targets self
361                 legendHelm.SetIkari(&boomerang);
362                 maxim.SetHelmet(&legendHelm);
363                 Item sProRing;
364                 sProRing.SetName("S-pro ring");
365                 sProRing.SetMenuIcon(&ringIcon);
366                 Ikari courage;
367                 courage.SetName("Courage");
368                 courage.SetCost(26);
369                 courage.GetTargetingMode().TargetMultipleAllies();
370                 sProRing.SetIkari(&courage);
371                 maxim.SetRing(&sProRing);
372                 Item evilJewel;
373                 evilJewel.SetName("Evil jewel");
374                 evilJewel.SetMenuIcon(&jewelIcon);
375                 Ikari gloomy;
376                 gloomy.SetName("Gloomy");
377                 gloomy.SetCost(65);
378                 gloomy.GetTargetingMode().TargetAllEnemies();
379                 evilJewel.SetIkari(&gloomy);
380                 maxim.SetJewel(&evilJewel);
381
382                 Item zircoWhip;
383                 zircoWhip.SetName("Zirco whip");
384                 zircoWhip.SetMenuIcon(&rodIcon);
385                 Ikari thundershriek;
386                 thundershriek.SetName("Thundershriek");
387                 thundershriek.SetCost(88);
388                 thundershriek.GetTargetingMode().TargetAllEnemies();
389                 zircoWhip.SetIkari(&thundershriek);
390                 selan.SetWeapon(&zircoWhip);
391                 Item zirconPlate;
392                 zirconPlate.SetName("Zircon plate");
393                 zirconPlate.SetMenuIcon(&armorIcon);
394                 Ikari suddenCure;
395                 suddenCure.SetName("Sudden cure");
396                 suddenCure.SetCost(38);
397                 suddenCure.GetTargetingMode().TargetAllAllies();
398                 zirconPlate.SetIkari(&suddenCure);
399                 selan.SetArmor(&zirconPlate);
400                 Item zircoGloves;
401                 zircoGloves.SetName("Zirco gloves");
402                 zircoGloves.SetMenuIcon(&shieldIcon);
403                 Ikari forcefield;
404                 forcefield.SetName("Forcefield");
405                 forcefield.SetCost(26);
406                 forcefield.GetTargetingMode().TargetAllAllies();
407                 zircoGloves.SetIkari(&forcefield);
408                 selan.SetShield(&zircoGloves);
409                 Item holyCap;
410                 holyCap.SetName("Holy cap");
411                 holyCap.SetMenuIcon(&helmetIcon);
412                 Ikari vulnerable;
413                 vulnerable.SetName("Vulnerable");
414                 vulnerable.SetCost(77);
415                 vulnerable.GetTargetingMode().TargetAllEnemies();
416                 holyCap.SetIkari(&vulnerable);
417                 selan.SetHelmet(&holyCap);
418                 Item ghostRing;
419                 ghostRing.SetName("Ghost ring");
420                 ghostRing.SetMenuIcon(&ringIcon);
421                 Ikari destroy;
422                 destroy.SetName("Destroy");
423                 destroy.SetCost(77);
424                 destroy.GetTargetingMode().TargetMultipleEnemies();
425                 ghostRing.SetIkari(&destroy);
426                 selan.SetRing(&ghostRing);
427                 Item eagleRock;
428                 eagleRock.SetName("Eagle rock");
429                 eagleRock.SetMenuIcon(&jewelIcon);
430                 Ikari dive;
431                 dive.SetName("Dive");
432                 dive.SetCost(50);
433                 dive.GetTargetingMode().TargetSingleEnemy();
434                 eagleRock.SetIkari(&dive);
435                 selan.SetJewel(&eagleRock);
436
437                 Item zircoAx;
438                 zircoAx.SetName("Zirco ax");
439                 zircoAx.SetMenuIcon(&axIcon);
440                 guy.SetWeapon(&zircoAx);
441                 guy.SetArmor(&zirconArmor);
442                 Item megaShield;
443                 megaShield.SetName("Mega shield");
444                 megaShield.SetMenuIcon(&shieldIcon);
445                 guy.SetShield(&megaShield);
446                 Item zircoHelmet;
447                 zircoHelmet.SetName("Zirco helmet");
448                 zircoHelmet.SetMenuIcon(&helmetIcon);
449                 guy.SetHelmet(&zircoHelmet);
450                 Item powerRing;
451                 powerRing.SetName("Power ring");
452                 powerRing.SetMenuIcon(&ringIcon);
453                 guy.SetRing(&powerRing);
454                 guy.SetJewel(&evilJewel);
455
456                 // NOTE: this is actually Artea equipment
457                 Item lizardBlow;
458                 lizardBlow.SetName("Lizard blow");
459                 lizardBlow.SetMenuIcon(&swordIcon);
460                 dekar.SetWeapon(&lizardBlow);
461                 Item holyRobe;
462                 holyRobe.SetName("Holy robe");
463                 holyRobe.SetMenuIcon(&armorIcon);
464                 dekar.SetArmor(&holyRobe);
465                 dekar.SetShield(&zircoGloves);
466                 dekar.SetHelmet(&holyCap);
467                 Item rocketRing;
468                 rocketRing.SetName("Rocket ring");
469                 rocketRing.SetMenuIcon(&ringIcon);
470                 dekar.SetRing(&rocketRing);
471                 Item krakenRock;
472                 krakenRock.SetName("Kraken rock");
473                 krakenRock.SetMenuIcon(&jewelIcon);
474                 dekar.SetJewel(&krakenRock);
475
476                 battleRes.ikariMenuHeadline = "Please choose equipment.";
477                 battleRes.noEquipmentText = "No equip";
478                 battleRes.ikariMenuPrototype = Menu<const Item *>(&normalFont, &disabledFont, &handCursorSprite, 12, 6, normalFont.CharHeight() / 2, normalFont.CharWidth(), 1, normalFont.CharWidth() * 2, 0, ':', 12, normalFont.CharWidth());
479
480                 BattleState *battleState(new BattleState(bg, monstersLayout, heroesLayout, &battleRes));
481                 battleState->AddMonster(monster);
482                 battleState->AddMonster(monster);
483                 battleState->AddMonster(monster);
484                 battleState->AddMonster(monster);
485                 battleState->AddHero(maxim);
486                 battleState->AddHero(selan);
487                 battleState->AddHero(guy);
488                 battleState->AddHero(dekar);
489                 Application app(&screen, battleState);
490                 app.Buttons().MapKey(SDLK_w, Input::PAD_UP);
491                 app.Buttons().MapKey(SDLK_d, Input::PAD_RIGHT);
492                 app.Buttons().MapKey(SDLK_s, Input::PAD_DOWN);
493                 app.Buttons().MapKey(SDLK_a, Input::PAD_LEFT);
494                 app.Buttons().MapKey(SDLK_RIGHT, Input::ACTION_A);
495                 app.Buttons().MapKey(SDLK_DOWN, Input::ACTION_B);
496                 app.Buttons().MapKey(SDLK_UP, Input::ACTION_X);
497                 app.Buttons().MapKey(SDLK_LEFT, Input::ACTION_Y);
498                 app.Buttons().MapKey(SDLK_RETURN, Input::START);
499                 app.Buttons().MapKey(SDLK_SPACE, Input::SELECT);
500                 app.Buttons().MapKey(SDLK_RSHIFT, Input::SHOULDER_RIGHT);
501                 app.Buttons().MapKey(SDLK_LSHIFT, Input::SHOULDER_LEFT);
502                 app.Run();
503
504                 return 0;
505         } catch (exception &e) {
506                 cerr << "exception in main(): " << e.what() << endl;
507                 return 1;
508         }
509 }