File: ConsoleCmds.cpp

package info (click to toggle)
lugaru 1.2-7.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,748 kB
  • sloc: cpp: 29,640; ansic: 537; sh: 34; xml: 28; makefile: 14
file content (757 lines) | stat: -rw-r--r-- 21,128 bytes parent folder | download | duplicates (5)
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
/*
Copyright (C) 2003, 2010 - Wolfire Games
Copyright (C) 2010-2017 - Lugaru contributors (see AUTHORS file)

This file is part of Lugaru.

Lugaru 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.

Lugaru 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 Lugaru.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "Devtools/ConsoleCmds.hpp"

#include "Game.hpp"
#include "Level/Dialog.hpp"
#include "Level/Hotspot.hpp"
#include "Tutorial.hpp"
#include "Utils/Folders.hpp"

const char* cmd_names[cmd_count] = {
#define DECLARE_COMMAND(cmd) #cmd,
#include "ConsoleCmds.def"
#undef DECLARE_COMMAND
};

console_handler cmd_handlers[cmd_count] = {
#define DECLARE_COMMAND(cmd) ch_##cmd,
#include "ConsoleCmds.def"
#undef DECLARE_COMMAND
};

using namespace Game;

/* globals */

extern bool campaign;
extern bool cellophane;
extern int editoractive;
extern int editorpathtype;
extern int environment;
extern float fadestart;
extern float slomospeed;
extern float slomofreq;
extern int hostile;
extern int maptype;
extern int slomo;
extern float slomodelay;
extern bool skyboxtexture;
extern float skyboxr;
extern float skyboxg;
extern float skyboxb;
extern float skyboxlightr;
extern float skyboxlightg;
extern float skyboxlightb;
extern Terrain terrain;
extern float viewdistance;

/* defined in GameTick.cpp */

extern int whichlevel;

float tintr = 1, tintg = 1, tintb = 1;

/* Helpers used in console commands */

/* Return true if PFX is a prefix of STR (case-insensitive).  */
static bool stripfx(const char* str, const char* pfx)
{
    return !strncasecmp(str, pfx, strlen(pfx));
}

static void set_proportion(int pnum, const char* args)
{
    float headprop, bodyprop, armprop, legprop;

    sscanf(args, "%f%f%f%f", &headprop, &bodyprop, &armprop, &legprop);

    Person::players[pnum]->setProportions(headprop, bodyprop, armprop, legprop);
}

static void set_protection(int pnum, const char* args)
{
    float head, high, low;
    sscanf(args, "%f%f%f", &head, &high, &low);

    Person::players[pnum]->protectionhead = head;
    Person::players[pnum]->protectionhigh = high;
    Person::players[pnum]->protectionlow = low;
}

static void set_armor(int pnum, const char* args)
{
    float head, high, low;
    sscanf(args, "%f%f%f", &head, &high, &low);

    Person::players[pnum]->armorhead = head;
    Person::players[pnum]->armorhigh = high;
    Person::players[pnum]->armorlow = low;
}

static void set_metal(int pnum, const char* args)
{
    float head, high, low;
    sscanf(args, "%f%f%f", &head, &high, &low);

    Person::players[pnum]->metalhead = head;
    Person::players[pnum]->metalhigh = high;
    Person::players[pnum]->metallow = low;
}

static void set_noclothes(int pnum, const char*)
{
    Person::players[pnum]->numclothes = 0;
    Person::players[pnum]->skeleton.drawmodel.textureptr.load(
        PersonType::types[Person::players[pnum]->creature].skins[Person::players[pnum]->whichskin], 1,
        &Person::players[pnum]->skeleton.skinText[0], &Person::players[pnum]->skeleton.skinsize);
}

