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
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "teenagent/console.h"
#include "teenagent/teenagent.h"
namespace TeenAgent {
Console::Console(TeenAgentEngine *engine) : _engine(engine) {
DCmd_Register("enable_object", WRAP_METHOD(Console, enableObject));
DCmd_Register("disable_object", WRAP_METHOD(Console, enableObject));
DCmd_Register("set_ons", WRAP_METHOD(Console, setOns));
DCmd_Register("set_music", WRAP_METHOD(Console, setMusic));
}
bool Console::enableObject(int argc, const char **argv) {
if (argc < 2) {
DebugPrintf("usage: %s object_id [scene_id]\n", argv[0]);
return true;
}
int id = atoi(argv[1]);
if (id < 0) {
DebugPrintf("object id %d is invalid\n", id);
return true;
}
int scene_id = 0;
if (argc > 2) {
scene_id = atoi(argv[2]);
if (scene_id < 0) {
DebugPrintf("scene id %d is invalid\n", scene_id);
return true;
}
}
if (strcmp(argv[0], "disable_object") == 0)
_engine->disableObject(id, scene_id);
else
_engine->enableObject(id, scene_id);
return true;
}
bool Console::setOns(int argc, const char **argv) {
if (argc < 3) {
DebugPrintf("usage: %s index(0-3) value [scene_id]\n", argv[0]);
return true;
}
int index = atoi(argv[1]);
if (index < 0 || index > 3) {
DebugPrintf("index %d is invalid\n", index);
return true;
}
int value = 0;
value = atoi(argv[2]);
if (value < 0) {
DebugPrintf("invalid value\n");
return true;
}
int scene_id = 0;
if (argc > 3) {
scene_id = atoi(argv[3]);
if (scene_id < 0) {
DebugPrintf("scene id %d is invalid\n", scene_id);
return true;
}
}
_engine->setOns(index, value, scene_id);
return true;
}
bool Console::setMusic(int argc, const char **argv) {
if (argc < 2) {
DebugPrintf("usage: %s index(1-11)\n", argv[0]);
return true;
}
int index = atoi(argv[1]);
if (index <= 0 || index > 11) {
DebugPrintf("invalid value\n");
return true;
}
_engine->setMusic(index);
return true;
}
}
|