File: adv_control.cpp

package info (click to toggle)
scummvm 2.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 450,580 kB
  • sloc: cpp: 4,299,825; asm: 28,322; python: 12,901; sh: 11,302; java: 9,289; xml: 7,895; perl: 2,639; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (212 lines) | stat: -rw-r--r-- 6,207 bytes parent folder | download | duplicates (2)
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
/* 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 3 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, see <http://www.gnu.org/licenses/>.
 *
 */

#include "m4/adv_r/adv_control.h"
#include "m4/adv_r/adv_interface.h"
#include "m4/core/errors.h"
#include "m4/core/mouse.h"
#include "m4/gui/hotkeys.h"
#include "m4/gui/gui_vmng.h"
#include "m4/mem/memman.h"
#include "m4/wscript/ws_machine.h"
#include "m4/vars.h"
#include "m4/m4.h"

namespace M4 {

bool kernel_section_startup() {
	_G(game).previous_section = _G(game).section_id;
	_G(game).section_id = _G(game).new_section;

	return true;
}

void player_set_commands_allowed(bool t_or_f) {
	_G(set_commands_allowed_since_last_checked) = true;
	_G(player).comm_allowed = t_or_f;

	if (t_or_f) {
		// OK to do something
		mouse_set_sprite(kArrowCursor);
		intr_cancel_sentence();
		track_hotspots_refresh();

	} else {
		// Hour glass
		_GI().showWaitCursor();
	}
}

void game_pause(bool flag) {
	if (flag) {
		_G(kernel).pause = true;
		pauseEngines();
	} else {
		_G(kernel).pause = false;
		unpauseEngines();
	}
}

void player_hotspot_walk_override(int32 x, int32 y, int32 facing, int32 trigger) {
	_G(player).walk_x = x;
	_G(player).walk_y = y;
	_G(player).walk_facing = facing;
	_G(player).walker_trigger = trigger;
	_G(player).ready_to_walk = true;
	_G(player).need_to_walk = true;
}

void player_hotspot_walk_override_just_face(int32 facing, int32 trigger) {
	player_update_info(_G(my_walker), &_G(player_info));
	player_hotspot_walk_override(_G(player_info).x, _G(player_info).y, facing, trigger);
}

void adv_kill_digi_between_rooms(bool true_or_false) {
	_G(shut_down_digi_tracks_between_rooms) = true_or_false;
}

bool this_is_a_walkcode(int32 x, int32 y) {
	if (!_G(screenCodeBuff))
		return false;

	Buffer *walkCodes;
	byte *ptr;
	bool result;

	walkCodes = _G(screenCodeBuff)->get_buffer();
	if (!walkCodes)
		return false;

	// Verify params
	if (x < 0 || y < 0 || x >= walkCodes->w || y >= walkCodes->h)
		return false;

	ptr = gr_buffer_pointer(walkCodes, x, y);
	result = ((*ptr) & 0x10) ? true : false;

	_G(screenCodeBuff)->release();
	return result;
}

int32 get_screen_depth(int32 x, int32 y) {
	Buffer *walkCodes;
	byte *ptr;
	int32 myDepth;

	if (!_G(screenCodeBuff))
		return 0;

	walkCodes = _G(screenCodeBuff)->get_buffer();
	if (!walkCodes) {
		return 0;
	}

	// Verify params
	if (x < 0 || y < 0 || x >= walkCodes->w || y >= walkCodes->h) {
		return -1;
	}

	ptr = gr_buffer_pointer(walkCodes, x, y);
	myDepth = (*ptr) & 0x0f;

	_G(screenCodeBuff)->release();
	return myDepth;
}

int32 get_screen_color(int32 x, int32 y) {
	Buffer *game_buff;
	byte *ptr;
	int32 myColor;

	game_buff = _G(gameDrawBuff)->get_buffer();
	if (!game_buff) {
		return -1;
	}

	//verify params
	if (x < 0 || y < 0 || x >= game_buff->w || y >= game_buff->h) {
		return -1;
	}

	ptr = gr_buffer_pointer(game_buff, x, y);
	myColor = *ptr;

	_G(gameDrawBuff)->release();
	return myColor;
}

void update_mouse_pos_dialog() {
	int32 status;

	ScreenContext *game_buff_ptr = vmng_screen_find(_G(gameDrawBuff), &status);
	assert(game_buff_ptr);

	if (_G(my_walker) != nullptr) {
		if (!_G(my_walker)->myAnim8)
			error_show(FL, 'W:-(');
		player_get_info();
	}

	char tempStr1[MAX_STRING_LEN], tempStr2[MAX_STRING_LEN];

	Common::sprintf_s(tempStr1, "%d  From: %d", _G(game).room_id, _G(game).previous_room);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 1);

	int32 xxx = _G(MouseState).CursorColumn;
	int32 yyy = _G(MouseState).CursorRow;

	int32 scrnDepth = get_screen_depth(xxx - game_buff_ptr->x1, yyy - game_buff_ptr->y1);
	int32 palColor = get_screen_color(xxx - game_buff_ptr->x1, yyy - game_buff_ptr->y1);

	if (this_is_a_walkcode(xxx - game_buff_ptr->x1, yyy - game_buff_ptr->y1)) {
		Common::sprintf_s(tempStr1, "WC %d, %d  PAL: %d", xxx, yyy, palColor);
		Common::sprintf_s(tempStr2, "WC %d, %d  D: %d", xxx - game_buff_ptr->x1, yyy - game_buff_ptr->y1, scrnDepth);
	} else {
		Common::sprintf_s(tempStr1, "   %d, %d  PAL: %d", xxx, yyy, palColor);
		Common::sprintf_s(tempStr2, "   %d, %d  D: %d", xxx - game_buff_ptr->x1, yyy - game_buff_ptr->y1, scrnDepth);
	}
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 2);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr2, nullptr, 3);

	if (this_is_a_walkcode(_G(player_info).x, _G(player_info).y)) {
		Common::sprintf_s(tempStr1, "WC %d, %d", _G(player_info).x + game_buff_ptr->x1, _G(player_info).y + game_buff_ptr->y1);
		Common::sprintf_s(tempStr2, "WC %d, %d", _G(player_info).x, _G(player_info).y);
	} else {
		Common::sprintf_s(tempStr1, "  %d, %d", _G(player_info).x + game_buff_ptr->x1, _G(player_info).y + game_buff_ptr->y1);
		Common::sprintf_s(tempStr2, "  %d, %d", _G(player_info).x, _G(player_info).y);
	}
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 4);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr2, nullptr, 5);

	Common::sprintf_s(tempStr1, "%d", _G(player_info).scale);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 6);

	Common::sprintf_s(tempStr1, "%x", _G(player_info).depth);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 7);

	Common::sprintf_s(tempStr1, "%d, %d", game_buff_ptr->x1, game_buff_ptr->y1);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 8);

	Common::sprintf_s(tempStr1, "%d", _G(player_info).facing);
	Dialog_Change_Item_Prompt(_G(mousePosDialog), tempStr1, nullptr, 10);
}

} // End of namespace M4