static void set_clothes(int pnum, const char* args)
{
    char buf[64];
    snprintf(buf, 63, "Textures/%s.png", args);

    const std::string file_path = Folders::getResourcePath(buf);
    FILE* tfile;
    tfile = fopen(file_path.c_str(), "rb");
    if (tfile == NULL) {
        perror((std::string("Couldn't find file ") + file_path + " to assign as clothes").c_str());

        // FIXME: Reduce code duplication with GameTick (should come from a Console class)
        for (int k = 14; k >= 1; k--) {
            consoletext[k] = consoletext[k - 1];
        }
        consoletext[0] = std::string("Could not load the requested texture '") + args + "', aborting.";
        consoleselected = 0;

        return;
    }

    int id = Person::players[pnum]->numclothes;
    strncpy(Person::players[pnum]->clothes[id], buf, 64);
    Person::players[pnum]->clothestintr[id] = tintr;
    Person::players[pnum]->clothestintg[id] = tintg;
    Person::players[pnum]->clothestintb[id] = tintb;
    Person::players[pnum]->numclothes++;

    if (!Person::players[pnum]->addClothes(id)) {
        return;
    }

    Person::players[pnum]->DoMipmaps();
}

static void list_clothes(int pnum)
{
    printf("Clothes from player %d:\n", pnum);
    for (int i = 0; i < Person::players[pnum]->numclothes; i++) {
        printf("%s (%f %f %f)\n",
               Person::players[pnum]->clothes[i],
               Person::players[pnum]->clothestintr[i],
               Person::players[pnum]->clothestintg[i],
               Person::players[pnum]->clothestintb[i]);
    }
}

/* Console commands themselves */

void ch_quit(const char*)
{
    tryquit = 1;
}

void ch_map(const char* args)
{
    if (!LoadLevel(args)) {
        // FIXME: Reduce code duplication with GameTick (should come from a Console class)
        for (int k = 14; k >= 1; k--) {
            consoletext[k] = consoletext[k - 1];
        }
        consoletext[0] = std::string("Could not load the requested level '") + args + "', aborting.";
        consoleselected = 0;
    }
    whichlevel = -2;
    campaign = 0;
}

