-
Notifications
You must be signed in to change notification settings - Fork 8
/
keyactions.cc
872 lines (766 loc) · 26.5 KB
/
keyactions.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
/*
* Copyright (C) 2001-2013 The Exult Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "keyactions.h"
#include "keys.h"
#include "gump_utils.h"
#include "gamewin.h"
#include "gamemap.h"
#include "mouse.h"
#include "actors.h"
#include "game.h"
#include "exult.h"
#include "common_types.h"
#include "exult_constants.h"
#include "File_gump.h"
#include "Scroll_gump.h"
#include "cheat.h"
#include "combat_opts.h"
#include "ucmachine.h"
#include "party.h"
#include "Audio.h"
#include "Gamemenu_gump.h"
#include "Newfile_gump.h"
#include "Face_stats.h"
#include "Notebook_gump.h"
#include "Gump_manager.h"
#include "effects.h"
#include "palette.h"
#include "Yesno_gump.h"
#include "ShortcutBar_gump.h"
#include "ignore_unused_variable_warning.h"
/*
* Get the i'th party member, with the 0'th being the Avatar.
*/
static Actor *Get_party_member(
int num // 0=avatar.
) {
int npc_num = 0; // Default to Avatar
if (num > 0)
npc_num = Game_window::get_instance()->get_party_man()->get_member(num - 1);
return Game_window::get_instance()->get_npc(npc_num);
}
// { ActionQuit, 0, "Quit", normal_keys, NONE },
void ActionQuit(int const *params) {
ignore_unused_variable_warning(params);
Game_window::get_instance()->get_gump_man()->okay_to_quit();
}
// { ActionOldFileGump, 0, "Save/restore", normal_keys, NONE },
void ActionOldFileGump(int const *params) {
ignore_unused_variable_warning(params);
File_gump *fileio = new File_gump();
Game_window::get_instance()->get_gump_man()->do_modal_gump(fileio,
Mouse::hand);
delete fileio;
}
// { ActionMenuGump, 0, "GameMenu", normal_keys, NONE },
void ActionMenuGump(int const *params) {
ignore_unused_variable_warning(params);
Gamemenu_gump *gmenu = new Gamemenu_gump();
Game_window::get_instance()->get_gump_man()->do_modal_gump(gmenu,
Mouse::hand);
delete gmenu;
}
// { ActionFileGump, 0, "Save/restore", normal_keys, NONE },
void ActionFileGump(int const *params) {
ignore_unused_variable_warning(params);
Newfile_gump *fileio = new Newfile_gump();
Game_window::get_instance()->get_gump_man()->do_modal_gump(fileio,
Mouse::hand);
delete fileio;
}
// { ActionQuicksave, 0, "Quick-save", normal_keys, NONE },
void ActionQuicksave(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
try {
gwin->write();
} catch (exult_exception &/*e*/) {
gwin->get_effects()->center_text("Saving game failed!");
return;
}
gwin->get_effects()->center_text("Game saved");
gwin->got_bad_feeling(8);
}
// { ActionQuickrestore, 0, "Quick-restore", normal_keys, NONE },
void ActionQuickrestore(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
try {
gwin->read();
} catch (exult_exception &/*e*/) {
gwin->get_effects()->center_text("Restoring game failed!");
return;
}
gwin->get_effects()->center_text("Game restored");
gwin->paint();
}
// { ActionAbout, 0, "About Exult", normal_keys, NONE },
void ActionAbout(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
Scroll_gump *scroll;
scroll = new Scroll_gump();
scroll->add_text("Exult V" VERSION "\n");
scroll->add_text("(C) 1998-2013 Exult Team\n\n");
scroll->add_text("Available under the terms of the ");
scroll->add_text("GNU General Public License\n\n");
scroll->add_text("http://exult.sourceforge.net\n");
scroll->paint();
do {
int x, y;
Get_click(x, y, Mouse::hand);
} while (scroll->show_next_page());
gwin->paint();
delete scroll;
}
// { ActionHelp, 0, "List keys", normal_keys, NONE },
void ActionHelp(int const *params) {
ignore_unused_variable_warning(params);
keybinder->ShowHelp();
}
// { ActionCloseGumps, 0, "Close gumps", dont_show, NONE },
void ActionCloseGumps(int const *params) {
ignore_unused_variable_warning(params);
Game_window::get_instance()->get_gump_man()->close_all_gumps();
}
// { ActionCloseOrMenu, "Game menu", normal_keys, NONE },
void ActionCloseOrMenu(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
if (gwin->get_gump_man()->showing_gumps(true))
gwin->get_gump_man()->close_all_gumps();
else
ActionMenuGump(0);
}
// { ActionScreenshot, 0, "Take screenshot", normal_keys, NONE },
void ActionScreenshot(int const *params) {
ignore_unused_variable_warning(params);
make_screenshot();
}
// { ActionRepaint, 0, "Repaint screen", dont_show, NONE },
void ActionRepaint(int const *params) {
ignore_unused_variable_warning(params);
Game_window::get_instance()->paint();
}
// { ActionScalevalIncrease, 0, "Increase scaleval", cheat_keys, NONE },
void ActionScalevalIncrease(int const *params) {
ignore_unused_variable_warning(params);
increase_scaleval();
}
// { ActionScalevalDecrease, 0, "Decrease scaleval", cheat_keys, NONE },
void ActionScalevalDecrease(int const *params) {
ignore_unused_variable_warning(params);
decrease_scaleval();
}
// { ActionBrighter, 0, "Increase brightness", normal_keys, NONE },
void ActionBrighter(int const *params) {
ignore_unused_variable_warning(params);
change_gamma(true);
}
// { ActionDarker, 0, "Decrease brightness", normal_keys, NONE },
void ActionDarker(int const *params) {
ignore_unused_variable_warning(params);
change_gamma(false);
}
// { ActionFullscreen, 0, "Toggle fullscreen", normal_keys, NONE },
void ActionFullscreen(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
setup_video(!gwin->get_win()->is_fullscreen(), TOGGLE_FULLSCREEN);
const char *msg;
if (gwin->get_win()->is_fullscreen())
msg = "Fullscreen applied.\nKeep?";
else
msg = "Windowed mode.\nKeep?";
if (Countdown_gump::ask(msg, 20))
config->set("config/video/fullscreen",
gwin->get_win()->is_fullscreen() ? "yes" : "no",
true);
else
setup_video(!gwin->get_win()->is_fullscreen(), TOGGLE_FULLSCREEN);
}
// { ActionUseItem, 3, "Use item", dont_show, NONE },
// params[0] = shape nr.
// params[1] = frame nr.
// params[2] = quality
void ActionUseItem(int const *params) {
int framenum = params[1] == -1 ? c_any_framenum : params[1];
int qual = params[2] == -1 ? c_any_qual : params[2];
Game_window::get_instance()->activate_item(params[0], framenum, qual);
Mouse::mouse->set_speed_cursor();
}
// { ActionUseItem, 3, "Use food", dont_show, NONE },
void ActionUseFood(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
if (gwin->activate_item(377) || // Food
(GAME_SI && gwin->activate_item(404)) || // Special SI food
gwin->activate_item(616)) // Drinks
Mouse::mouse->set_speed_cursor();
}
// { ActionCallUsecode, 2, "Call usecode", dont_show, NONE },
// params[0] = usecode function.
// params[1] = event id.
void ActionCallUsecode(int const *params) {
Usecode_machine *usecode = Game_window::get_instance()->get_usecode();
usecode->call_usecode(params[0], static_cast<Game_object *>(0),
static_cast<Usecode_machine::Usecode_events>(params[1]));
Mouse::mouse->set_speed_cursor();
}
// { ActionCombat, 0, "Toggle combat", normal_keys, NONE },
void ActionCombat(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
gwin->toggle_combat();
gwin->paint();
Mouse::mouse->set_speed_cursor();
}
// { ActionCombatPause, 0, "Pause combat", normal_keys, NONE },
void ActionCombatPause(int const *params) {
ignore_unused_variable_warning(params);
Combat::toggle_pause();
Mouse::mouse->set_speed_cursor();
}
// { ActionTarget, 0, "Target mode", normal_keys, NONE },
void ActionTarget(int const *params) {
ignore_unused_variable_warning(params);
int x, y;
if (!Get_click(x, y, Mouse::greenselect))
return;
Game_window::get_instance()->double_clicked(x, y);
Mouse::mouse->set_speed_cursor();
}
// { ActionInventory, 1, "Show inventory", normal_keys, NONE },
// params[0] = party member (0-7), or -1 for 'next'
void ActionInventory(int const *params) {
Game_window *gwin = Game_window::get_instance();
static int inventory_page = -1;
Actor *actor;
if (params[0] == -1) {
Gump_manager *gump_man = gwin->get_gump_man();
int party_count = gwin->get_party_man()->get_count();
int shapenum;
for (int i = 0; i <= party_count; ++i) {
actor = Get_party_member(i);
if (!actor)
continue;
shapenum = actor->inventory_shapenum();
// Check if this actor's inventory page is open or not
if (!gump_man->find_gump(actor, shapenum) && actor->can_act_charmed()) {
gump_man->add_gump(actor, shapenum, true); //force showing inv.
inventory_page = i;
return;
}
}
inventory_page = (inventory_page + 1) % (party_count + 1);
} else {
inventory_page = params[0];
if (inventory_page < 0 ||
inventory_page > gwin->get_party_man()->get_count())
return;
}
actor = Get_party_member(inventory_page);
if (actor && actor->can_act_charmed()) {
actor->show_inventory(); //force showing inv.
}
Mouse::mouse->set_speed_cursor();
}
// { ActionTryKeys, 0, "Try keys", normal_keys, NONE },
void ActionTryKeys(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
int x, y; // Allow dragging.
if (!Get_click(x, y, Mouse::greenselect, 0, true))
return;
// Look for obj. in open gump.
Gump *gump = gwin->get_gump_man()->find_gump(x, y);
Game_object *obj;
if (gump)
obj = gump->find_object(x, y);
else // Search rest of world.
obj = gwin->find_object(x, y);
if (!obj)
return;
int qual = obj->get_quality(); // Key quality should match.
Actor *party[10]; // Get ->party members.
int party_cnt = gwin->get_party(&party[0], 1);
for (int i = 0; i < party_cnt; i++) {
Actor *act = party[i];
Game_object_vector keys; // Get keys.
if (act->get_objects(keys, 641, qual, c_any_framenum)) {
for (size_t i = 0; i < keys.size(); i++)
if (!keys[i]->inside_locked()) {
// intercept the click_on_item call made by the key-usecode
Usecode_machine *ucmachine = gwin->get_usecode();
Game_object *oldtarg;
Tile_coord *oldtile;
ucmachine->save_intercept(oldtarg, oldtile);
ucmachine->intercept_click_on_item(obj);
keys[0]->activate();
ucmachine->restore_intercept(oldtarg, oldtile);
return;
}
}
}
Mouse::mouse->flash_shape(Mouse::redx); // Nothing matched.
}
// { ActionStats, 1, "Show stats", normal_keys, NONE },
// params[0] = party member (0-7), or -1 for 'next'
void ActionStats(int const *params) {
Game_window *gwin = Game_window::get_instance();
static int stats_page = -1;
Actor *actor;
if (params[0] == -1) {
Gump_manager *gump_man = gwin->get_gump_man();
int party_count = gwin->get_party_man()->get_count();
int shapenum = game->get_shape("gumps/statsdisplay");
for (int i = 0; i <= party_count; ++i) {
actor = Get_party_member(i);
if (!actor)
continue;
// Check if this actor's stats page is open or not
if (!gump_man->find_gump(actor, shapenum)) {
gump_man->add_gump(actor, shapenum); //force showing stats.
stats_page = i;
return;
}
}
stats_page = (stats_page + 1) % (party_count + 1);
} else {
stats_page = params[0];
if (stats_page < 0 ||
stats_page >= gwin->get_party_man()->get_count())
stats_page = 0;
}
actor = Get_party_member(stats_page);
if (actor) gwin->get_gump_man()->add_gump(actor, game->get_shape("gumps/statsdisplay"));
Mouse::mouse->set_speed_cursor();
}
// { ActionCombatStats, 0, "Show Combat stats", normal_keys, SERPENT_ISLE }
void ActionCombatStats(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
int cnt = gwin->get_party_man()->get_count();
gwin->get_gump_man()->add_gump(0, game->get_shape("gumps/cstats/1") + cnt);
}
// { ActionFaceStats, 0, "Change Face Stats State", normal_keys, NONE }
void ActionFaceStats(int const *params) {
ignore_unused_variable_warning(params);
Face_stats::AdvanceState();
Face_stats::save_config(config);
}
void ActionUseHealingItems(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
if (gwin->activate_item(827)) // bandage
return;
// Potions are wasted if at full health so we will check for that
int x, y;
if (!is_party_item(340, 1) || !Get_click(x, y, Mouse::greenselect))
return;
Game_object *obj = gwin->find_object(x, y);
if(obj) {
Actor *target = obj->as_actor();
if(target && target->get_property(Actor::health) < target->get_property(Actor::strength)) {
Game_object *oldtarg;
Tile_coord *oldtile;
Usecode_machine *ucmachine = gwin->get_usecode();
ucmachine->save_intercept(oldtarg, oldtile);
ucmachine->intercept_click_on_item(obj);
gwin->activate_item(340, 1); // healing potion
ucmachine->restore_intercept(oldtarg, oldtile);
return;
}
}
}
// { ActionSIIntro, 0, "Show SI intro", cheat_keys, SERPENT_ISLE },
void ActionSIIntro(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
game->set_jive();
game->play_intro();
game->clear_jive();
gwin->clear_screen(true);
gwin->get_pal()->set(0);
gwin->paint();
gwin->get_pal()->fade(50, 1, 0);
}
// { ActionEndgame, 1, "Show endgame", cheat_keys, BLACK_GATE },
// params[0] = -1,0 = won, 1 = lost
void ActionEndgame(int const *params) {
Game_window *gwin = Game_window::get_instance();
game->end_game(params[0] != 1);
gwin->clear_screen(true);
gwin->get_pal()->set(0);
gwin->paint();
gwin->get_pal()->fade(50, 1, 0);
}
// { ActionScrollLeft, 0, "Scroll left", cheat_keys, NONE },
void ActionScrollLeft(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
for (int i = 16; i; i--)
gwin->view_left();
}
// { ActionScrollRight, 0, "Scroll right", cheat_keys, NONE },
void ActionScrollRight(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
for (int i = 16; i; i--)
gwin->view_right();
}
// { ActionScrollUp, 0, "Scroll up", cheat_keys, NONE },
void ActionScrollUp(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
for (int i = 16; i; i--)
gwin->view_up();
}
// { ActionScrollDown, 0, "Scroll down", cheat_keys, NONE },
void ActionScrollDown(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
for (int i = 16; i; i--)
gwin->view_down();
}
int get_walking_speed(int const *params) {
Game_window *gwin = Game_window::get_instance();
int parm = params ? params[0] : 0;
int speed;
if (parm == 2)
speed = Mouse::slow_speed_factor;
else if (gwin->in_combat() || gwin->is_hostile_nearby())
speed = Mouse::medium_combat_speed_factor;
else
speed = parm == 1 ? Mouse::medium_speed_factor : Mouse::fast_speed_factor;
return (200 * gwin->get_std_delay() / speed);
}
// { ActionWalkWest, 0, "Walk west", normal_keys, NONE },
void ActionWalkWest(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2 - 50, gwin->get_height() / 2, speed);
}
// { ActionWalkEast, 0, "Walk east", normal_keys, NONE },
void ActionWalkEast(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2 + 50, gwin->get_height() / 2, speed);
}
// { ActionWalkNorth, 0, "Walk north", normal_keys, NONE },
void ActionWalkNorth(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2, gwin->get_height() / 2 - 50, speed);
}
// { ActionWalkSouth, 0, "Walk south", normal_keys, NONE },
void ActionWalkSouth(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2, gwin->get_height() / 2 + 50, speed);
}
// { ActionWalkNorthEast, 0, "Walk north-east", normal_keys, NONE },
void ActionWalkNorthEast(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2 + 50, gwin->get_height() / 2 - 50, speed);
}
// { ActionWalkSouthEast, 0, "Walk south-east", normal_keys, NONE },
void ActionWalkSouthEast(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2 + 50, gwin->get_height() / 2 + 50, speed);
}
// { ActionWalkNorthWest, 0, "Walk north-west", normal_keys, NONE },
void ActionWalkNorthWest(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2 - 50, gwin->get_height() / 2 - 50, speed);
}
// { ActionWalkSouthWest, 0, "Walk south-west", normal_keys, NONE },
void ActionWalkSouthWest(int const *params) {
Game_window *gwin = Game_window::get_instance();
int speed = get_walking_speed(params);
gwin->start_actor(gwin->get_width() / 2 - 50, gwin->get_height() / 2 + 50, speed);
}
// { ActionStopWalking, 0, "Stop Walking", cheat_keys, NONE },
void ActionStopWalking(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
gwin->stop_actor();
}
// { ActionCenter, 0, "Center screen", cheat_keys, NONE },
void ActionCenter(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
gwin->center_view(gwin->get_camera_actor()->get_tile());
gwin->paint();
}
// { ActionShapeBrowser, 0, "Shape browser", cheat_keys, NONE },
void ActionShapeBrowser(int const *params) {
ignore_unused_variable_warning(params);
cheat.shape_browser();
}
void ActionShapeBrowserHelp(int const *params) {
ignore_unused_variable_warning(params);
keybinder->ShowBrowserKeys();
}
// { ActionCreateShape, 3, "Create last shape", cheat_keys, NONE },
// params[0] = shape nr., or -1 for 'last selected shape in browser'
// params[1] = frame nr.
// params[2] = quantity
// params[3] = quality
void ActionCreateShape(int const *params) {
if (params[0] == -1) {
cheat.create_last_shape();
} else {
Game_window *gwin = Game_window::get_instance();
int delta = params[2] == -1 ? 1 : params[2];
int shapenum = params[0];
int qual = params[2] == -1 ? c_any_qual : params[2];
int framenum = params[1] == -1 ? 0 : params[1];
gwin->get_main_actor()->add_quantity(delta, shapenum, qual, framenum);
gwin->get_effects()->center_text("Object created");
}
}
// { ActionDeleteObject, 0, "Delete object", cheat_keys, NONE },
void ActionDeleteObject(int const *params) {
ignore_unused_variable_warning(params);
cheat.delete_object();
}
// { ActionDeleteSelected, "Delete selected", true, ture, NONE, false },
void ActionDeleteSelected(int const *params) {
ignore_unused_variable_warning(params);
cheat.delete_selected();
}
// { ActionMoveSelected, 3, "Move selected", cheat_keys, NONE },
// params[0] = deltax (tiles)
// params[1] = deltay
// params[2] = deltaz
void ActionMoveSelected(int const *params) {
cheat.move_selected(params[0], params[1], params[2]);
}
// { ActionToggleEggs, 0, "Toggle egg display", cheat_keys, NONE },
void ActionToggleEggs(int const *params) {
ignore_unused_variable_warning(params);
cheat.toggle_eggs();
}
// { ActionGodMode, 1, "Toggle god mode", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionGodMode(int const *params) {
if (params[0] == -1)
cheat.toggle_god();
else
cheat.set_god(params[0] != 0);
}
// { ActionGender, 0, "Change gender", cheat_keys, NONE },
void ActionGender(int const *params) {
ignore_unused_variable_warning(params);
cheat.change_gender();
}
// { ActionCheatHelp, 0, "List cheat keys", cheat_keys, NONE },
void ActionCheatHelp(int const *params) {
ignore_unused_variable_warning(params);
keybinder->ShowCheatHelp();
}
// { ActionMapeditHelp, 0, "List mapedit keys", mapedit_keys, NONE },
void ActionMapeditHelp(int const *params) {
ignore_unused_variable_warning(params);
keybinder->ShowMapeditHelp();
}
// { ActionInfravision, 1, "Toggle infravision", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionInfravision(int const *params) {
if (params[0] == -1)
cheat.toggle_infravision();
else
cheat.set_infravision(params[0] != 0);
}
// { ActionSkipLift, 1, "Change skiplift", cheat_keys, NONE },
// params[0] = level, or -1 to decrease one
void ActionSkipLift(int const *params) {
if (params[0] == -1)
cheat.dec_skip_lift();
else
cheat.set_skip_lift(params[0]);
}
// { ActionLevelup, 1, "Level-up party", cheat_keys, NONE },
// params[0] = nr. of levels (or -1 for one)
void ActionLevelup(int const *params) {
int cnt = params[0] == -1 ? 1 : params[0];
for (int i = 0; i < cnt; i++)
cheat.levelup_party();
}
// { ActionMapEditor, 1, "Toggle map-editor mode", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionMapEditor(int const *params) {
if (params[0] == -1)
cheat.toggle_map_editor();
else
cheat.set_map_editor(params[0] != 0);
}
// { ActionHackMover, "Toggle hack-mover mode", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionHackMover(int const *params) {
if (params[0] == -1)
cheat.toggle_hack_mover();
else
cheat.set_hack_mover(params[0] != 0);
}
// { ActionMapTeleport, 0, "Map teleport", cheat_keys, NONE },
void ActionMapTeleport(int const *params) {
ignore_unused_variable_warning(params);
cheat.map_teleport();
}
// { ActionWriteMiniMap, 0, "Write minimap", cheat_keys, NONE },
void ActionWriteMiniMap(int const *params) {
ignore_unused_variable_warning(params);
Game_map::write_minimap();
}
// { ActionTeleport, 0, "Teleport to cursor", cheat_keys, NONE },
void ActionTeleport(int const *params) {
ignore_unused_variable_warning(params);
cheat.cursor_teleport();
}
void ActionTeleportTargetMode(int const *params) {
ignore_unused_variable_warning(params);
int x, y;
if (!Get_click(x, y, Mouse::redx))
return;
cheat.cursor_teleport();
}
// { ActionNextMapTeleport, 0, "Teleport to next map", cheat_keys, NONE },
void ActionNextMapTeleport(int const *params) {
ignore_unused_variable_warning(params);
cheat.next_map_teleport();
}
// { ActionTime, 0, "Next time period", cheat_keys, NONE },
void ActionTime(int const *params) {
ignore_unused_variable_warning(params);
cheat.fake_time_period();
}
// { ActionWizard, 1, "Toggle archwizard mode", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionWizard(int const *params) {
if (params[0] == -1)
cheat.toggle_wizard();
else
cheat.set_wizard(params[0] != 0);
}
// { ActionHeal, 0, "Heal party", cheat_keys, NONE },
void ActionHeal(int const *params) {
ignore_unused_variable_warning(params);
cheat.heal_party();
}
// { ActionCheatScreen, 0, "Cheat Screen", cheat_keys, NONE },
void ActionCheatScreen(int const *params) {
ignore_unused_variable_warning(params);
cheat.cheat_screen();
}
// { ActionPickPocket, 1, "Toggle Pickpocket", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionPickPocket(int const *params) {
if (params[0] == -1)
cheat.toggle_pickpocket();
else
cheat.set_pickpocket(params[0] != 0);
}
// { ActionPickPocket, 1, "Toggle Pickpocket", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionNPCNumbers(int const *params) {
if (params[0] == -1)
cheat.toggle_number_npcs();
else
cheat.set_number_npcs(params[0] != 0);
}
// { ActionGrabActor, 1, "Grab Actor for Cheatscreen", cheat_keys, NONE },
// params[0] = -1 for toggle, 0 for off, 1 for on
void ActionGrabActor(int const *params) {
if (params[0] == -1)
cheat.toggle_grab_actor();
else
cheat.set_grab_actor(params[0] != 0);
}
// { ActionCut, "Cut Selected Objects", normal_keys, NONE, true},
void ActionCut(int const *params) {
ignore_unused_variable_warning(params);
cheat.cut(false);
}
// { ActionCopy, "Copy Selected Objects", normal_keys, NONE, true},
void ActionCopy(int const *params) {
ignore_unused_variable_warning(params);
cheat.cut(true);
}
// { ActionPaste, "Paste Selected Objects", normal_keys, NONE, true},
void ActionPaste(int const *params) {
ignore_unused_variable_warning(params);
cheat.paste();
}
// { ActionPlayMusic, 1, "Play song", cheat_keys, NONE },
// params[0] = song nr., or -1 for next, -2 for previous
void ActionPlayMusic(int const *params) {
static int mnum = 0;
if (params[0] == -1) {
Audio::get_ptr()->start_music(mnum++, false);
} else if (params[0] == -2) {
if (mnum > 0)
Audio::get_ptr()->start_music(--mnum, false);
} else {
mnum = params[0];
Audio::get_ptr()->start_music(mnum, false);
}
}
// { ActionNaked, 0, "Toggle naked mode", cheat_keys, SERPENT_ISLE },
void ActionNaked(int const *params) {
ignore_unused_variable_warning(params);
cheat.toggle_naked();
}
// { ActionPetra, 0, "Toggle Petra mode", cheat_keys, SERPENT_ISLE },
void ActionPetra(int const *params) {
ignore_unused_variable_warning(params);
cheat.toggle_Petra();
}
// { ActionSkinColour, 0 "Change skin colour", cheat_keys, NONE },
void ActionSkinColour(int const *params) {
ignore_unused_variable_warning(params);
cheat.change_skin();
}
// { ActionNotebook, 0, "Show notebook", normal_keys, NONE, false },
void ActionNotebook(int const *params) {
ignore_unused_variable_warning(params);
Game_window *gwin = Game_window::get_instance();
Gump_manager *gman = gwin->get_gump_man();
Notebook_gump *notes = Notebook_gump::get_instance();
if (notes)
gman->remove_gump(notes); // Want to raise to top.
else
notes = Notebook_gump::create();
gman->add_gump(notes);
gwin->paint();
}
// { ActionSoundTester, 0, "Sound tester", cheat_keys, NONE }
void ActionSoundTester(int const *params) {
ignore_unused_variable_warning(params);
cheat.sound_tester();
}
void ActionTest(int const *params) {
ignore_unused_variable_warning(params);
}