void ch_save(const char* args)
{
    std::string map_path = Folders::getUserDataPath() + "/Maps";
    Folders::makeDirectory(map_path);
    map_path = map_path + "/" + args;

    int mapvers = 12;

    FILE* tfile;
    tfile = fopen(map_path.c_str(), "wb");
    if (tfile == NULL) {
        perror((std::string("Couldn't open file ") + map_path + " for saving").c_str());
        return;
    }
    fpackf(tfile, "Bi", mapvers);
    fpackf(tfile, "Bi", maptype);
    fpackf(tfile, "Bi", hostile);
    fpackf(tfile, "Bf Bf", viewdistance, fadestart);
    fpackf(tfile, "Bb Bf Bf Bf", skyboxtexture, skyboxr, skyboxg, skyboxb);
    fpackf(tfile, "Bf Bf Bf", skyboxlightr, skyboxlightg, skyboxlightb);
    fpackf(tfile, "Bf Bf Bf Bf Bf Bi", Person::players[0]->coords.x, Person::players[0]->coords.y, Person::players[0]->coords.z,
           Person::players[0]->yaw, Person::players[0]->targetyaw, Person::players[0]->num_weapons);
    if (Person::players[0]->num_weapons > 0 && Person::players[0]->num_weapons < 5) {
        for (int j = 0; j < Person::players[0]->num_weapons; j++) {
            fpackf(tfile, "Bi", weapons[Person::players[0]->weaponids[j]].getType());
        }
    }

    fpackf(tfile, "Bf Bf Bf", Person::players[0]->armorhead, Person::players[0]->armorhigh, Person::players[0]->armorlow);
    fpackf(tfile, "Bf Bf Bf", Person::players[0]->protectionhead, Person::players[0]->protectionhigh, Person::players[0]->protectionlow);
    fpackf(tfile, "Bf Bf Bf", Person::players[0]->metalhead, Person::players[0]->metalhigh, Person::players[0]->metallow);
    fpackf(tfile, "Bf Bf", Person::players[0]->power, Person::players[0]->speedmult);

    fpackf(tfile, "Bi", Person::players[0]->numclothes);

    fpackf(tfile, "Bi Bi", Person::players[0]->whichskin, Person::players[0]->creature);

    Dialog::saveDialogs(tfile);

    for (int k = 0; k < Person::players[0]->numclothes; k++) {
        int templength = strlen(Person::players[0]->clothes[k]);
        fpackf(tfile, "Bi", templength);
        for (int l = 0; l < templength; l++) {
            fpackf(tfile, "Bb", Person::players[0]->clothes[k][l]);
        }
        fpackf(tfile, "Bf Bf Bf", Person::players[0]->clothestintr[k], Person::players[0]->clothestintg[k], Person::players[0]->clothestintb[k]);
    }

    fpackf(tfile, "Bi", environment);

    fpackf(tfile, "Bi", Object::objects.size());

    for (unsigned int k = 0; k < Object::objects.size(); k++) {
        fpackf(tfile, "Bi Bf Bf Bf Bf Bf Bf", Object::objects[k]->type, Object::objects[k]->yaw, Object::objects[k]->pitch,
               Object::objects[k]->position.x, Object::objects[k]->position.y, Object::objects[k]->position.z, Object::objects[k]->scale);
    }

    fpackf(tfile, "Bi", Hotspot::hotspots.size());
    for (unsigned i = 0; i < Hotspot::hotspots.size(); i++) {
        fpackf(tfile, "Bi Bf Bf Bf Bf", Hotspot::hotspots[i].type, Hotspot::hotspots[i].size, Hotspot::hotspots[i].position.x, Hotspot::hotspots[i].position.y, Hotspot::hotspots[i].position.z);
        int templength = strlen(Hotspot::hotspots[i].text);
        fpackf(tfile, "Bi", templength);
        for (int l = 0; l < templength; l++) {
            fpackf(tfile, "Bb", Hotspot::hotspots[i].text[l]);
        }
    }

    fpackf(tfile, "Bi", Person::players.size());
    if (Person::players.size() > maxplayers) {
        cout << "Warning: this level contains more players than allowed" << endl;
    }
    for (unsigned j = 1; j < Person::players.size(); j++) {
        fpackf(tfile, "Bi Bi Bf Bf Bf Bi Bi Bf Bb Bf", Person::players[j]->whichskin, Person::players[j]->creature,
               Person::players[j]->coords.x, Person::players[j]->coords.y, Person::players[j]->coords.z,
               Person::players[j]->num_weapons, Person::players[j]->howactive, Person::players[j]->scale, Person::players[j]->immobile, Person::players[j]->yaw);
        if (Person::players[j]->num_weapons < 5) {
            for (int k = 0; k < Person::players[j]->num_weapons; k++) {
                fpackf(tfile, "Bi", weapons[Person::players[j]->weaponids[k]].getType());
            }
        }
        if (Person::players[j]->numwaypoints < 30) {
            fpackf(tfile, "Bi", Person::players[j]->numwaypoints);
            for (int k = 0; k < Person::players[j]->numwaypoints; k++) {
                fpackf(tfile, "Bf", Person::players[j]->waypoints[k].x);
                fpackf(tfile, "Bf", Person::players[j]->waypoints[k].y);
                fpackf(tfile, "Bf", Person::players[j]->waypoints[k].z);
                fpackf(tfile, "Bi", Person::players[j]->waypointtype[k]);
            }
            fpackf(tfile, "Bi", Person::players[j]->waypoint);
        } else {
            Person::players[j]->numwaypoints = 0;
            Person::players[j]->waypoint = 0;
            fpackf(tfile, "Bi Bi Bi", Person::players[j]->numwaypoints, Person::players[j]->waypoint, Person::players[j]->waypoint);
        }

        fpackf(tfile, "Bf Bf Bf", Person::players[j]->armorhead, Person::players[j]->armorhigh, Person::players[j]->armorlow);
        fpackf(tfile, "Bf Bf Bf", Person::players[j]->protectionhead, Person::players[j]->protectionhigh, Person::players[j]->protectionlow);
        fpackf(tfile, "Bf Bf Bf", Person::players[j]->metalhead, Person::players[j]->metalhigh, Person::players[j]->metallow);
        fpackf(tfile, "Bf Bf", Person::players[j]->power, Person::players[j]->speedmult);
        fpackf(tfile, "Bf Bf Bf Bf", Person::players[j]->getProportion(0), Person::players[j]->getProportion(1), Person::players[j]->getProportion(2), Person::players[j]->getProportion(3));

        fpackf(tfile, "Bi", Person::players[j]->numclothes);
        if (Person::players[j]->numclothes) {
            for (int k = 0; k < Person::players[j]->numclothes; k++) {
                int templength;
                templength = strlen(Person::players[j]->clothes[k]);
                fpackf(tfile, "Bi", templength);
                for (int l = 0; l < templength; l++) {
                    fpackf(tfile, "Bb", Person::players[j]->clothes[k][l]);
                }
                fpackf(tfile, "Bf Bf Bf", Person::players[j]->clothestintr[k], Person::players[j]->clothestintg[k], Person::players[j]->clothestintb[k]);
            }
        }
    }

    fpackf(tfile, "Bi", numpathpoints);
    for (int j = 0; j < numpathpoints; j++) {
        fpackf(tfile, "Bf Bf Bf Bi", pathpoint[j].x, pathpoint[j].y, pathpoint[j].z, numpathpointconnect[j]);
        for (int k = 0; k < numpathpointconnect[j]; k++) {
            fpackf(tfile, "Bi", pathpointconnect[j][k]);
        }
    }

    fpackf(tfile, "Bf Bf Bf Bf", mapcenter.x, mapcenter.y, mapcenter.z, mapradius);

    fclose(tfile);
}

void ch_tint(const char* args)
{
    sscanf(args, "%f%f%f", &tintr, &tintg, &tintb);
}

void ch_tintr(const char* args)
{
    tintr = atof(args);
}

void ch_tintg(const char* args)
{
    tintg = atof(args);
}

void ch_tintb(const char* args)
{
    tintb = atof(args);
}

void ch_speed(const char* args)
{
    Person::players[0]->speedmult = atof(args);
}

void ch_strength(const char* args)
{
    Person::players[0]->power = atof(args);
}

void ch_power(const char* args)
{
    Person::players[0]->power = atof(args);
}

void ch_size(const char* args)
{
    Person::players[0]->scale = atof(args) * .2;
}

void ch_sizenear(const char* args)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        Person::players[closest]->scale = atof(args) * .2;
    }
}

void ch_proportion(const char* args)
{
    set_proportion(0, args);
}

void ch_proportionnear(const char* args)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        set_proportion(closest, args);
    }
}

void ch_protection(const char* args)
{
    set_protection(0, args);
}

void ch_protectionnear(const char* args)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        set_protection(closest, args);
    }
}

void ch_armor(const char* args)
{
    set_armor(0, args);
}

void ch_armornear(const char* args)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        set_armor(closest, args);
    }
}

void ch_protectionreset(const char*)
{
    set_protection(0, "1 1 1");
    set_armor(0, "1 1 1");
}

void ch_metal(const char* args)
{
    set_metal(0, args);
}

void ch_noclothes(const char* args)
{
    set_noclothes(0, args);
}

void ch_noclothesnear(const char* args)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        set_noclothes(closest, args);
    }
}

void ch_clothes(const char* args)
{
    set_clothes(0, args);
}

void ch_clothesnear(const char* args)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        set_clothes(closest, args);
    }
}

void ch_clotheslist(const char*)
{
    list_clothes(0);
}

void ch_clotheslistnear(const char*)
{
    int closest = findClosestPlayer();
    if (closest >= 0) {
        list_clothes(closest);
    }
}

void ch_belt(const char*)
{
    Person::players[0]->skeleton.clothes = !Person::players[0]->skeleton.clothes;
}

void ch_cellophane(const char*)
{
    cellophane = !cellophane;
}

void ch_funnybunny(const char*)
{
    Person::players[0]->creature = rabbittype;
    Person::players[0]->skeletonLoad(true);
    Person::players[0]->scale = .2;
    Person::players[0]->headless = 0;
    Person::players[0]->damagetolerance = 200;
    set_proportion(0, "1 1 1 1");
}

void ch_wolfie(const char*)
{
    Person::players[0]->creature = wolftype;
    Person::players[0]->skeletonLoad();
    Person::players[0]->scale = .23;
    Person::players[0]->damagetolerance = 300;
    set_proportion(0, "1 1 1 1");
}

void ch_lizardwolf(const char*)
{
    Person::players[0]->skeleton.drawmodel.textureptr.load("Textures/FurWolfLizard.jpg", 1, &Person::players[0]->skeleton.skinText[0], &Person::players[0]->skeleton.skinsize);
}

void ch_darko(const char*)
{
    Person::players[0]->skeleton.drawmodel.textureptr.load("Textures/FurDarko.jpg", 1, &Person::players[0]->skeleton.skinText[0], &Person::players[0]->skeleton.skinsize);
}

void ch_sizemin(const char*)
{
    for (unsigned i = 1; i < Person::players.size(); i++) {
        if (Person::players[i]->scale < 0.8 * 0.2) {
            Person::players[i]->scale = 0.8 * 0.2;
        }
    }
}

void ch_tutorial(const char* args)
{
    Tutorial::active = atoi(args);
}

void ch_hostile(const char* args)
{
    hostile = atoi(args);
}

void ch_type(const char* args)
{
    int n = sizeof(editortypenames) / sizeof(editortypenames[0]);
    for (int i = 0; i < n; i++) {
        if (stripfx(args, editortypenames[i])) {
            editoractive = i;
            break;
        }
    }
}

void ch_path(const char* args)
{
    unsigned int n = sizeof(pathtypenames) / sizeof(pathtypenames[0]);
    for (unsigned int i = 0; i < n; i++) {
        if (stripfx(args, pathtypenames[i])) {
            editorpathtype = i;
            break;
        }
    }
}

void ch_hs(const char* args)
{
    float size;
    int type, shift;
    sscanf(args, "%f%d %n", &size, &type, &shift);

    Hotspot::hotspots.emplace_back(Person::players[0]->coords, type, size);

    strcpy(Hotspot::hotspots.back().text, args + shift);
    strcat(Hotspot::hotspots.back().text, "\n");
}

void ch_dialog(const char* args)
{
    int type;
    char buf1[32];

    sscanf(args, "%d %31s", &type, buf1);
    std::string filename = std::string("Dialogues/") + buf1 + ".txt";

    Dialog::dialogs.push_back(Dialog(type, filename));

    Dialog::directing = true;
    Dialog::indialogue = 0;
    Dialog::whichdialogue = Dialog::dialogs.size();
}

void ch_fixdialog(const char* args)
{
    char buf1[32];
    int whichdlg = 0;

    sscanf(args, "%d %31s", &whichdlg, buf1);
    std::string filename = std::string("Dialogues/") + buf1 + ".txt";

    Dialog::dialogs[whichdlg] = Dialog(Dialog::dialogs[whichdlg].type, filename);
}

void ch_fixtype(const char* args)
{
    int whichdlg = 0;
    int type = 0;
    sscanf(args, "%d %d", &whichdlg, &type);
    Dialog::dialogs[whichdlg].type = type;
}

void ch_fixrotation(const char*)
{
    int playerId = Dialog::currentScene().participantfocus;
    Dialog::currentDialog().participantyaw[playerId] = Person::players[playerId]->yaw;
}

void ch_ddialog(const char* args)
{
    if (Dialog::dialogs.empty() || Dialog::inDialog()) {
        return;
    }

    int dlg = -1;
    sscanf(args, "%d", &dlg);
    if (dlg == -1) {
        // Remove last entry
        Dialog::dialogs.pop_back();
        return;
    }

    if (dlg >= int(Dialog::dialogs.size())) {
        // Invalid index, abort
        return;
    }

    // Erase given index, higher indexes will be decreased by 1
    Dialog::dialogs.erase(Dialog::dialogs.begin() + dlg);
}

void ch_dhs(const char*)
{
    if (!Hotspot::hotspots.empty()) {
        Hotspot::hotspots.pop_back();
    }
}

void ch_immobile(const char*)
{
    Person::players[0]->immobile = 1;
}

void ch_allimmobile(const char*)
{
    for (unsigned i = 1; i < Person::players.size(); i++) {
        Person::players[i]->immobile = 1;
    }
}

void ch_mobile(const char*)
{
    Person::players[0]->immobile = 0;
}

void ch_default(const char*)
{
    Person::players[0]->armorhead = 1;
    Person::players[0]->armorhigh = 1;
    Person::players[0]->armorlow = 1;
    Person::players[0]->protectionhead = 1;
    Person::players[0]->protectionhigh = 1;
    Person::players[0]->protectionlow = 1;
    Person::players[0]->metalhead = 1;
    Person::players[0]->metalhigh = 1;
    Person::players[0]->metallow = 1;
    Person::players[0]->power = 1;
    Person::players[0]->speedmult = 1;
    if (Person::players[0]->creature == wolftype) {
        Person::players[0]->scale = .23;
    } else if (Person::players[0]->creature == rabbittype) {
        Person::players[0]->scale = .2;
    }

    Person::players[0]->setProportions(1, 1, 1, 1);

    Person::players[0]->numclothes = 0;
    Person::players[0]->skeleton.drawmodel.textureptr.load(
        PersonType::types[Person::players[0]->creature].skins[Person::players[0]->whichskin], 1,
        &Person::players[0]->skeleton.skinText[0], &Person::players[0]->skeleton.skinsize);

    editoractive = typeactive;
    Person::players[0]->immobile = 0;
}

void ch_play(const char* args)
{
    int dlg;
    sscanf(args, "%d", &dlg);
    Dialog::whichdialogue = dlg;

    if (Dialog::whichdialogue >= int(Dialog::dialogs.size())) {
        return;
    }

    Dialog::currentDialog().play();
}

void ch_mapkilleveryone(const char*)
{
    maptype = mapkilleveryone;
}

void ch_mapkillmost(const char*)
{
    maptype = mapkillmost;
}

void ch_mapkillsomeone(const char*)
{
    maptype = mapkillsomeone;
}

void ch_mapgosomewhere(const char*)
{
    maptype = mapgosomewhere;
}

void ch_viewdistance(const char* args)
{
    viewdistance = atof(args) * 100;
}

void ch_fadestart(const char* args)
{
    fadestart = atof(args);
}

void ch_slomo(const char* args)
{
    slomospeed = atof(args);
    slomo = !slomo;
    slomodelay = 1000;
}

void ch_slofreq(const char* args)
{
    slomofreq = atof(args);
}

void ch_skytint(const char* args)
{
    sscanf(args, "%f%f%f", &skyboxr, &skyboxg, &skyboxb);

    skyboxlightr = skyboxr;
    skyboxlightg = skyboxg;
    skyboxlightb = skyboxb;

    SetUpLighting();

    terrain.DoShadows();
    Object::DoShadows();
}

void ch_skylight(const char* args)
{
    sscanf(args, "%f%f%f", &skyboxlightr, &skyboxlightg, &skyboxlightb);

    SetUpLighting();

    terrain.DoShadows();
    Object::DoShadows();
}

void ch_skybox(const char*)
{
    skyboxtexture = !skyboxtexture;

    SetUpLighting();

    terrain.DoShadows();
    Object::DoShadows();
}