2011-07-19 10:26:40 +00:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-06-15 21:03:00 +00:00
|
|
|
#include "dreamweb/dreamweb.h"
|
|
|
|
#include "engines/util.h"
|
2011-06-25 18:30:16 +00:00
|
|
|
#include "common/config-manager.h"
|
2011-06-15 21:03:00 +00:00
|
|
|
|
2011-06-16 12:31:17 +00:00
|
|
|
namespace DreamGen {
|
2011-06-15 21:03:00 +00:00
|
|
|
|
2011-12-04 09:11:28 +00:00
|
|
|
// Keyboard buffer. data.word(kBufferin) and data.word(kBufferout) are indexes
|
|
|
|
// into this, making it a ring buffer
|
|
|
|
uint8 g_keyBuffer[16];
|
|
|
|
|
2011-12-03 13:54:00 +00:00
|
|
|
const Room g_roomData[] = {
|
|
|
|
{ "DREAMWEB.R00", // Ryan's apartment
|
|
|
|
5,255,33,10,
|
|
|
|
255,255,255,0,
|
|
|
|
1,6,2,255,3,255,255,255,255,255,0 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R01",
|
|
|
|
1,255,44,10,
|
|
|
|
255,255,255,0,
|
|
|
|
7,2,255,255,255,255,6,255,255,255,1 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R02",
|
|
|
|
2,255,33,0,
|
|
|
|
255,255,255,0,
|
|
|
|
1,0,255,255,1,255,3,255,255,255,2 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R03",
|
|
|
|
5,255,33,10,
|
|
|
|
255,255,255,0,
|
|
|
|
2,2,0,2,4,255,0,255,255,255,3 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R04",
|
|
|
|
23,255,11,30,
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,0,5,255,255,3,255,255,255,4 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R05",
|
|
|
|
5,255,22,30, // if demo: 22,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
1,2,0,4,255,255,3,255,255,255,5 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R06",
|
|
|
|
5,255,11,30,
|
|
|
|
255,255,255,0,
|
|
|
|
1,0,0,1,2,255,0,255,255,255,6 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R07",
|
|
|
|
255,255,0,20,
|
|
|
|
255,255,255,0,
|
|
|
|
2,2,255,255,255,255,0,255,255,255,7 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R08",
|
|
|
|
8,255,0,10,
|
|
|
|
255,255,255,0,
|
|
|
|
1,2,255,255,255,255,0,11,40,0,8 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R09",
|
|
|
|
9,255,22,10,
|
|
|
|
255,255,255,0,
|
|
|
|
4,6,255,255,255,255,0,255,255,255,9 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R10",
|
|
|
|
10,255,33,30,
|
|
|
|
255,255,255,0,
|
|
|
|
2,0,255,255,2,2,4,22,30,255,10 }, // 22,30,0 switches
|
|
|
|
// off path 0 in skip
|
|
|
|
{ "DREAMWEB.R11",
|
|
|
|
11,255,11,20,
|
|
|
|
255,255,255,0,
|
|
|
|
0,4,255,255,255,255,255,255,255,255,11 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R12",
|
|
|
|
12,255,22,20,
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,255,255,255,255,255,255,255,255,12 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R13",
|
|
|
|
12,255,22,20,
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,255,255,255,255,255,255,255,255,13 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R14",
|
|
|
|
14,255,44,20,
|
|
|
|
255,255,255,0,
|
|
|
|
0,6,255,255,255,255,255,255,255,255,14 },
|
|
|
|
|
|
|
|
{ "", 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },
|
|
|
|
{ "", 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },
|
|
|
|
{ "", 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },
|
|
|
|
{ "", 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R19",
|
|
|
|
19,255,0,0,
|
|
|
|
255,255,255,0,
|
|
|
|
0,4,255,255,255,255,255,255,255,255,19 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R20",
|
|
|
|
22,255,0,20,
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,2,15,255,255,255,255,255,255,20 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R21",
|
|
|
|
5,255,11,10, // if demo: 22,255,11,10,
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,2,15,1,255,255,255,255,255,21 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R22",
|
|
|
|
22,255,22,10,
|
|
|
|
255,255,255,0,
|
|
|
|
0,4,255,255,1,255,255,255,255,255,22 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R23",
|
|
|
|
23,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,2,15,3,255,255,255,255,255,23 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R24",
|
|
|
|
5,255,44,0,
|
|
|
|
255,255,255,0,
|
|
|
|
1,6,2,15,255,255,255,255,255,255,24 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R25",
|
|
|
|
22,255,11,40,
|
|
|
|
255,255,255,0,
|
|
|
|
1,0,255,255,255,255,255,255,255,255,25 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R26",
|
|
|
|
9,255,22,20,
|
|
|
|
255,255,255,0,
|
|
|
|
4,2,255,255,255,255,255,255,255,255,26 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R27",
|
|
|
|
22,255,11,20,
|
|
|
|
255,255,255,0,
|
|
|
|
0,6,255,255,255,255,255,255,255,255,27 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R28",
|
|
|
|
5,255,11,30,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,2,255,255,255,255,255,28 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R29",
|
|
|
|
22,255,11,10,
|
|
|
|
255,255,255,0,
|
|
|
|
0,2,255,255,255,255,255,255,255,255,29 },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{ "DREAMWEB.R05", // Duplicate of hotel lobby, but emerging from the lift.
|
|
|
|
5,255,22,10, // if demo: 22,255,22,10
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,1,15,255,255,255,255,255,255,5 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R04", // Duplicate of pool hall lobby,
|
|
|
|
23,255,22,20, // but emerging from the lift.
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,2,15,255,255,255,255,255,255,4 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R10", // entering alley via skip
|
|
|
|
10,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
3,6,255,255,255,255,255,255,255,255,10 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R12", // on the beach, getting up.
|
|
|
|
12,255,22,20,
|
|
|
|
255,255,255,0,
|
|
|
|
0,2,255,255,255,255,255,255,255,255,12 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R03", // Duplicate of Eden's lobby
|
|
|
|
5,255,44,0, // but emerging from the lift
|
|
|
|
255,255,255,0,
|
|
|
|
1,6,2,255,4,255,255,255,255,255,3 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R24", // Duplicate of Eden's flat
|
|
|
|
5,255,22,0, // but starting on the bed
|
|
|
|
255,255,255,0,
|
|
|
|
3,6,0,255,255,255,255,33,0,3,24 }, // 33,0,3 turns off path for lift
|
|
|
|
|
|
|
|
{ "DREAMWEB.R22", // Duplicate
|
|
|
|
22,255,22,20, // of hotel but in pool room
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,255,255,255,255,255,255,255,255,22 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R22", // Duplicate
|
|
|
|
22,255,22,20, // of hotel but in pool room
|
|
|
|
255,255,255,0, // coming out of bedroom
|
|
|
|
0,2,255,255,255,255,255,255,255,255,22 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R11", // Duplicate
|
|
|
|
11,255,22,30, // of carpark but getting
|
|
|
|
255,255,255,0, // up off the floor
|
|
|
|
0,0,255,255,255,255,255,255,255,255,11 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R28",
|
|
|
|
5,255,11,20,
|
|
|
|
255,255,255,0,
|
|
|
|
0,6,255,255,2,255,255,255,255,255,28 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R21",
|
|
|
|
5,255,11,10, // if demo: 22,255,11,10
|
|
|
|
255,255,255,0,
|
|
|
|
1,4,2,15,1,255,255,255,255,255,21 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R26",
|
|
|
|
9,255,0,40,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,26 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R19",
|
|
|
|
19,255,0,0,
|
|
|
|
255,255,255,0,
|
|
|
|
2,2,255,255,255,255,255,255,255,255,19 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R08", // leaving tvstudio into street
|
|
|
|
8,255,11,40,
|
|
|
|
255,255,255,0,
|
|
|
|
0,4,255,255,255,255,255,255,255,255,8 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R01",
|
|
|
|
1,255,44,10,
|
|
|
|
255,255,255,0,
|
|
|
|
3,6,255,255,255,255,255,255,255,255,1 },
|
|
|
|
|
|
|
|
|
|
|
|
{ "DREAMWEB.R45", // Dream room
|
|
|
|
35,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
0,6,255,255,255,255,255,255,255,255,45 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R46", // Dream room
|
|
|
|
35,255,22,40,
|
|
|
|
255,255,255,0,
|
|
|
|
0,4,255,255,255,255,255,255,255,255,46 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R47", // Dream room
|
|
|
|
35,255,0,0,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,47 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R45", // Dream room
|
|
|
|
35,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
4,0,255,255,255,255,255,255,255,255,45 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R46", // Dream room
|
|
|
|
35,255,22,50,
|
|
|
|
255,255,255,0,
|
|
|
|
0,4,255,255,255,255,255,255,255,255,46 },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{ "DREAMWEB.R50", // Intro sequence one
|
|
|
|
35,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,50 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R51", // Intro sequence two
|
|
|
|
35,255,11,30,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,51 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R52", // Intro sequence three
|
|
|
|
35,255,22,30,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,52 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R53", // Intro sequence four
|
|
|
|
35,255,33,0,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,53 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R54", // Intro sequence five - wasteland
|
|
|
|
35,255,0,0,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,54 },
|
|
|
|
|
|
|
|
{ "DREAMWEB.R55", // End sequence
|
|
|
|
14,255,44,0,
|
|
|
|
255,255,255,0,
|
|
|
|
0,0,255,255,255,255,255,255,255,255,55 }
|
|
|
|
};
|
|
|
|
|
2011-12-03 18:50:25 +00:00
|
|
|
static const Atmosphere g_atmosphereList[] = {
|
|
|
|
// location,map x,y,sound,repeat
|
|
|
|
{ 0,33,10,15,255 },
|
|
|
|
{ 0,22,10,15,255 },
|
|
|
|
{ 0,22,0,15,255 },
|
|
|
|
{ 0,11,0,15,255 },
|
|
|
|
{ 0,11,10,15,255 },
|
|
|
|
{ 0,0,10,15,255 },
|
|
|
|
|
|
|
|
{ 1,44,10,6,255 },
|
|
|
|
{ 1,44,0,13,255 },
|
|
|
|
|
|
|
|
{ 2,33,0,6,255 },
|
|
|
|
{ 2,22,0,5,255 },
|
|
|
|
{ 2,22,10,16,255 },
|
|
|
|
{ 2,11,10,16,255 },
|
|
|
|
|
|
|
|
{ 3,44,0,15,255 },
|
|
|
|
{ 3,33,10,6,255 },
|
|
|
|
{ 3,33,0,5,255 },
|
|
|
|
|
|
|
|
{ 4,11,30,6,255 },
|
|
|
|
{ 4,22,30,5,255 },
|
|
|
|
{ 4,22,20,13,255 },
|
|
|
|
|
|
|
|
{ 10,33,30,6,255 },
|
|
|
|
{ 10,22,30,6,255 },
|
|
|
|
|
|
|
|
{ 9,22,10,6,255 },
|
|
|
|
{ 9,22,20,16,255 },
|
|
|
|
{ 9,22,30,16,255 },
|
|
|
|
{ 9,22,40,16,255 },
|
|
|
|
{ 9,22,50,16,255 },
|
|
|
|
|
|
|
|
{ 6,11,30,6,255 },
|
|
|
|
{ 6,0,10,15,255 },
|
|
|
|
{ 6,0,20,15,255 },
|
|
|
|
{ 6,11,20,15,255 },
|
|
|
|
{ 6,22,20,15,255 },
|
|
|
|
|
|
|
|
{ 7,11,20,6,255 },
|
|
|
|
{ 7,0,20,6,255 },
|
|
|
|
{ 7,0,30,6,255 },
|
|
|
|
|
|
|
|
{ 55,44,0,5,255 },
|
|
|
|
{ 55,44,10,5,255 },
|
|
|
|
|
|
|
|
{ 5,22,30,6,255 },
|
|
|
|
{ 5,22,20,15,255 }, // if demo: { 5,22,20,16,255 },
|
|
|
|
{ 5,22,10,15,255 }, // if demo: { 5,22,10,16,255 },
|
|
|
|
|
|
|
|
{ 24,22,0,15,255 },
|
|
|
|
{ 24,33,0,15,255 },
|
|
|
|
{ 24,44,0,15,255 },
|
|
|
|
{ 24,33,10,15,255 },
|
|
|
|
|
|
|
|
{ 8,0,10,6,255 },
|
|
|
|
{ 8,11,10,6,255 },
|
|
|
|
{ 8,22,10,6,255 },
|
|
|
|
{ 8,33,10,6,255 },
|
|
|
|
{ 8,33,20,6,255 },
|
|
|
|
{ 8,33,30,6,255 },
|
|
|
|
{ 8,33,40,6,255 },
|
|
|
|
{ 8,22,40,6,255 },
|
|
|
|
{ 8,11,40,6,255 },
|
|
|
|
|
|
|
|
{ 11,11,20,12,255 },
|
|
|
|
{ 11,11,30,12,255 },
|
|
|
|
{ 11,22,20,12,255 },
|
|
|
|
{ 11,22,30,12,255 },
|
|
|
|
|
|
|
|
{ 12,22,20,12,255 },
|
|
|
|
{ 13,22,20,12,255 },
|
|
|
|
{ 13,33,20,12,255 },
|
|
|
|
|
|
|
|
{ 14,44,20,12,255 },
|
|
|
|
{ 14,33,0,12,255 },
|
|
|
|
{ 14,33,10,12,255 },
|
|
|
|
{ 14,33,20,12,255 },
|
|
|
|
{ 14,33,30,12,255 },
|
|
|
|
{ 14,33,40,12,255 },
|
|
|
|
{ 14,22,0,16,255 },
|
|
|
|
|
|
|
|
{ 19,0,0,12,255 },
|
|
|
|
|
|
|
|
{ 20,0,20,16,255 },
|
|
|
|
{ 20,0,30,16,255 },
|
|
|
|
{ 20,11,30,16,255 },
|
|
|
|
{ 20,0,40,16,255 },
|
|
|
|
{ 20,11,40,16,255 },
|
|
|
|
|
|
|
|
{ 21,11,10,15,255 }, // if demo: { 21,11,10,16,255 },
|
|
|
|
{ 21,11,20,15,255 }, // if demo: { 21,11,20,16,255 },
|
|
|
|
{ 21, 0,20,15,255 }, // if demo: { 21,0,20,16,255 },
|
|
|
|
{ 21,22,20,15,255 }, // if demo: { 21,22,20,16,255 },
|
|
|
|
{ 21,33,20,15,255 }, // if demo: { 21,33,20,16,255 },
|
|
|
|
{ 21,44,20,15,255 }, // if demo: { 21,44,20,16,255 },
|
|
|
|
{ 21,44,10,15,255 }, // if demo: { 21,44,10,16,255 },
|
|
|
|
|
|
|
|
{ 22,22,10,16,255 },
|
|
|
|
{ 22,22,20,16,255 },
|
|
|
|
|
|
|
|
{ 23,22,30,13,255 },
|
|
|
|
{ 23,22,40,13,255 },
|
|
|
|
{ 23,33,40,13,255 },
|
|
|
|
{ 23,11,40,13,255 },
|
|
|
|
{ 23,0,40,13,255 },
|
|
|
|
{ 23,0,50,13,255 },
|
|
|
|
|
|
|
|
{ 25,11,40,16,255 },
|
|
|
|
{ 25,11,50,16,255 },
|
|
|
|
{ 25,0,50,16,255 },
|
|
|
|
|
|
|
|
{ 27,11,20,16,255 },
|
|
|
|
{ 27,11,30,16,255 },
|
|
|
|
|
|
|
|
{ 29,11,10,16,255 },
|
|
|
|
|
|
|
|
{ 45,22,30,12,255 },
|
|
|
|
{ 45,22,40,12,255 },
|
|
|
|
{ 45,22,50,12,255 },
|
|
|
|
|
|
|
|
{ 46,22,40,12,255 },
|
|
|
|
{ 46,11,50,12,255 },
|
|
|
|
{ 46,22,50,12,255 },
|
|
|
|
{ 46,33,50,12,255 },
|
|
|
|
|
|
|
|
{ 47,0,0,12,255 },
|
|
|
|
|
|
|
|
{ 26,22,20,16,255 },
|
|
|
|
{ 26,33,10,16,255 },
|
|
|
|
{ 26,33,20,16,255 },
|
|
|
|
{ 26,33,30,16,255 },
|
|
|
|
{ 26,44,30,16,255 },
|
|
|
|
{ 26,22,30,16,255 },
|
|
|
|
{ 26,11,30,16,255 },
|
|
|
|
{ 26,11,20,16,255 },
|
|
|
|
{ 26,0,20,16,255 },
|
|
|
|
{ 26,11,40,16,255 },
|
|
|
|
{ 26,0,40,16,255 },
|
|
|
|
{ 26,22,40,16,255 },
|
|
|
|
{ 26,11,50,16,255 },
|
|
|
|
|
|
|
|
{ 28,0,30,15,255 },
|
|
|
|
{ 28,0,20,15,255 },
|
|
|
|
{ 28,0,40,15,255 },
|
|
|
|
{ 28,11,30,15,255 },
|
|
|
|
{ 28,11,20,15,255 },
|
|
|
|
{ 28,22,30,15,255 },
|
|
|
|
{ 28,22,20,15,255 },
|
|
|
|
|
|
|
|
{ 255,255,255,255,255 }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2011-06-26 10:06:16 +00:00
|
|
|
void DreamGenContext::dreamweb() {
|
|
|
|
STACK_CHECK;
|
2011-11-15 21:11:32 +00:00
|
|
|
|
|
|
|
switch(engine->getLanguage()) {
|
|
|
|
case Common::EN_ANY:
|
|
|
|
case Common::EN_GRB:
|
|
|
|
case Common::EN_USA:
|
2011-11-16 02:51:51 +00:00
|
|
|
// Implicit data.byte(kForeignrelease) = 0
|
|
|
|
break;
|
2011-11-15 21:11:32 +00:00
|
|
|
default:
|
|
|
|
data.byte(kForeignrelease) = 1;
|
2011-11-16 02:51:51 +00:00
|
|
|
break;
|
2011-11-15 21:11:32 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
seeCommandTail();
|
|
|
|
soundStartup();
|
|
|
|
setKeyboardInt();
|
|
|
|
allocateBuffers();
|
|
|
|
setMouse();
|
|
|
|
fadeDOS();
|
|
|
|
getTime();
|
|
|
|
clearBuffers();
|
|
|
|
clearPalette();
|
|
|
|
set16ColPalette();
|
|
|
|
readSetData();
|
2011-06-26 10:06:16 +00:00
|
|
|
data.byte(kWongame) = 0;
|
2011-06-25 14:40:41 +00:00
|
|
|
|
2011-12-03 17:45:50 +00:00
|
|
|
dx = kBasicsample;
|
2011-12-01 19:43:43 +00:00
|
|
|
loadSample();
|
|
|
|
setSoundOff();
|
2011-06-26 10:06:16 +00:00
|
|
|
|
2011-06-25 14:40:41 +00:00
|
|
|
bool firstLoop = true;
|
|
|
|
|
2011-06-25 18:30:16 +00:00
|
|
|
int savegameId = Common::ConfigManager::instance().getInt("save_slot");
|
|
|
|
|
2011-06-25 14:40:41 +00:00
|
|
|
while (true) {
|
|
|
|
|
2011-12-03 14:18:45 +00:00
|
|
|
unsigned int count = scanForNames();
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
bool startNewGame = true;
|
|
|
|
|
2011-06-25 18:30:16 +00:00
|
|
|
if (firstLoop && savegameId >= 0) {
|
|
|
|
|
|
|
|
// loading a savegame requested from launcher/command line
|
|
|
|
|
|
|
|
cls();
|
2011-12-01 19:43:43 +00:00
|
|
|
setMode();
|
|
|
|
loadPalFromIFF();
|
|
|
|
clearPalette();
|
2011-06-25 18:30:16 +00:00
|
|
|
|
2011-12-03 15:54:39 +00:00
|
|
|
doLoad(savegameId);
|
2011-12-01 19:43:43 +00:00
|
|
|
workToScreen();
|
|
|
|
fadeScreenUp();
|
2011-06-25 18:30:16 +00:00
|
|
|
startNewGame = false;
|
|
|
|
|
2011-12-03 14:18:45 +00:00
|
|
|
} else if (count == 0 && firstLoop) {
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
// no savegames found, and we're not restarting.
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
setMode();
|
|
|
|
loadPalFromIFF();
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
// "doDecisions"
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
// Savegames found, so ask if we should load one.
|
|
|
|
// (If we're restarting after game over, we also always show these
|
|
|
|
// options.)
|
|
|
|
|
|
|
|
cls();
|
2011-12-01 19:43:43 +00:00
|
|
|
setMode();
|
2011-06-25 14:40:41 +00:00
|
|
|
decide();
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-06-25 14:40:41 +00:00
|
|
|
return; // exit game
|
|
|
|
|
|
|
|
if (data.byte(kGetback) == 4)
|
|
|
|
startNewGame = false; // savegame has been loaded
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
firstLoop = false;
|
|
|
|
|
|
|
|
if (startNewGame) {
|
2011-12-01 19:43:43 +00:00
|
|
|
// "playGame"
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
titles();
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-06-25 14:40:41 +00:00
|
|
|
return; // exit game
|
2011-12-02 12:18:39 +00:00
|
|
|
|
|
|
|
// "credits"
|
|
|
|
clearPalette();
|
|
|
|
realCredits();
|
2011-06-25 14:40:41 +00:00
|
|
|
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-06-25 14:40:41 +00:00
|
|
|
return; // exit game
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
clearChanges();
|
|
|
|
setMode();
|
|
|
|
loadPalFromIFF();
|
2011-06-25 14:40:41 +00:00
|
|
|
data.byte(kLocation) = 255;
|
|
|
|
data.byte(kRoomafterdream) = 1;
|
|
|
|
data.byte(kNewlocation) = 35;
|
|
|
|
data.byte(kVolume) = 7;
|
2011-12-01 19:43:43 +00:00
|
|
|
loadRoom();
|
|
|
|
clearSprites();
|
|
|
|
initMan();
|
|
|
|
entryTexts();
|
|
|
|
entryAnims();
|
2011-06-25 14:40:41 +00:00
|
|
|
data.byte(kDestpos) = 3;
|
2011-12-01 19:43:43 +00:00
|
|
|
initialInv();
|
2011-06-25 14:40:41 +00:00
|
|
|
data.byte(kLastflag) = 32;
|
|
|
|
startup1();
|
|
|
|
data.byte(kVolumeto) = 0;
|
2011-10-15 09:21:02 +00:00
|
|
|
data.byte(kVolumedirection) = (uint8)-1;
|
2011-06-25 14:40:41 +00:00
|
|
|
data.byte(kCommandtype) = 255;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// main loop
|
|
|
|
while (true) {
|
|
|
|
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-06-25 14:40:41 +00:00
|
|
|
return; // exit game
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
screenUpdate();
|
2011-06-25 14:40:41 +00:00
|
|
|
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-11-15 19:59:03 +00:00
|
|
|
return; // exit game
|
|
|
|
|
2011-06-25 14:40:41 +00:00
|
|
|
if (data.byte(kWongame) != 0) {
|
|
|
|
// "endofgame"
|
2011-12-01 19:43:43 +00:00
|
|
|
clearBeforeLoad();
|
|
|
|
fadeScreenDowns();
|
|
|
|
hangOn(200);
|
|
|
|
endGame();
|
|
|
|
quickQuit2();
|
2011-06-25 14:40:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.byte(kMandead) == 1 || data.byte(kMandead) == 2)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (data.word(kWatchingtime) > 0) {
|
|
|
|
if (data.byte(kFinaldest) == data.byte(kManspath))
|
|
|
|
data.word(kWatchingtime)--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.word(kWatchingtime) == 0) {
|
2011-12-01 19:43:43 +00:00
|
|
|
// "notWatching"
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
if (data.byte(kMandead) == 4)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (data.byte(kNewlocation) != 255) {
|
2011-12-01 19:43:43 +00:00
|
|
|
// "loadNew"
|
|
|
|
clearBeforeLoad();
|
|
|
|
loadRoom();
|
|
|
|
clearSprites();
|
|
|
|
initMan();
|
|
|
|
entryTexts();
|
|
|
|
entryAnims();
|
2011-06-25 14:40:41 +00:00
|
|
|
data.byte(kNewlocation) = 255;
|
|
|
|
startup();
|
|
|
|
data.byte(kCommandtype) = 255;
|
2011-12-01 19:43:43 +00:00
|
|
|
workToScreenM();
|
2011-06-25 14:40:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
// "gameOver"
|
|
|
|
clearBeforeLoad();
|
|
|
|
showGun();
|
|
|
|
fadeScreenDown();
|
|
|
|
hangOn(100);
|
2011-06-25 14:40:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2011-06-26 10:06:16 +00:00
|
|
|
|
2011-11-20 20:26:18 +00:00
|
|
|
bool DreamGenContext::quitRequested() {
|
|
|
|
return data.byte(kQuitrequested);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::screenUpdate() {
|
|
|
|
newPlace();
|
|
|
|
mainScreen();
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-11-20 20:13:46 +00:00
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
animPointer();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showPointer();
|
2011-11-20 20:13:46 +00:00
|
|
|
if ((data.word(kWatchingtime) == 0) && (data.byte(kNewlocation) != 0xff))
|
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
vSync();
|
2011-11-20 18:54:19 +00:00
|
|
|
uint16 mouseState = 0;
|
|
|
|
mouseState |= readMouseState();
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpPointer();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpTextLine();
|
|
|
|
delPointer();
|
|
|
|
autoLook();
|
|
|
|
spriteUpdate();
|
|
|
|
watchCount();
|
2011-11-20 20:13:46 +00:00
|
|
|
zoom();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showPointer();
|
2011-11-20 20:13:46 +00:00
|
|
|
if (data.byte(kWongame))
|
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
vSync();
|
2011-11-20 18:54:19 +00:00
|
|
|
mouseState |= readMouseState();
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpPointer();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpZoom();
|
|
|
|
delPointer();
|
|
|
|
delEverything();
|
|
|
|
printSprites();
|
|
|
|
reelsOnScreen();
|
|
|
|
afterNewRoom();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showPointer();
|
|
|
|
vSync();
|
2011-11-20 18:54:19 +00:00
|
|
|
mouseState |= readMouseState();
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpPointer();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpMap();
|
|
|
|
dumpTimedText();
|
|
|
|
delPointer();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showPointer();
|
|
|
|
vSync();
|
2011-11-20 18:54:19 +00:00
|
|
|
data.word(kOldbutton) = data.word(kMousebutton);
|
|
|
|
mouseState |= readMouseState();
|
|
|
|
data.word(kMousebutton) = mouseState;
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpPointer();
|
2011-11-20 18:54:19 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpWatch();
|
|
|
|
delPointer();
|
2011-11-20 20:13:46 +00:00
|
|
|
}
|
|
|
|
|
2011-11-20 18:53:58 +00:00
|
|
|
void DreamGenContext::startup() {
|
|
|
|
data.byte(kCurrentkey) = 0;
|
|
|
|
data.byte(kMainmode) = 0;
|
2011-12-01 19:43:43 +00:00
|
|
|
createPanel();
|
2011-11-20 18:53:58 +00:00
|
|
|
data.byte(kNewobs) = 1;
|
2011-12-01 19:43:43 +00:00
|
|
|
drawFloor();
|
|
|
|
showIcon();
|
|
|
|
getUnderZoom();
|
|
|
|
spriteUpdate();
|
|
|
|
printSprites();
|
|
|
|
underTextLine();
|
|
|
|
reelsOnScreen();
|
2011-11-20 18:53:58 +00:00
|
|
|
atmospheres();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::startup1() {
|
2011-12-01 19:43:43 +00:00
|
|
|
clearPalette();
|
2011-11-20 18:53:58 +00:00
|
|
|
data.byte(kThroughdoor) = 0;
|
2011-11-20 18:54:19 +00:00
|
|
|
|
|
|
|
startup();
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
workToScreen();
|
|
|
|
fadeScreenUp();
|
2011-11-20 18:53:58 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::switchRyanOn() {
|
2011-11-20 18:58:05 +00:00
|
|
|
data.byte(kRyanon) = 255;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::switchRyanOff() {
|
2011-11-20 18:58:05 +00:00
|
|
|
data.byte(kRyanon) = 1;
|
|
|
|
}
|
|
|
|
|
2011-07-30 12:13:34 +00:00
|
|
|
static Common::String getFilename(Context &context) {
|
2011-11-15 21:11:53 +00:00
|
|
|
const char *name = (const char *)context.cs.ptr(context.dx, 0);
|
|
|
|
return Common::String(name);
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 05:30:12 +00:00
|
|
|
uint8 *DreamGenContext::textUnder() {
|
2011-12-02 15:29:16 +00:00
|
|
|
return getSegment(data.word(kBuffers)).ptr(kTextunder, 0);
|
2011-11-18 05:30:12 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
uint16 DreamGenContext::standardLoad(const char *fileName) {
|
2011-12-03 14:47:24 +00:00
|
|
|
FileHeader header;
|
|
|
|
|
2011-11-17 17:21:34 +00:00
|
|
|
engine->openFile(fileName);
|
2011-12-03 15:30:51 +00:00
|
|
|
engine->readFromFile((uint8 *)&header, sizeof(FileHeader));
|
2011-12-03 14:47:24 +00:00
|
|
|
uint16 sizeInBytes = header.len(0);
|
2011-12-01 19:43:43 +00:00
|
|
|
uint16 result = allocateMem((sizeInBytes + 15) / 16);
|
2011-12-02 15:29:16 +00:00
|
|
|
engine->readFromFile(getSegment(result).ptr(0, 0), sizeInBytes);
|
2011-11-17 17:21:34 +00:00
|
|
|
engine->closeFile();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::standardLoad() {
|
|
|
|
ax = standardLoad((const char *)cs.ptr(dx, 0));
|
2011-11-17 17:21:34 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadIntoTemp() {
|
|
|
|
loadIntoTemp((const char *)cs.ptr(dx, 0));
|
2011-11-17 23:01:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadIntoTemp2() {
|
|
|
|
loadIntoTemp2((const char *)cs.ptr(dx, 0));
|
2011-11-17 23:01:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadIntoTemp3() {
|
|
|
|
loadIntoTemp3((const char *)cs.ptr(dx, 0));
|
2011-11-17 23:01:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadIntoTemp(const char *fileName) {
|
|
|
|
data.word(kTempgraphics) = standardLoad(fileName);
|
2011-11-17 23:01:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadIntoTemp2(const char *fileName) {
|
|
|
|
data.word(kTempgraphics2) = standardLoad(fileName);
|
2011-11-17 23:01:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadIntoTemp3(const char *fileName) {
|
|
|
|
data.word(kTempgraphics3) = standardLoad(fileName);
|
2011-11-17 23:01:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadTempCharset() {
|
|
|
|
loadTempCharset((const char *)cs.ptr(dx, 0));
|
2011-11-17 23:14:30 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadTempCharset(const char *fileName) {
|
|
|
|
data.word(kTempcharset) = standardLoad(fileName);
|
2011-11-17 23:14:30 +00:00
|
|
|
}
|
|
|
|
|
2011-11-20 13:14:58 +00:00
|
|
|
Frame *DreamGenContext::tempCharset() {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (Frame *)getSegment(data.word(kTempcharset)).ptr(0, 0);
|
2011-11-20 13:14:58 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOnCurs(uint16 frameCount) {
|
2011-11-18 05:33:18 +00:00
|
|
|
for (uint16 i = 0; i < frameCount; ++i) {
|
2011-12-01 19:43:43 +00:00
|
|
|
printCurs();
|
|
|
|
vSync();
|
|
|
|
delCurs();
|
2011-11-18 05:33:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::seeCommandTail() {
|
2011-06-16 20:30:39 +00:00
|
|
|
data.word(kSoundbaseadd) = 0x220;
|
|
|
|
data.byte(kSoundint) = 5;
|
|
|
|
data.byte(kSounddmachannel) = 1;
|
|
|
|
data.byte(kBrightness) = 1;
|
|
|
|
data.word(kHowmuchalloc) = 0x9360;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::randomNumber() {
|
2011-06-16 20:30:39 +00:00
|
|
|
al = engine->randomNumber();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::quickQuit() {
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->quit();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::quickQuit2() {
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->quit();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::keyboardRead() {
|
2011-06-15 21:03:00 +00:00
|
|
|
::error("keyboardread"); //this keyboard int handler, must never be called
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::resetKeyboard() {
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setKeyboardInt() {
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::readFromFile() {
|
2011-06-16 20:30:39 +00:00
|
|
|
uint16 dst_offset = dx;
|
|
|
|
uint16 size = cx;
|
|
|
|
debug(1, "readfromfile(%04x:%u, %u)", (uint16)ds, dst_offset, size);
|
|
|
|
ax = engine->readFromFile(ds.ptr(dst_offset, size), size);
|
|
|
|
flags._c = false;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::closeFile() {
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->closeFile();
|
|
|
|
data.byte(kHandle) = 0;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::openForSave(unsigned int slot) {
|
2011-11-26 15:38:06 +00:00
|
|
|
//Common::String filename = ConfMan.getActiveDomainName() + Common::String::format(".d%02d", savegameId);
|
|
|
|
Common::String filename = Common::String::format("DREAMWEB.D%02d", slot);
|
2011-12-01 19:43:43 +00:00
|
|
|
debug(1, "openForSave(%s)", filename.c_str());
|
2011-11-26 15:38:06 +00:00
|
|
|
engine->openSaveFileForWriting(filename);
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-03 14:18:45 +00:00
|
|
|
bool DreamGenContext::openForLoad(unsigned int slot) {
|
2011-11-26 16:07:40 +00:00
|
|
|
//Common::String filename = ConfMan.getActiveDomainName() + Common::String::format(".d%02d", savegameId);
|
|
|
|
Common::String filename = Common::String::format("DREAMWEB.D%02d", slot);
|
2011-12-01 19:43:43 +00:00
|
|
|
debug(1, "openForLoad(%s)", filename.c_str());
|
2011-12-03 14:18:45 +00:00
|
|
|
return engine->openSaveFileForReading(filename);
|
2011-11-26 16:07:40 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::openFileNoCheck() {
|
2011-06-16 20:30:39 +00:00
|
|
|
const char *name = (const char *)ds.ptr(dx, 13);
|
2011-12-01 19:43:43 +00:00
|
|
|
debug(1, "checkSaveFile(%s)", name);
|
2011-06-16 20:30:39 +00:00
|
|
|
bool ok = engine->openSaveFileForReading(name);
|
|
|
|
flags._c = !ok;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::openFileFromC() {
|
|
|
|
openFileNoCheck();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::openFile() {
|
2011-06-16 20:30:39 +00:00
|
|
|
Common::String name = getFilename(*this);
|
2011-06-15 21:03:00 +00:00
|
|
|
debug(1, "opening file: %s", name.c_str());
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->openFile(name);
|
|
|
|
cs.word(kHandle) = 1; //only one handle
|
|
|
|
flags._c = false;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::createFile() {
|
2011-06-15 21:03:00 +00:00
|
|
|
::error("createfile");
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dontLoadSeg() {
|
2011-06-16 20:30:39 +00:00
|
|
|
ax = es.word(di);
|
|
|
|
_add(di, 2);
|
|
|
|
dx = ax;
|
|
|
|
cx = 0;
|
|
|
|
unsigned pos = engine->skipBytes(dx);
|
|
|
|
dx = pos >> 16;
|
|
|
|
ax = pos & 0xffff;
|
|
|
|
flags._c = false;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::mouseCall() {
|
2011-08-25 05:46:23 +00:00
|
|
|
uint16 x, y, state;
|
|
|
|
engine->mouseCall(&x, &y, &state);
|
|
|
|
cx = x;
|
|
|
|
dx = y;
|
|
|
|
bx = state;
|
2011-08-25 05:50:35 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::readMouse() {
|
2011-08-25 05:50:35 +00:00
|
|
|
data.word(kOldbutton) = data.word(kMousebutton);
|
2011-11-20 18:54:19 +00:00
|
|
|
uint16 state = readMouseState();
|
2011-08-25 05:50:35 +00:00
|
|
|
data.word(kMousebutton) = state;
|
|
|
|
}
|
|
|
|
|
2011-11-20 18:54:19 +00:00
|
|
|
uint16 DreamGenContext::readMouseState() {
|
2011-08-25 05:50:35 +00:00
|
|
|
data.word(kOldx) = data.word(kMousex);
|
|
|
|
data.word(kOldy) = data.word(kMousey);
|
|
|
|
uint16 x, y, state;
|
|
|
|
engine->mouseCall(&x, &y, &state);
|
|
|
|
data.word(kMousex) = x;
|
|
|
|
data.word(kMousey) = y;
|
2011-11-20 18:54:19 +00:00
|
|
|
return state;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setMouse() {
|
2011-06-16 20:30:39 +00:00
|
|
|
data.word(kOldpointerx) = 0xffff;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dumpTextLine() {
|
2011-07-21 20:46:16 +00:00
|
|
|
if (data.byte(kNewtextline) != 1)
|
|
|
|
return;
|
|
|
|
data.byte(kNewtextline) = 0;
|
|
|
|
uint16 x = data.word(kTextaddressx);
|
|
|
|
uint16 y = data.word(kTextaddressy);
|
|
|
|
if (data.byte(kForeignrelease) != 0)
|
|
|
|
y -= 3;
|
2011-12-01 19:43:43 +00:00
|
|
|
multiDump(x, y, 228, 13);
|
2011-07-21 20:46:16 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::getUnderTimed() {
|
2011-07-23 17:18:10 +00:00
|
|
|
uint16 y = data.byte(kTimedy);
|
|
|
|
if (data.byte(kForeignrelease))
|
|
|
|
y -= 3;
|
|
|
|
ds = data.word(kBuffers);
|
|
|
|
si = kUndertimedtext;
|
2011-12-01 19:43:43 +00:00
|
|
|
multiGet(ds.ptr(si, 0), data.byte(kTimedx), y, 240, kUndertimedysize);
|
2011-07-23 17:18:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::putUnderTimed() {
|
2011-07-23 17:18:10 +00:00
|
|
|
uint16 y = data.byte(kTimedy);
|
|
|
|
if (data.byte(kForeignrelease))
|
|
|
|
y -= 3;
|
|
|
|
ds = data.word(kBuffers);
|
|
|
|
si = kUndertimedtext;
|
2011-12-01 19:43:43 +00:00
|
|
|
multiPut(ds.ptr(si, 0), data.byte(kTimedx), y, 240, kUndertimedysize);
|
2011-07-23 17:18:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::useTimedText() {
|
2011-07-23 17:18:10 +00:00
|
|
|
if (data.word(kTimecount) == 0)
|
|
|
|
return;
|
|
|
|
--data.word(kTimecount);
|
|
|
|
if (data.word(kTimecount) == 0) {
|
2011-12-01 19:43:43 +00:00
|
|
|
putUnderTimed();
|
2011-07-23 17:18:10 +00:00
|
|
|
data.byte(kNeedtodumptimed) = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.word(kTimecount) == data.word(kCounttotimed))
|
2011-12-01 19:43:43 +00:00
|
|
|
getUnderTimed();
|
2011-07-23 17:18:10 +00:00
|
|
|
else if (data.word(kTimecount) > data.word(kCounttotimed))
|
|
|
|
return;
|
|
|
|
|
|
|
|
es = data.word(kTimedseg);
|
|
|
|
si = data.word(kTimedoffset);
|
2011-08-10 15:12:26 +00:00
|
|
|
const uint8 *string = es.ptr(si, 0);
|
2011-07-23 17:18:10 +00:00
|
|
|
uint16 y = data.byte(kTimedy);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(&string, data.byte(kTimedx), &y, 237, true);
|
2011-07-23 17:18:10 +00:00
|
|
|
data.byte(kNeedtodumptimed) = 1;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setupTimedTemp() {
|
|
|
|
setupTimedTemp(al, ah, bl, bh, cx, dx);
|
2011-08-11 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setupTimedTemp(uint8 textIndex, uint8 voiceIndex, uint8 x, uint8 y, uint16 countToTimed, uint16 timeCount) {
|
2011-08-11 14:59:20 +00:00
|
|
|
#if 1 // if cd
|
|
|
|
if (voiceIndex != 0) {
|
|
|
|
push(ax);
|
|
|
|
push(bx);
|
|
|
|
push(cx);
|
|
|
|
push(dx);
|
|
|
|
dl = 'T';
|
|
|
|
dh = voiceIndex;
|
|
|
|
cl = 'T';
|
|
|
|
ah = 0;
|
2011-11-16 19:05:48 +00:00
|
|
|
al = textIndex;
|
2011-12-01 19:43:43 +00:00
|
|
|
loadSpeech();
|
2011-08-11 14:59:20 +00:00
|
|
|
if (data.byte(kSpeechloaded) == 1) {
|
2011-12-01 19:43:43 +00:00
|
|
|
playChannel1(50+12);
|
2011-07-17 14:06:19 +00:00
|
|
|
}
|
2011-08-11 14:59:20 +00:00
|
|
|
dx = pop();
|
|
|
|
cx = pop();
|
|
|
|
bx = pop();
|
|
|
|
ax = pop();
|
2011-11-16 20:39:25 +00:00
|
|
|
|
|
|
|
// FIXME: This fallthrough does not properly support subtitles+speech
|
|
|
|
// mode. The parameters to setuptimedtemp() are sometimes different
|
|
|
|
// for speech and for subtitles. See e.g., madmantext()
|
2011-08-11 14:59:20 +00:00
|
|
|
if ((data.byte(kSpeechloaded) == 1) && (data.byte(kSubtitles) != 1))
|
|
|
|
return;
|
2011-07-17 14:06:19 +00:00
|
|
|
}
|
2011-08-11 14:59:20 +00:00
|
|
|
#endif
|
2011-07-17 14:06:19 +00:00
|
|
|
|
2011-08-11 14:59:20 +00:00
|
|
|
if (data.word(kTimecount) != 0)
|
|
|
|
return;
|
|
|
|
data.byte(kTimedy) = y;
|
|
|
|
data.byte(kTimedx) = x;
|
|
|
|
data.word(kCounttotimed) = countToTimed;
|
|
|
|
data.word(kTimecount) = timeCount + countToTimed;
|
|
|
|
data.word(kTimedseg) = data.word(kTextfile1);
|
2011-12-02 15:29:16 +00:00
|
|
|
data.word(kTimedoffset) = kTextstart + getSegment(data.word(kTextfile1)).word(textIndex * 2);
|
|
|
|
const uint8 *string = getSegment(data.word(kTextfile1)).ptr(data.word(kTimedoffset), 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
debug(1, "setupTimedTemp: (%d, %d) => '%s'", textIndex, voiceIndex, string);
|
2011-08-11 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dumpTimedText() {
|
2011-08-11 13:24:06 +00:00
|
|
|
if (data.byte(kNeedtodumptimed) != 1)
|
|
|
|
return;
|
|
|
|
uint8 y = data.byte(kTimedy);
|
|
|
|
if (data.byte(kForeignrelease) != 0)
|
|
|
|
y -= 3;
|
2011-07-17 12:38:30 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
multiDump(data.byte(kTimedx), y, 240, kUndertimedysize);
|
2011-08-11 13:24:06 +00:00
|
|
|
data.byte(kNeedtodumptimed) = 0;
|
2011-07-17 12:38:30 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::getTime() {
|
2011-06-15 21:03:00 +00:00
|
|
|
TimeDate t;
|
|
|
|
g_system->getTimeAndDate(t);
|
|
|
|
debug(1, "\tgettime: %02d:%02d:%02d", t.tm_hour, t.tm_min, t.tm_sec);
|
2011-06-16 20:30:39 +00:00
|
|
|
ch = t.tm_hour;
|
|
|
|
cl = t.tm_min;
|
|
|
|
dh = t.tm_sec;
|
|
|
|
data.byte(kSecondcount) = dh;
|
|
|
|
data.byte(kMinutecount) = cl;
|
|
|
|
data.byte(kHourcount) = ch;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::allocateMem() {
|
|
|
|
ax = allocateMem(bx);
|
2011-07-30 20:03:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
uint16 DreamGenContext::allocateMem(uint16 paragraphs) {
|
2011-07-30 20:03:28 +00:00
|
|
|
uint size = (paragraphs + 2) * 16;
|
2011-06-15 21:03:00 +00:00
|
|
|
debug(1, "allocate mem, %u bytes", size);
|
2011-06-16 20:30:39 +00:00
|
|
|
flags._c = false;
|
|
|
|
SegmentRef seg = allocateSegment(size);
|
2011-07-30 20:03:28 +00:00
|
|
|
uint16 result = (uint16)seg;
|
|
|
|
debug(1, "\tsegment address -> %04x", result);
|
|
|
|
return result;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::deallocateMem() {
|
|
|
|
deallocateMem((uint16)es);
|
2011-11-18 06:29:38 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::deallocateMem(uint16 segment) {
|
2011-11-18 06:29:38 +00:00
|
|
|
debug(1, "deallocating segment %04x", segment);
|
|
|
|
deallocateSegment(segment);
|
2011-06-15 21:03:00 +00:00
|
|
|
|
|
|
|
//fixing invalid entries in the sprite table
|
2011-06-16 20:30:39 +00:00
|
|
|
es = data;
|
2011-06-15 21:03:00 +00:00
|
|
|
uint tsize = 16 * 32;
|
2011-06-16 20:30:39 +00:00
|
|
|
uint16 bseg = data.word(kBuffers);
|
2011-06-15 21:03:00 +00:00
|
|
|
if (!bseg)
|
|
|
|
return;
|
2011-12-02 20:27:45 +00:00
|
|
|
MutableSegmentRef buffers(this);
|
2011-06-15 21:03:00 +00:00
|
|
|
buffers = bseg;
|
|
|
|
uint8 *ptr = buffers.ptr(kSpritetable, tsize);
|
|
|
|
for(uint i = 0; i < tsize; i += 32) {
|
|
|
|
uint16 seg = READ_LE_UINT16(ptr + i + 6);
|
|
|
|
//debug(1, "sprite segment = %04x", seg);
|
2011-11-18 06:29:38 +00:00
|
|
|
if (seg == segment)
|
2011-06-15 21:03:00 +00:00
|
|
|
memset(ptr + i, 0xff, 32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::soundStartup() {}
|
|
|
|
void DreamGenContext::soundEnd() {}
|
|
|
|
void DreamGenContext::interruptTest() {}
|
|
|
|
void DreamGenContext::disableSoundInt() {}
|
|
|
|
void DreamGenContext::enableSoundInt() {}
|
|
|
|
void DreamGenContext::checkSoundInt() {
|
2011-06-16 20:30:39 +00:00
|
|
|
data.byte(kTestresult) = 1;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setSoundOff() {
|
2011-06-15 21:03:00 +00:00
|
|
|
warning("setsoundoff: STUB");
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadSample() {
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->loadSounds(0, (const char *)data.ptr(dx, 13));
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadSecondSample() {
|
2011-06-16 20:30:39 +00:00
|
|
|
uint8 ch0 = data.byte(kCh0playing);
|
2011-06-15 21:03:00 +00:00
|
|
|
if (ch0 >= 12 && ch0 != 255)
|
2011-12-01 19:43:43 +00:00
|
|
|
cancelCh0();
|
2011-06-16 20:30:39 +00:00
|
|
|
uint8 ch1 = data.byte(kCh1playing);
|
2011-06-15 21:03:00 +00:00
|
|
|
if (ch1 >= 12)
|
2011-12-01 19:43:43 +00:00
|
|
|
cancelCh1();
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->loadSounds(1, (const char *)data.ptr(dx, 13));
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadSpeech() {
|
|
|
|
cancelCh1();
|
2011-06-16 20:30:39 +00:00
|
|
|
data.byte(kSpeechloaded) = 0;
|
2011-12-01 19:43:43 +00:00
|
|
|
createName();
|
2011-06-16 20:30:39 +00:00
|
|
|
const char *name = (const char *)data.ptr(di, 13);
|
2011-06-15 21:03:00 +00:00
|
|
|
//warning("name = %s", name);
|
2011-06-16 20:30:39 +00:00
|
|
|
if (engine->loadSpeech(name))
|
|
|
|
data.byte(kSpeechloaded) = 1;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::saveFileRead() {
|
2011-06-16 20:30:39 +00:00
|
|
|
ax = engine->readFromSaveFile(ds.ptr(dx, cx), cx);
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadSeg() {
|
2011-06-16 20:30:39 +00:00
|
|
|
ax = es.word(di);
|
|
|
|
di += 2;
|
2011-06-15 21:03:00 +00:00
|
|
|
|
2011-06-16 20:30:39 +00:00
|
|
|
uint16 dst_offset = dx;
|
|
|
|
uint16 size = ax;
|
2011-06-15 21:03:00 +00:00
|
|
|
|
2011-06-16 20:30:39 +00:00
|
|
|
debug(1, "loadseg(%04x:%u, %u)", (uint16)ds, dst_offset, size);
|
|
|
|
ax = engine->readFromFile(ds.ptr(dst_offset, size), size);
|
|
|
|
flags._c = false;
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::DOSReturn() {
|
2011-06-16 20:30:39 +00:00
|
|
|
_cmp(data.byte(kCommandtype), 250);
|
2011-06-18 09:33:24 +00:00
|
|
|
if (!flags.z()) {
|
|
|
|
data.byte(kCommandtype) = 250;
|
|
|
|
al = 46;
|
2011-12-01 19:43:43 +00:00
|
|
|
commandOnly();
|
2011-06-18 09:33:24 +00:00
|
|
|
}
|
|
|
|
|
2011-06-16 20:30:39 +00:00
|
|
|
ax = data.word(kMousebutton);
|
|
|
|
_and(ax, 1);
|
2011-06-19 22:59:48 +00:00
|
|
|
if (flags.z())
|
2011-06-18 09:33:24 +00:00
|
|
|
return;
|
2011-06-15 21:03:00 +00:00
|
|
|
|
2011-06-18 09:33:24 +00:00
|
|
|
data.word(kMousebutton) = 0;
|
|
|
|
engine->quit();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::set16ColPalette() {
|
2011-06-18 10:29:10 +00:00
|
|
|
}
|
2011-06-15 21:03:00 +00:00
|
|
|
|
2011-06-16 20:30:39 +00:00
|
|
|
void DreamGenContext::mode640x480() {
|
2011-06-15 21:03:00 +00:00
|
|
|
// Video mode 12h: 640x480 pixels, 16 colors, I believe
|
2011-06-16 20:30:39 +00:00
|
|
|
al = 0x12 + 128;
|
|
|
|
ah = 0;
|
2011-06-15 21:03:00 +00:00
|
|
|
initGraphics(640, 480, true);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showGroup() {
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->setPalette();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::fadeDOS() {
|
2011-06-16 20:30:39 +00:00
|
|
|
engine->fadeDos();
|
2011-06-15 21:03:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::eraseOldObs() {
|
2011-06-26 13:17:19 +00:00
|
|
|
if (data.byte(kNewobs) == 0)
|
|
|
|
return;
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
Sprite *sprites = spriteTable();
|
2011-11-15 21:30:31 +00:00
|
|
|
for (size_t i = 0; i < 16; ++i) {
|
2011-06-26 13:17:19 +00:00
|
|
|
Sprite &sprite = sprites[i];
|
2011-07-30 13:52:28 +00:00
|
|
|
if (sprite.objData() != 0xffff) {
|
2011-06-26 13:17:19 +00:00
|
|
|
memset(&sprite, 0xff, sizeof(Sprite));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::modifyChar() {
|
2011-06-25 13:28:51 +00:00
|
|
|
al = engine->modifyChar(al);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::lockMon() {
|
2011-07-16 09:04:49 +00:00
|
|
|
// Pressing space pauses text output in the monitor. We use the "hard"
|
|
|
|
// key because calling readkey() drains characters from the input
|
|
|
|
// buffer, we we want the user to be able to type ahead while the text
|
|
|
|
// is being printed.
|
|
|
|
if (data.byte(kLasthardkey) == 57) {
|
|
|
|
// Clear the keyboard buffer. Otherwise the space that caused
|
2011-07-16 09:07:22 +00:00
|
|
|
// the pause will be read immediately unpause the game.
|
2011-07-16 09:04:49 +00:00
|
|
|
do {
|
2011-12-01 19:43:43 +00:00
|
|
|
readKey();
|
2011-07-16 09:04:49 +00:00
|
|
|
} while (data.byte(kCurrentkey) != 0);
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
lockLightOn();
|
2011-07-16 09:04:49 +00:00
|
|
|
while (!engine->shouldQuit()) {
|
|
|
|
engine->waitForVSync();
|
2011-12-01 19:43:43 +00:00
|
|
|
readKey();
|
2011-07-16 09:04:49 +00:00
|
|
|
if (data.byte(kCurrentkey) == ' ')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Forget the last "hard" key, otherwise the space that caused
|
|
|
|
// the unpausing will immediately re-pause the game.
|
|
|
|
data.byte(kLasthardkey) = 0;
|
2011-12-01 19:43:43 +00:00
|
|
|
lockLightOff();
|
2011-07-16 09:04:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::cancelCh0() {
|
2011-07-20 11:15:30 +00:00
|
|
|
data.byte(kCh0repeat) = 0;
|
|
|
|
data.word(kCh0blockstocopy) = 0;
|
|
|
|
data.byte(kCh0playing) = 255;
|
|
|
|
engine->stopSound(0);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::cancelCh1() {
|
2011-07-20 11:15:30 +00:00
|
|
|
data.word(kCh1blockstocopy) = 0;
|
|
|
|
data.byte(kCh1playing) = 255;
|
|
|
|
engine->stopSound(1);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::makeBackOb(SetObject *objData) {
|
2011-07-27 15:53:50 +00:00
|
|
|
if (data.byte(kNewobs) == 0)
|
|
|
|
return;
|
2011-08-17 05:08:38 +00:00
|
|
|
uint8 priority = objData->priority;
|
|
|
|
uint8 type = objData->type;
|
2011-12-01 19:43:43 +00:00
|
|
|
Sprite *sprite = makeSprite(data.word(kObjectx), data.word(kObjecty), addr_backobject, data.word(kSetframes), 0);
|
2011-07-27 15:53:50 +00:00
|
|
|
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 objDataOffset = (uint8 *)objData - getSegment(data.word(kSetdat)).ptr(0, 0);
|
2011-08-23 12:41:28 +00:00
|
|
|
assert(objDataOffset % sizeof(SetObject) == 0);
|
|
|
|
assert(objDataOffset < 128 * sizeof(SetObject));
|
2011-08-17 05:08:38 +00:00
|
|
|
sprite->setObjData(objDataOffset);
|
2011-07-27 15:53:50 +00:00
|
|
|
if (priority == 255)
|
|
|
|
priority = 0;
|
|
|
|
sprite->priority = priority;
|
|
|
|
sprite->type = type;
|
|
|
|
sprite->b16 = 0;
|
|
|
|
sprite->delay = 0;
|
2011-11-18 21:34:46 +00:00
|
|
|
sprite->animFrame = 0;
|
2011-07-27 15:53:50 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 19:36:56 +00:00
|
|
|
uint16 DreamGenContext::allocateAndLoad(unsigned int size) {
|
|
|
|
// allocatemem adds 32 bytes, so it doesn't matter that size/16 rounds down
|
2011-12-01 19:43:43 +00:00
|
|
|
uint16 result = allocateMem(size / 16);
|
2011-12-02 15:29:16 +00:00
|
|
|
engine->readFromFile(getSegment(result).ptr(0, size), size);
|
2011-11-26 19:36:56 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::clearAndLoad(uint16 seg, uint8 c,
|
|
|
|
unsigned int size, unsigned int maxSize) {
|
|
|
|
assert(size <= maxSize);
|
2011-12-02 15:29:16 +00:00
|
|
|
uint8 *buf = getSegment(seg).ptr(0, maxSize);
|
2011-11-26 19:36:56 +00:00
|
|
|
memset(buf, c, maxSize);
|
|
|
|
engine->readFromFile(buf, size);
|
|
|
|
}
|
|
|
|
|
2011-12-03 13:54:00 +00:00
|
|
|
void DreamGenContext::startLoading(const Room &room) {
|
2011-07-30 19:46:59 +00:00
|
|
|
data.byte(kCombatcount) = 0;
|
2011-12-03 13:54:00 +00:00
|
|
|
data.byte(kRoomssample) = room.roomsSample;
|
|
|
|
data.byte(kMapx) = room.mapX;
|
|
|
|
data.byte(kMapy) = room.mapY;
|
|
|
|
data.byte(kLiftflag) = room.liftFlag;
|
|
|
|
data.byte(kManspath) = room.b21;
|
|
|
|
data.byte(kDestination) = room.b21;
|
|
|
|
data.byte(kFinaldest) = room.b21;
|
|
|
|
data.byte(kFacing) = room.facing;
|
|
|
|
data.byte(kTurntoface) = room.facing;
|
|
|
|
data.byte(kCounttoopen) = room.countToOpen;
|
|
|
|
data.byte(kLiftpath) = room.liftPath;
|
|
|
|
data.byte(kDoorpath) = room.doorPath;
|
2011-10-15 09:21:02 +00:00
|
|
|
data.byte(kLastweapon) = (uint8)-1;
|
2011-07-30 19:46:59 +00:00
|
|
|
ah = data.byte(kReallocation);
|
2011-12-03 13:54:00 +00:00
|
|
|
data.byte(kReallocation) = room.realLocation;
|
2011-11-26 19:36:56 +00:00
|
|
|
|
|
|
|
loadRoomData(room, false);
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
findRoomInLoc();
|
|
|
|
deleteTaken();
|
|
|
|
setAllChanges();
|
|
|
|
autoAppear();
|
2011-12-03 13:54:00 +00:00
|
|
|
// const Room &newRoom = g_roomData[data.byte(kNewlocation)];
|
|
|
|
bx = 0x7fff; // TODO: bx used to be set to the offset of newRoom
|
|
|
|
// It seems to be unused (like newRoom itself), but set it
|
|
|
|
// to an invalid value to catch any missed use of it.
|
|
|
|
// (The push/pop of bx below is likely also unnecessary)
|
2011-10-15 09:21:02 +00:00
|
|
|
data.byte(kLastweapon) = (uint8)-1;
|
2011-07-30 19:46:59 +00:00
|
|
|
data.byte(kMandead) = 0;
|
|
|
|
data.word(kLookcounter) = 160;
|
|
|
|
data.byte(kNewlocation) = 255;
|
|
|
|
data.byte(kLinepointer) = 254;
|
2011-12-03 13:54:00 +00:00
|
|
|
if (room.b27 != 255) {
|
|
|
|
data.byte(kManspath) = room.b27;
|
2011-07-30 19:46:59 +00:00
|
|
|
push(bx);
|
2011-12-01 19:43:43 +00:00
|
|
|
autoSetWalk();
|
2011-07-30 19:46:59 +00:00
|
|
|
bx = pop();
|
|
|
|
}
|
2011-12-01 19:43:43 +00:00
|
|
|
findXYFromPath();
|
2011-07-30 19:46:59 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::fillSpace() {
|
2011-07-30 20:56:29 +00:00
|
|
|
memset(ds.ptr(dx, cx), al, cx);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dealWithSpecial(uint8 firstParam, uint8 secondParam) {
|
2011-08-11 10:33:33 +00:00
|
|
|
uint8 type = firstParam - 220;
|
2011-07-30 21:21:43 +00:00
|
|
|
if (type == 0) {
|
2011-12-01 19:43:43 +00:00
|
|
|
placeSetObject(secondParam);
|
2011-07-30 21:21:43 +00:00
|
|
|
data.byte(kHavedoneobs) = 1;
|
|
|
|
} else if (type == 1) {
|
2011-12-01 19:43:43 +00:00
|
|
|
removeSetObject(secondParam);
|
2011-07-30 21:21:43 +00:00
|
|
|
data.byte(kHavedoneobs) = 1;
|
|
|
|
} else if (type == 2) {
|
2011-08-11 10:33:33 +00:00
|
|
|
al = secondParam;
|
2011-12-01 19:43:43 +00:00
|
|
|
placeFreeObject();
|
2011-07-30 21:21:43 +00:00
|
|
|
data.byte(kHavedoneobs) = 1;
|
|
|
|
} else if (type == 3) {
|
2011-08-11 10:33:33 +00:00
|
|
|
al = secondParam;
|
2011-12-01 19:43:43 +00:00
|
|
|
removeFreeObject();
|
2011-07-30 21:21:43 +00:00
|
|
|
data.byte(kHavedoneobs) = 1;
|
|
|
|
} else if (type == 4) {
|
2011-12-01 19:43:43 +00:00
|
|
|
switchRyanOff();
|
2011-07-30 21:21:43 +00:00
|
|
|
} else if (type == 5) {
|
2011-08-11 10:33:33 +00:00
|
|
|
data.byte(kTurntoface) = secondParam;
|
|
|
|
data.byte(kFacing) = secondParam;
|
2011-12-01 19:43:43 +00:00
|
|
|
switchRyanOn();
|
2011-07-30 21:21:43 +00:00
|
|
|
} else if (type == 6) {
|
2011-08-11 10:33:33 +00:00
|
|
|
data.byte(kNewlocation) = secondParam;
|
2011-07-30 21:21:43 +00:00
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
moveMap(secondParam);
|
2011-07-30 21:21:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::plotReel() {
|
|
|
|
Reel *reel = getReelStart();
|
2011-11-15 21:30:31 +00:00
|
|
|
while (reel->x >= 220 && reel->x != 255) {
|
2011-12-01 19:43:43 +00:00
|
|
|
dealWithSpecial(reel->x, reel->y);
|
2011-08-11 10:26:30 +00:00
|
|
|
++data.word(kReelpointer);
|
2011-08-03 16:11:19 +00:00
|
|
|
reel += 8;
|
2011-07-30 21:37:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < 8; ++i) {
|
2011-08-11 10:26:30 +00:00
|
|
|
if (reel->frame() != 0xffff)
|
2011-12-01 19:43:43 +00:00
|
|
|
showReelFrame(reel);
|
2011-08-03 16:11:19 +00:00
|
|
|
++reel;
|
2011-07-30 21:37:18 +00:00
|
|
|
}
|
2011-08-29 12:54:21 +00:00
|
|
|
push(es);
|
|
|
|
push(bx);
|
2011-12-01 19:43:43 +00:00
|
|
|
soundOnReels();
|
2011-08-29 12:54:21 +00:00
|
|
|
bx = pop();
|
|
|
|
es = pop();
|
2011-07-30 21:37:18 +00:00
|
|
|
}
|
|
|
|
|
2011-08-03 11:54:03 +00:00
|
|
|
void DreamGenContext::crosshair() {
|
|
|
|
uint8 frame;
|
|
|
|
if ((data.byte(kCommandtype) != 3) && (data.byte(kCommandtype) < 10)) {
|
|
|
|
frame = 9;
|
|
|
|
} else {
|
|
|
|
frame = 29;
|
|
|
|
}
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), kZoomx + 24, kZoomy + 19, frame, 0);
|
2011-08-03 11:54:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::delTextLine() {
|
2011-08-03 14:19:27 +00:00
|
|
|
uint16 x = data.word(kTextaddressx);
|
|
|
|
uint16 y = data.word(kTextaddressy);
|
|
|
|
if (data.byte(kForeignrelease) != 0)
|
|
|
|
y -= 3;
|
2011-12-01 19:43:43 +00:00
|
|
|
multiPut(textUnder(), x, y, kUndertextsizex, kUndertextsizey);
|
2011-08-03 14:19:27 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::commandOnly() {
|
|
|
|
commandOnly(al);
|
2011-08-17 22:35:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::commandOnly(uint8 command) {
|
|
|
|
delTextLine();
|
2011-08-17 22:35:10 +00:00
|
|
|
uint16 index = command * 2;
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = kTextstart + getSegment(data.word(kCommandtext)).word(index);
|
2011-08-17 22:35:10 +00:00
|
|
|
uint16 y = data.word(kTextaddressy);
|
2011-12-02 15:29:16 +00:00
|
|
|
const uint8 *string = getSegment(data.word(kCommandtext)).ptr(offset, 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(&string, data.word(kTextaddressx), &y, data.byte(kTextlen), (bool)(data.byte(kTextlen) & 1));
|
2011-08-17 22:35:10 +00:00
|
|
|
data.byte(kNewtextline) = 1;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::checkIfPerson() {
|
|
|
|
flags._z = !checkIfPerson(al, ah);
|
2011-08-11 21:13:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
bool DreamGenContext::checkIfPerson(uint8 x, uint8 y) {
|
2011-12-02 15:29:16 +00:00
|
|
|
People *people = (People *)getSegment(data.word(kBuffers)).ptr(kPeoplelist, 0);
|
2011-08-11 21:13:17 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < 12; ++i, ++people) {
|
|
|
|
if (people->b4 == 255)
|
|
|
|
continue;
|
2011-08-29 12:55:57 +00:00
|
|
|
data.word(kReelpointer) = people->reelPointer();
|
2011-12-01 19:43:43 +00:00
|
|
|
Reel *reel = getReelStart();
|
2011-08-11 21:13:17 +00:00
|
|
|
if (reel->frame() == 0xffff)
|
|
|
|
++reel;
|
2011-12-01 19:43:43 +00:00
|
|
|
const Frame *frame = getReelFrameAX(reel->frame());
|
2011-08-11 21:13:17 +00:00
|
|
|
uint8 xmin = reel->x + frame->x;
|
|
|
|
uint8 ymin = reel->y + frame->y;
|
|
|
|
uint8 xmax = xmin + frame->width;
|
|
|
|
uint8 ymax = ymin + frame->height;
|
|
|
|
if (x < xmin)
|
|
|
|
continue;
|
|
|
|
if (y < ymin)
|
|
|
|
continue;
|
|
|
|
if (x >= xmax)
|
|
|
|
continue;
|
|
|
|
if (y >= ymax)
|
|
|
|
continue;
|
2011-08-29 12:55:57 +00:00
|
|
|
data.word(kPersondata) = people->routinePointer();
|
2011-12-01 19:43:43 +00:00
|
|
|
obName(people->b4, 5);
|
2011-08-11 21:13:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::checkIfFree() {
|
|
|
|
flags._z = !checkIfFree(al, ah);
|
2011-08-22 12:46:06 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
bool DreamGenContext::checkIfFree(uint8 x, uint8 y) {
|
2011-12-02 15:29:16 +00:00
|
|
|
const ObjPos *freeList = (const ObjPos *)getSegment(data.word(kBuffers)).ptr(kFreelist, 80 * sizeof(ObjPos));
|
2011-08-22 12:46:06 +00:00
|
|
|
for (size_t i = 0; i < 80; ++i) {
|
|
|
|
const ObjPos *objPos = freeList + 79 - i;
|
2011-11-27 17:56:37 +00:00
|
|
|
if (objPos->index == 0xff || !objPos->contains(x,y))
|
2011-08-22 12:46:06 +00:00
|
|
|
continue;
|
2011-12-01 19:43:43 +00:00
|
|
|
obName(objPos->index, 2);
|
2011-08-22 12:46:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::checkIfEx() {
|
|
|
|
flags._z = !checkIfEx(al, ah);
|
2011-08-30 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
bool DreamGenContext::checkIfEx(uint8 x, uint8 y) {
|
2011-12-02 15:29:16 +00:00
|
|
|
const ObjPos *exList = (const ObjPos *)getSegment(data.word(kBuffers)).ptr(kExlist, 100 * sizeof(ObjPos));
|
2011-08-30 01:11:32 +00:00
|
|
|
for (size_t i = 0; i < 100; ++i) {
|
|
|
|
const ObjPos *objPos = exList + 99 - i;
|
2011-11-27 17:56:37 +00:00
|
|
|
if (objPos->index == 0xff || !objPos->contains(x,y))
|
2011-08-30 01:11:32 +00:00
|
|
|
continue;
|
2011-12-01 19:43:43 +00:00
|
|
|
obName(objPos->index, 4);
|
2011-08-30 01:11:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
const uint8 *DreamGenContext::findObName(uint8 type, uint8 index) {
|
2011-08-15 12:02:50 +00:00
|
|
|
if (type == 5) {
|
2011-08-15 12:35:44 +00:00
|
|
|
uint16 i = 64 * 2 * (index & 127);
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kPeople)).word(kPersontxtdat + i) + kPersontext;
|
|
|
|
return getSegment(data.word(kPeople)).ptr(offset, 0);
|
2011-08-15 12:02:50 +00:00
|
|
|
} else if (type == 4) {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kExtras)).word(kExtextdat + index * 2) + kExtext;
|
|
|
|
return getSegment(data.word(kExtras)).ptr(offset, 0);
|
2011-08-15 12:02:50 +00:00
|
|
|
} else if (type == 2) {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kFreedesc)).word(kFreetextdat + index * 2) + kFreetext;
|
|
|
|
return getSegment(data.word(kFreedesc)).ptr(offset, 0);
|
2011-08-15 12:02:50 +00:00
|
|
|
} else if (type == 1) {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kSetdesc)).word(kSettextdat + index * 2) + kSettext;
|
|
|
|
return getSegment(data.word(kSetdesc)).ptr(offset, 0);
|
2011-08-15 12:02:50 +00:00
|
|
|
} else {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kBlockdesc)).word(kBlocktextdat + index * 2) + kBlocktext;
|
|
|
|
return getSegment(data.word(kBlockdesc)).ptr(offset, 0);
|
2011-08-15 12:35:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::copyName() {
|
|
|
|
copyName(ah, al, cs.ptr(di, 0));
|
2011-08-15 12:35:44 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::copyName(uint8 type, uint8 index, uint8 *dst) {
|
|
|
|
const uint8 *src = findObName(type, index);
|
2011-08-15 12:35:44 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < 28; ++i) {
|
|
|
|
char c = src[i];
|
|
|
|
if (c == ':')
|
|
|
|
break;
|
|
|
|
if (c == 0)
|
|
|
|
break;
|
|
|
|
dst[i] = c;
|
2011-08-15 12:02:50 +00:00
|
|
|
}
|
2011-08-15 12:35:44 +00:00
|
|
|
dst[i] = 0;
|
2011-08-15 12:02:50 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::commandWithOb() {
|
|
|
|
commandWithOb(al, bh, bl);
|
2011-08-15 13:42:09 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::commandWithOb(uint8 command, uint8 type, uint8 index) {
|
2011-08-15 13:42:09 +00:00
|
|
|
uint8 commandLine[64] = "OBJECT NAME ONE ";
|
2011-12-01 19:43:43 +00:00
|
|
|
delTextLine();
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 commandText = kTextstart + getSegment(data.word(kCommandtext)).word(command * 2);
|
2011-08-15 13:42:09 +00:00
|
|
|
uint8 textLen = data.byte(kTextlen);
|
|
|
|
{
|
2011-12-02 15:29:16 +00:00
|
|
|
const uint8 *string = getSegment(data.word(kCommandtext)).ptr(commandText, 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(string, data.word(kTextaddressx), data.word(kTextaddressy), textLen, (bool)(textLen & 1));
|
2011-08-15 13:42:09 +00:00
|
|
|
}
|
2011-12-01 19:43:43 +00:00
|
|
|
copyName(type, index, commandLine);
|
2011-08-15 13:42:09 +00:00
|
|
|
uint16 x = data.word(kLastxpos);
|
|
|
|
if (command != 0)
|
|
|
|
x += 5;
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(commandLine, x, data.word(kTextaddressy), textLen, (bool)(textLen & 1));
|
2011-08-15 13:42:09 +00:00
|
|
|
data.byte(kNewtextline) = 1;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::examineObText() {
|
|
|
|
commandWithOb(1, data.byte(kCommandtype), data.byte(kCommand));
|
2011-09-04 05:44:14 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showPanel() {
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), 72, 0, 19, 0);
|
|
|
|
showFrame(icons1(), 192, 0, 19, 0);
|
2011-08-15 15:00:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::blockNameText() {
|
|
|
|
commandWithOb(0, data.byte(kCommandtype), data.byte(kCommand));
|
2011-08-18 20:09:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::personNameText() {
|
|
|
|
commandWithOb(2, data.byte(kCommandtype), data.byte(kCommand) & 127);
|
2011-08-18 20:09:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::walkToText() {
|
|
|
|
commandWithOb(3, data.byte(kCommandtype), data.byte(kCommand));
|
2011-08-18 20:09:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::findOrMake() {
|
2011-08-19 08:35:29 +00:00
|
|
|
uint8 b0 = al;
|
|
|
|
uint8 b2 = cl;
|
|
|
|
uint8 b3 = ch;
|
2011-12-01 19:43:43 +00:00
|
|
|
findOrMake(b0, b2, b3);
|
2011-08-19 08:35:29 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::findOrMake(uint8 index, uint8 value, uint8 type) {
|
2011-12-02 15:29:16 +00:00
|
|
|
Change *change = (Change *)getSegment(data.word(kBuffers)).ptr(kListofchanges, sizeof(Change));
|
2011-11-15 21:30:31 +00:00
|
|
|
for (; change->index != 0xff; ++change) {
|
|
|
|
if (index == change->index && data.byte(kReallocation) == change->location && type == change->type) {
|
2011-08-20 10:26:10 +00:00
|
|
|
change->value = value;
|
2011-08-19 08:35:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-11-15 21:30:31 +00:00
|
|
|
|
|
|
|
change->index = index;
|
|
|
|
change->location = data.byte(kReallocation);
|
|
|
|
change->value = value;
|
|
|
|
change->type = type;
|
2011-08-19 08:35:29 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setAllChanges() {
|
2011-12-02 15:29:16 +00:00
|
|
|
Change *change = (Change *)getSegment(data.word(kBuffers)).ptr(kListofchanges, sizeof(Change));
|
2011-11-15 21:30:31 +00:00
|
|
|
for (; change->index != 0xff; ++change)
|
2011-08-20 10:26:10 +00:00
|
|
|
if (change->location == data.byte(kReallocation))
|
2011-12-01 19:43:43 +00:00
|
|
|
doChange(change->index, change->value, change->type);
|
2011-08-19 09:42:13 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
DynObject *DreamGenContext::getFreeAd(uint8 index) {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (DynObject *)getSegment(data.word(kFreedat)).ptr(0, 0) + index;
|
2011-08-20 10:26:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
DynObject *DreamGenContext::getExAd(uint8 index) {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (DynObject *)getSegment(data.word(kExtras)).ptr(kExdata, 0) + index;
|
2011-08-23 12:35:24 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
DynObject *DreamGenContext::getEitherAdCPP() {
|
2011-08-23 13:03:28 +00:00
|
|
|
if (data.byte(kObjecttype) == 4)
|
2011-12-01 19:43:43 +00:00
|
|
|
return getExAd(data.byte(kItemframe));
|
2011-08-23 13:03:28 +00:00
|
|
|
else
|
2011-12-01 19:43:43 +00:00
|
|
|
return getFreeAd(data.byte(kItemframe));
|
2011-08-23 13:03:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void *DreamGenContext::getAnyAd(uint8 *value1, uint8 *value2) {
|
2011-08-31 09:24:34 +00:00
|
|
|
if (data.byte(kObjecttype) == 4) {
|
2011-12-01 19:43:43 +00:00
|
|
|
DynObject *exObject = getExAd(data.byte(kCommand));
|
2011-08-31 21:38:34 +00:00
|
|
|
*value1 = exObject->b7;
|
|
|
|
*value2 = exObject->b8;
|
2011-08-31 09:24:34 +00:00
|
|
|
return exObject;
|
|
|
|
} else if (data.byte(kObjecttype) == 2) {
|
2011-12-01 19:43:43 +00:00
|
|
|
DynObject *freeObject = getFreeAd(data.byte(kCommand));
|
2011-08-31 21:38:34 +00:00
|
|
|
*value1 = freeObject->b7;
|
|
|
|
*value2 = freeObject->b8;
|
2011-08-31 09:24:34 +00:00
|
|
|
return freeObject;
|
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
SetObject *setObject = getSetAd(data.byte(kCommand));
|
2011-08-31 21:38:34 +00:00
|
|
|
*value1 = setObject->b4;
|
|
|
|
*value2 = setObject->priority;
|
2011-08-31 09:24:34 +00:00
|
|
|
return setObject;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void *DreamGenContext::getAnyAdDir(uint8 index, uint8 flag) {
|
2011-08-31 22:11:07 +00:00
|
|
|
if (flag == 4)
|
2011-12-01 19:43:43 +00:00
|
|
|
return getExAd(index);
|
2011-08-31 22:11:07 +00:00
|
|
|
else if (flag == 2)
|
2011-12-01 19:43:43 +00:00
|
|
|
return getFreeAd(index);
|
2011-08-31 22:11:07 +00:00
|
|
|
else
|
2011-12-01 19:43:43 +00:00
|
|
|
return getSetAd(index);
|
2011-08-31 22:11:07 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
SetObject *DreamGenContext::getSetAd(uint8 index) {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (SetObject *)getSegment(data.word(kSetdat)).ptr(0, 0) + index;
|
2011-08-20 10:26:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::doChange(uint8 index, uint8 value, uint8 type) {
|
2011-08-20 10:26:10 +00:00
|
|
|
if (type == 0) { //object
|
2011-12-01 19:43:43 +00:00
|
|
|
getSetAd(index)->mapad[0] = value;
|
|
|
|
} else if (type == 1) { //freeObject
|
|
|
|
DynObject *freeObject = getFreeAd(index);
|
2011-08-30 01:26:19 +00:00
|
|
|
if (freeObject->mapad[0] == 0xff)
|
|
|
|
freeObject->mapad[0] = value;
|
2011-08-20 10:26:10 +00:00
|
|
|
} else { //path
|
|
|
|
bx = kPathdata + (type - 100) * 144 + index * 8;
|
|
|
|
es = data.word(kReels);
|
|
|
|
es.byte(bx+6) = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::deleteTaken() {
|
2011-12-02 15:29:16 +00:00
|
|
|
const DynObject *extraObjects = (const DynObject *)getSegment(data.word(kExtras)).ptr(kExdata, 0);
|
|
|
|
DynObject *freeObjects = (DynObject *)getSegment(data.word(kFreedat)).ptr(0, 0);
|
2011-08-20 10:33:21 +00:00
|
|
|
for(size_t i = 0; i < kNumexobjects; ++i) {
|
2011-08-30 00:18:55 +00:00
|
|
|
uint8 location = extraObjects[i].initialLocation;
|
2011-08-20 10:33:21 +00:00
|
|
|
if (location == data.byte(kReallocation)) {
|
2011-08-23 12:41:28 +00:00
|
|
|
uint8 index = extraObjects[i].index;
|
2011-08-30 01:26:19 +00:00
|
|
|
freeObjects[index].mapad[0] = 0xfe;
|
2011-08-20 10:33:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::getExPos() {
|
2011-09-01 22:24:29 +00:00
|
|
|
es = data.word(kExtras);
|
2011-12-02 15:29:16 +00:00
|
|
|
const DynObject *objects = (const DynObject *)getSegment(data.word(kExtras)).ptr(kExdata, sizeof(DynObject));
|
2011-08-30 00:26:28 +00:00
|
|
|
for (size_t i = 0; i < kNumexobjects; ++i) {
|
2011-08-30 01:26:19 +00:00
|
|
|
if (objects[i].mapad[0] == 0xff) {
|
2011-09-01 23:05:32 +00:00
|
|
|
data.byte(kExpos) = i;
|
2011-09-01 22:24:29 +00:00
|
|
|
di = kExdata + i * sizeof(DynObject);
|
2011-08-30 00:26:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-09-01 23:05:32 +00:00
|
|
|
data.byte(kExpos) = kNumexobjects;
|
2011-09-01 22:24:29 +00:00
|
|
|
di = kExdata + kNumexobjects * sizeof(DynObject);
|
2011-08-30 00:26:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::placeSetObject() {
|
|
|
|
placeSetObject(al);
|
2011-08-20 11:23:47 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::placeSetObject(uint8 index) {
|
|
|
|
findOrMake(index, 0, 0);
|
|
|
|
getSetAd(index)->mapad[0] = 0;
|
2011-08-20 11:23:47 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::removeSetObject() {
|
|
|
|
removeSetObject(al);
|
2011-08-20 11:23:47 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::removeSetObject(uint8 index) {
|
|
|
|
findOrMake(index, 0xff, 0);
|
|
|
|
getSetAd(index)->mapad[0] = 0xff;
|
2011-08-20 11:23:47 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::finishedWalking() {
|
|
|
|
flags._z = finishedWalkingCPP();
|
2011-08-22 13:53:54 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
bool DreamGenContext::finishedWalkingCPP() {
|
2011-08-22 13:53:54 +00:00
|
|
|
return (data.byte(kLinepointer) == 254) && (data.byte(kFacing) == data.byte(kTurntoface));
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::getFlagUnderP() {
|
2011-08-23 08:13:10 +00:00
|
|
|
uint8 flag, flagEx;
|
2011-12-01 19:43:43 +00:00
|
|
|
getFlagUnderP(&flag, &flagEx);
|
2011-08-23 08:13:10 +00:00
|
|
|
cl = flag;
|
|
|
|
ch = flagEx;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::getFlagUnderP(uint8 *flag, uint8 *flagEx) {
|
2011-08-23 08:13:10 +00:00
|
|
|
uint8 type, flagX, flagY;
|
2011-12-01 19:43:43 +00:00
|
|
|
checkOne(data.word(kMousex) - data.word(kMapadx), data.word(kMousey) - data.word(kMapady), flag, flagEx, &type, &flagX, &flagY);
|
2011-08-23 08:13:10 +00:00
|
|
|
cl = data.byte(kLastflag) = *flag;
|
|
|
|
ch = data.byte(kLastflagex) = *flagEx;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::walkAndExamine() {
|
|
|
|
if (!finishedWalkingCPP())
|
2011-08-23 08:40:52 +00:00
|
|
|
return;
|
|
|
|
data.byte(kCommandtype) = data.byte(kWalkexamtype);
|
|
|
|
data.byte(kCommand) = data.byte(kWalkexamnum);
|
|
|
|
data.byte(kWalkandexam) = 0;
|
|
|
|
if (data.byte(kCommandtype) != 5)
|
2011-12-01 19:43:43 +00:00
|
|
|
examineOb();
|
2011-08-23 08:40:52 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::obName() {
|
|
|
|
obName(al, ah);
|
2011-08-23 09:09:54 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::obName(uint8 command, uint8 commandType) {
|
2011-08-23 09:09:54 +00:00
|
|
|
if (data.byte(kReasseschanges) == 0) {
|
|
|
|
if ((commandType == data.byte(kCommandtype)) && (command == data.byte(kCommand))) {
|
|
|
|
if (data.byte(kWalkandexam) == 1) {
|
2011-12-01 19:43:43 +00:00
|
|
|
walkAndExamine();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else if (data.word(kMousebutton) == 0)
|
|
|
|
return;
|
|
|
|
else if ((data.byte(kCommandtype) == 3) && (data.byte(kLastflag) < 2))
|
|
|
|
return;
|
|
|
|
else if ((data.byte(kManspath) != data.byte(kPointerspath)) || (data.byte(kCommandtype) == 3)) {
|
2011-12-01 19:43:43 +00:00
|
|
|
setWalk();
|
2011-08-23 09:09:54 +00:00
|
|
|
data.byte(kReasseschanges) = 1;
|
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
} else if (! finishedWalkingCPP())
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
else if (data.byte(kCommandtype) == 5) {
|
|
|
|
if (data.word(kWatchingtime) == 0)
|
|
|
|
talk();
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
if (data.word(kWatchingtime) == 0)
|
2011-12-01 19:43:43 +00:00
|
|
|
examineOb();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
data.byte(kReasseschanges) = 0;
|
|
|
|
|
|
|
|
data.byte(kCommand) = command;
|
|
|
|
data.byte(kCommandtype) = commandType;
|
|
|
|
if ((data.byte(kLinepointer) != 254) || (data.word(kWatchingtime) != 0) || (data.byte(kFacing) != data.byte(kTurntoface))) {
|
2011-12-01 19:43:43 +00:00
|
|
|
blockNameText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else if (data.byte(kCommandtype) != 3) {
|
|
|
|
if (data.byte(kManspath) != data.byte(kPointerspath)) {
|
2011-12-01 19:43:43 +00:00
|
|
|
walkToText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else if (data.byte(kCommandtype) == 3) {
|
2011-12-01 19:43:43 +00:00
|
|
|
blockNameText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else if (data.byte(kCommandtype) == 5) {
|
2011-12-01 19:43:43 +00:00
|
|
|
personNameText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
examineObText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (data.byte(kManspath) == data.byte(kPointerspath)) {
|
|
|
|
uint8 flag, flagEx, type, flagX, flagY;
|
2011-12-01 19:43:43 +00:00
|
|
|
checkOne(data.byte(kRyanx) + 12, data.byte(kRyany) + 12, &flag, &flagEx, &type, &flagX, &flagY);
|
2011-08-23 09:09:54 +00:00
|
|
|
if (flag < 2) {
|
2011-12-01 19:43:43 +00:00
|
|
|
blockNameText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
getFlagUnderP();
|
2011-08-23 09:09:54 +00:00
|
|
|
if (data.byte(kLastflag) < 2) {
|
2011-12-01 19:43:43 +00:00
|
|
|
blockNameText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else if (data.byte(kLastflag) >= 128) {
|
2011-12-01 19:43:43 +00:00
|
|
|
blockNameText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
walkToText();
|
2011-08-23 09:09:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::delPointer() {
|
2011-08-24 10:15:17 +00:00
|
|
|
if (data.word(kOldpointerx) == 0xffff)
|
|
|
|
return;
|
|
|
|
data.word(kDelherex) = data.word(kOldpointerx);
|
|
|
|
data.word(kDelherey) = data.word(kOldpointery);
|
|
|
|
data.byte(kDelxs) = data.byte(kPointerxs);
|
|
|
|
data.byte(kDelys) = data.byte(kPointerys);
|
2011-12-02 15:29:16 +00:00
|
|
|
multiPut(getSegment(data.word(kBuffers)).ptr(kPointerback, 0), data.word(kDelherex), data.word(kDelherey), data.byte(kPointerxs), data.byte(kPointerys));
|
2011-08-24 10:15:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showBlink() {
|
2011-08-24 11:20:18 +00:00
|
|
|
if (data.byte(kManisoffscreen) == 1)
|
|
|
|
return;
|
|
|
|
++data.byte(kBlinkcount);
|
|
|
|
if (data.byte(kShadeson) != 0)
|
|
|
|
return;
|
|
|
|
if (data.byte(kReallocation) >= 50) // eyesshut
|
|
|
|
return;
|
|
|
|
if (data.byte(kBlinkcount) != 3)
|
|
|
|
return;
|
|
|
|
data.byte(kBlinkcount) = 0;
|
|
|
|
uint8 blinkFrame = data.byte(kBlinkframe);
|
|
|
|
++blinkFrame; // Implicit %256
|
|
|
|
data.byte(kBlinkframe) = blinkFrame;
|
|
|
|
if (blinkFrame > 6)
|
|
|
|
blinkFrame = 6;
|
|
|
|
static const uint8 blinkTab[] = { 16,18,18,17,16,16,16 };
|
|
|
|
uint8 width, height;
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), 44, 32, blinkTab[blinkFrame], 0, &width, &height);
|
2011-08-24 11:20:18 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dumpBlink() {
|
2011-08-24 11:22:11 +00:00
|
|
|
if (data.byte(kShadeson) != 0)
|
|
|
|
return;
|
|
|
|
if (data.byte(kBlinkcount) != 0)
|
|
|
|
return;
|
|
|
|
if (data.byte(kBlinkframe) >= 6)
|
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
multiDump(44, 32, 16, 12);
|
2011-08-24 11:22:11 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dumpPointer() {
|
|
|
|
dumpBlink();
|
|
|
|
multiDump(data.word(kDelherex), data.word(kDelherey), data.byte(kDelxs), data.byte(kDelys));
|
2011-08-24 15:23:43 +00:00
|
|
|
if ((data.word(kOldpointerx) != data.word(kDelherex)) || (data.word(kOldpointery) != data.word(kDelherey)))
|
2011-12-01 19:43:43 +00:00
|
|
|
multiDump(data.word(kOldpointerx), data.word(kOldpointery), data.byte(kPointerxs), data.byte(kPointerys));
|
2011-08-24 15:23:43 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::checkCoords() {
|
2011-11-14 20:38:40 +00:00
|
|
|
|
|
|
|
// FIXME: Move all these lists to the callers
|
|
|
|
|
|
|
|
switch ((uint16)bx) {
|
|
|
|
case offset_talklist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback talkList[] = {
|
|
|
|
{ 273,320,157,198,&DreamGenContext::getBack1 },
|
|
|
|
{ 240,290,2,44,&DreamGenContext::moreTalk },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(talkList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case offset_quitlist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback quitList[] = {
|
|
|
|
{ 273,320,157,198,&DreamGenContext::getBack1 },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(quitList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case offset_destlist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback destList[] = {
|
|
|
|
{ 238,258,4,44,&DreamGenContext::nextDest },
|
|
|
|
{ 104,124,4,44,&DreamGenContext::lastDest },
|
|
|
|
{ 280,308,4,44,&DreamGenContext::lookAtPlace },
|
|
|
|
{ 104,216,138,192,&DreamGenContext::destSelect },
|
|
|
|
{ 273,320,157,198,&DreamGenContext::getBack1 },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(destList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case offset_diarylist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback diaryList[] = {
|
|
|
|
{ kDiaryx+94,kDiaryx+110,kDiaryy+97,kDiaryy+113,&DreamGenContext::diaryKeyN },
|
|
|
|
{ kDiaryx+151,kDiaryx+167,kDiaryy+71,kDiaryy+87,&DreamGenContext::diaryKeyP },
|
|
|
|
{ kDiaryx+176,kDiaryx+192,kDiaryy+108,kDiaryy+124,&DreamGenContext::quitKey },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(diaryList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case offset_opslist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback opsList[] = {
|
|
|
|
{ kOpsx+59,kOpsx+114,kOpsy+30,kOpsy+76,&DreamGenContext::getBackFromOps },
|
|
|
|
{ kOpsx+10,kOpsx+77,kOpsy+10,kOpsy+59,&DreamGenContext::DOSReturn },
|
|
|
|
{ kOpsx+128,kOpsx+190,kOpsy+16,kOpsy+100,&DreamGenContext::discOps },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(opsList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case offset_discopslist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback discOpsList[] = {
|
|
|
|
{ kOpsx+59,kOpsx+114,kOpsy+30,kOpsy+76,&DreamGenContext::loadGame },
|
|
|
|
{ kOpsx+10,kOpsx+79,kOpsy+10,kOpsy+59,&DreamGenContext::saveGame },
|
|
|
|
{ kOpsx+176,kOpsx+192,kOpsy+60,kOpsy+76,&DreamGenContext::getBackToOps },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(discOpsList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case offset_decidelist: {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback decideList[] = {
|
|
|
|
{ kOpsx+69,kOpsx+124,kOpsy+30,kOpsy+76,&DreamGenContext::newGame },
|
|
|
|
{ kOpsx+20,kOpsx+87,kOpsy+10,kOpsy+59,&DreamGenContext::DOSReturn },
|
|
|
|
{ kOpsx+123,kOpsx+190,kOpsy+10,kOpsy+59,&DreamGenContext::loadOld },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(decideList);
|
2011-11-14 20:38:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
::error("Unimplemented checkcoords() call");
|
|
|
|
}
|
2011-08-24 13:04:53 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::checkCoords(const RectWithCallback *rectWithCallbacks) {
|
2011-08-24 13:04:53 +00:00
|
|
|
if (data.byte(kNewlocation) != 0xff)
|
|
|
|
return;
|
|
|
|
|
2011-11-14 20:38:40 +00:00
|
|
|
const RectWithCallback *r;
|
|
|
|
for (r = rectWithCallbacks; r->_xMin != 0xffff; ++r) {
|
|
|
|
if (r->contains(data.word(kMousex), data.word(kMousey))) {
|
|
|
|
(this->*(r->_callback))();
|
2011-08-24 13:04:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showPointer() {
|
|
|
|
showBlink();
|
2011-08-24 21:01:53 +00:00
|
|
|
uint16 x = data.word(kMousex);
|
|
|
|
data.word(kOldpointerx) = data.word(kMousex);
|
|
|
|
uint16 y = data.word(kMousey);
|
|
|
|
data.word(kOldpointery) = data.word(kMousey);
|
|
|
|
if (data.byte(kPickup) == 1) {
|
|
|
|
const Frame *frames;
|
|
|
|
if (data.byte(kObjecttype) != 4)
|
2011-12-02 15:29:16 +00:00
|
|
|
frames = (const Frame *)getSegment(data.word(kFreeframes)).ptr(0, 0);
|
2011-08-24 21:01:53 +00:00
|
|
|
else
|
2011-12-02 15:29:16 +00:00
|
|
|
frames = (const Frame *)getSegment(data.word(kExtras)).ptr(0, 0);
|
2011-08-24 21:01:53 +00:00
|
|
|
const Frame *frame = frames + (3 * data.byte(kItemframe) + 1);
|
|
|
|
uint8 width = frame->width;
|
|
|
|
uint8 height = frame->height;
|
|
|
|
if (width < 12)
|
|
|
|
width = 12;
|
|
|
|
if (height < 12)
|
|
|
|
height = 12;
|
|
|
|
data.byte(kPointerxs) = width;
|
|
|
|
data.byte(kPointerys) = height;
|
2011-08-31 23:27:59 +00:00
|
|
|
uint16 xMin = (x >= width / 2) ? x - width / 2 : 0;
|
|
|
|
uint16 yMin = (y >= height / 2) ? y - height / 2 : 0;
|
|
|
|
data.word(kOldpointerx) = xMin;
|
|
|
|
data.word(kOldpointery) = yMin;
|
2011-12-02 15:29:16 +00:00
|
|
|
multiGet(getSegment(data.word(kBuffers)).ptr(kPointerback, 0), xMin, yMin, width, height);
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(frames, x, y, 3 * data.byte(kItemframe) + 1, 128);
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), x, y, 3, 128);
|
2011-08-24 21:01:53 +00:00
|
|
|
} else {
|
2011-12-04 15:36:02 +00:00
|
|
|
const Frame *frame = icons1() + (data.byte(kPointerframe) + 20);
|
2011-08-24 21:01:53 +00:00
|
|
|
uint8 width = frame->width;
|
|
|
|
uint8 height = frame->height;
|
|
|
|
if (width < 12)
|
|
|
|
width = 12;
|
|
|
|
if (height < 12)
|
|
|
|
height = 12;
|
|
|
|
data.byte(kPointerxs) = width;
|
|
|
|
data.byte(kPointerys) = height;
|
2011-12-02 15:29:16 +00:00
|
|
|
multiGet(getSegment(data.word(kBuffers)).ptr(kPointerback, 0), x, y, width, height);
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), x, y, data.byte(kPointerframe) + 20, 0);
|
2011-08-24 21:01:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::animPointer() {
|
2011-08-25 05:02:57 +00:00
|
|
|
|
|
|
|
if (data.byte(kPointermode) == 2) {
|
|
|
|
data.byte(kPointerframe) = 0;
|
|
|
|
if ((data.byte(kReallocation) == 14) && (data.byte(kCommandtype) == 211))
|
|
|
|
data.byte(kPointerframe) = 5;
|
|
|
|
return;
|
|
|
|
} else if (data.byte(kPointermode) == 3) {
|
|
|
|
if (data.byte(kPointerspeed) != 0) {
|
|
|
|
--data.byte(kPointerspeed);
|
|
|
|
} else {
|
|
|
|
data.byte(kPointerspeed) = 5;
|
|
|
|
++data.byte(kPointercount);
|
|
|
|
if (data.byte(kPointercount) == 16)
|
|
|
|
data.byte(kPointercount) = 0;
|
|
|
|
}
|
|
|
|
static const uint8 flashMouseTab[] = { 1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2 };
|
|
|
|
data.byte(kPointerframe) = flashMouseTab[data.byte(kPointercount)];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.word(kWatchingtime) != 0) {
|
|
|
|
data.byte(kPointerframe) = 11;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
data.byte(kPointerframe) = 0;
|
|
|
|
if (data.byte(kInmaparea) == 0)
|
|
|
|
return;
|
|
|
|
if (data.byte(kPointerfirstpath) == 0)
|
|
|
|
return;
|
|
|
|
uint8 flag, flagEx;
|
2011-12-01 19:43:43 +00:00
|
|
|
getFlagUnderP(&flag, &flagEx);
|
2011-08-25 05:02:57 +00:00
|
|
|
if (flag < 2)
|
|
|
|
return;
|
|
|
|
if (flag >= 128)
|
|
|
|
return;
|
|
|
|
if (flag & 4) {
|
|
|
|
data.byte(kPointerframe) = 3;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (flag & 16) {
|
|
|
|
data.byte(kPointerframe) = 4;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (flag & 2) {
|
|
|
|
data.byte(kPointerframe) = 5;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (flag & 8) {
|
|
|
|
data.byte(kPointerframe) = 6;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
data.byte(kPointerframe) = 8;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::printMessage() {
|
|
|
|
printMessage(di, bx, al, dl, (bool)(dl & 1));
|
2011-08-29 09:55:21 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::printMessage(uint16 x, uint16 y, uint8 index, uint8 maxWidth, bool centered) {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = kTextstart + getSegment(data.word(kCommandtext)).word(index * 2);
|
|
|
|
const uint8 *string = getSegment(data.word(kCommandtext)).ptr(offset, 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(&string, x, &y, maxWidth, centered);
|
2011-08-29 09:55:21 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 22:06:30 +00:00
|
|
|
void DreamGenContext::compare() {
|
|
|
|
char id[4] = { cl, ch, dl, dh };
|
|
|
|
flags._z = compare(al, ah, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DreamGenContext::compare(uint8 index, uint8 flag, const char id[4]) {
|
2011-12-01 19:43:43 +00:00
|
|
|
void *ptr = getAnyAdDir(index, flag);
|
2011-08-31 22:06:30 +00:00
|
|
|
const char *objId = (const char *)(((const uint8 *)ptr) + 12); // whether it is a DynObject or a SetObject
|
|
|
|
for (size_t i = 0; i < 4; ++i) {
|
|
|
|
if(id[i] != objId[i] + 'A')
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
bool DreamGenContext::isItDescribed(const ObjPos *pos) {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kSetdesc)).word(kSettextdat + pos->index * 2);
|
|
|
|
uint8 result = getSegment(data.word(kSetdesc)).byte(kSettext + offset);
|
2011-09-01 23:49:14 +00:00
|
|
|
return result != 0;
|
|
|
|
}
|
|
|
|
|
2011-08-16 01:15:43 +00:00
|
|
|
bool DreamGenContext::isCD() {
|
|
|
|
// The original sources has two codepaths depending if the game is 'if cd' or not
|
|
|
|
// This is a hack to guess which version to use with the assumption that if we have a cd version
|
|
|
|
// we managed to load the speech. At least it is isolated in this function and can be changed.
|
|
|
|
// Maybe detect the version during game id?
|
|
|
|
return (data.byte(kSpeechloaded) == 1);
|
|
|
|
}
|
2011-09-02 01:55:52 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showIcon() {
|
2011-11-05 13:13:57 +00:00
|
|
|
if (data.byte(kReallocation) < 50) {
|
2011-12-01 19:43:43 +00:00
|
|
|
showPanel();
|
|
|
|
showMan();
|
|
|
|
roomName();
|
|
|
|
panelIcons1();
|
|
|
|
zoomIcon();
|
2011-11-05 13:13:57 +00:00
|
|
|
} else {
|
2011-12-02 15:29:16 +00:00
|
|
|
Frame *tempSprites = (Frame *)getSegment(data.word(kTempsprites)).ptr(0, 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(tempSprites, 72, 2, 45, 0);
|
|
|
|
showFrame(tempSprites, 72+47, 2, 46, 0);
|
|
|
|
showFrame(tempSprites, 69-10, 21, 49, 0);
|
|
|
|
showFrame(tempSprites, 160+88, 2, 45, 4 & 0xfe);
|
|
|
|
showFrame(tempSprites, 160+43, 2, 46, 4 & 0xfe);
|
|
|
|
showFrame(tempSprites, 160+101, 21, 49, 4 & 0xfe);
|
|
|
|
middlePanel();
|
2011-11-05 13:13:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::checkIfSet() {
|
|
|
|
flags._z = !checkIfSet(al, ah);
|
2011-09-02 01:55:52 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
bool DreamGenContext::checkIfSet(uint8 x, uint8 y) {
|
2011-12-02 15:29:16 +00:00
|
|
|
const ObjPos *setList = (const ObjPos *)getSegment(data.word(kBuffers)).ptr(kSetlist, sizeof(ObjPos) * 128);
|
2011-09-02 01:55:52 +00:00
|
|
|
for (size_t i = 0; i < 128; ++i) {
|
|
|
|
const ObjPos *pos = setList + 127 - i;
|
2011-11-27 17:56:37 +00:00
|
|
|
if (pos->index == 0xff || !pos->contains(x,y))
|
2011-09-02 01:55:52 +00:00
|
|
|
continue;
|
2011-12-01 19:43:43 +00:00
|
|
|
if (! pixelCheckSet(pos, x, y))
|
2011-09-02 01:55:52 +00:00
|
|
|
continue;
|
2011-12-01 19:43:43 +00:00
|
|
|
if (! isItDescribed(pos))
|
2011-09-02 01:55:52 +00:00
|
|
|
continue;
|
2011-12-01 19:43:43 +00:00
|
|
|
obName(pos->index, 1);
|
2011-09-02 01:55:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showRyanPage() {
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), kInventx + 167, kInventy - 12, 12, 0);
|
|
|
|
showFrame(icons1(), kInventx + 167 + 18 * data.byte(kRyanpage), kInventy - 12, 13 + data.byte(kRyanpage), 0);
|
2011-09-05 18:45:41 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::findAllRyan() {
|
|
|
|
findAllRyan(es.ptr(di, 60));
|
2011-09-05 19:42:06 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::findAllRyan(uint8 *inv) {
|
2011-09-05 19:42:06 +00:00
|
|
|
memset(inv, 0xff, 60);
|
|
|
|
for (size_t i = 0; i < kNumexobjects; ++i) {
|
2011-12-01 19:43:43 +00:00
|
|
|
DynObject *extra = getExAd(i);
|
2011-09-05 19:42:06 +00:00
|
|
|
if (extra->mapad[0] != 4)
|
|
|
|
continue;
|
|
|
|
if (extra->mapad[1] != 0xff)
|
|
|
|
continue;
|
|
|
|
uint8 slot = extra->mapad[2];
|
|
|
|
assert(slot < 30);
|
|
|
|
inv[2 * slot + 0] = i;
|
|
|
|
inv[2 * slot + 1] = 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOn() {
|
|
|
|
hangOn(cx);
|
2011-09-06 20:10:02 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOn(uint16 frameCount) {
|
2011-09-06 20:10:02 +00:00
|
|
|
while (frameCount) {
|
2011-12-01 19:43:43 +00:00
|
|
|
vSync();
|
2011-09-06 20:10:02 +00:00
|
|
|
--frameCount;
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-09-08 07:11:16 +00:00
|
|
|
break;
|
2011-09-06 20:10:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOnW() {
|
|
|
|
hangOnW(cx);
|
2011-11-26 16:13:44 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOnW(uint16 frameCount) {
|
2011-11-26 16:13:44 +00:00
|
|
|
while (frameCount) {
|
2011-12-01 19:43:43 +00:00
|
|
|
delPointer();
|
|
|
|
readMouse();
|
|
|
|
animPointer();
|
|
|
|
showPointer();
|
|
|
|
vSync();
|
|
|
|
dumpPointer();
|
2011-11-26 16:13:44 +00:00
|
|
|
--frameCount;
|
|
|
|
if (quitRequested())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOnP() {
|
|
|
|
hangOnP(cx);
|
2011-09-06 20:10:02 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::hangOnP(uint16 count) {
|
2011-09-06 20:10:02 +00:00
|
|
|
data.word(kMaintimer) = 0;
|
|
|
|
uint8 pointerFrame = data.byte(kPointerframe);
|
|
|
|
uint8 pickup = data.byte(kPickup);
|
|
|
|
data.byte(kPointermode) = 3;
|
|
|
|
data.byte(kPickup) = 0;
|
|
|
|
data.byte(kCommandtype) = 255;
|
2011-12-01 19:43:43 +00:00
|
|
|
readMouse();
|
|
|
|
animPointer();
|
|
|
|
showPointer();
|
|
|
|
vSync();
|
|
|
|
dumpPointer();
|
2011-11-19 17:35:47 +00:00
|
|
|
|
|
|
|
count *= 3;
|
|
|
|
for (uint16 i = 0; i < count; ++i) {
|
2011-12-01 19:43:43 +00:00
|
|
|
delPointer();
|
|
|
|
readMouse();
|
|
|
|
animPointer();
|
|
|
|
showPointer();
|
|
|
|
vSync();
|
|
|
|
dumpPointer();
|
2011-11-20 20:26:18 +00:00
|
|
|
if (quitRequested())
|
2011-09-08 07:11:16 +00:00
|
|
|
break;
|
2011-11-19 17:35:47 +00:00
|
|
|
if (data.word(kMousebutton) != 0 && data.word(kMousebutton) != data.word(kOldbutton))
|
2011-09-06 20:10:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
delPointer();
|
2011-09-06 20:10:02 +00:00
|
|
|
data.byte(kPointerframe) = pointerFrame;
|
|
|
|
data.byte(kPickup) = pickup;
|
|
|
|
data.byte(kPointermode) = 0;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::findNextColon() {
|
2011-09-07 01:41:05 +00:00
|
|
|
uint8 *initialString = es.ptr(si, 0);
|
|
|
|
uint8 *string = initialString;
|
2011-12-01 19:43:43 +00:00
|
|
|
al = findNextColon(&string);
|
2011-09-07 01:41:05 +00:00
|
|
|
si += (string - initialString);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
uint8 DreamGenContext::findNextColon(uint8 **string) {
|
2011-09-07 01:41:05 +00:00
|
|
|
uint8 c;
|
|
|
|
do {
|
|
|
|
c = **string;
|
|
|
|
++(*string);
|
|
|
|
} while ((c != 0) && (c != ':'));
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
uint8 *DreamGenContext::getObTextStartCPP() {
|
2011-09-07 01:44:40 +00:00
|
|
|
push(es);
|
|
|
|
push(si);
|
2011-12-01 19:43:43 +00:00
|
|
|
getObTextStart();
|
2011-09-07 01:44:40 +00:00
|
|
|
uint8 *result = es.ptr(si, 0);
|
|
|
|
si = pop();
|
|
|
|
es = pop();
|
|
|
|
return result;
|
|
|
|
}
|
2011-09-07 01:41:05 +00:00
|
|
|
|
2011-12-03 19:10:15 +00:00
|
|
|
void DreamGenContext::enterSymbol() {
|
|
|
|
data.byte(kManisoffscreen) = 1;
|
|
|
|
getRidOfReels();
|
2011-12-03 19:17:41 +00:00
|
|
|
loadIntoTemp("DREAMWEB.G12"); // symbol graphics
|
2011-12-03 19:10:15 +00:00
|
|
|
data.byte(kSymboltopx) = 24;
|
|
|
|
data.byte(kSymboltopdir) = 0;
|
|
|
|
data.byte(kSymbolbotx) = 24;
|
|
|
|
data.byte(kSymbolbotdir) = 0;
|
|
|
|
redrawMainScrn();
|
|
|
|
showSymbol();
|
|
|
|
underTextLine();
|
|
|
|
workToScreenM();
|
|
|
|
data.byte(kGetback) = 0;
|
|
|
|
do {
|
|
|
|
delPointer();
|
|
|
|
updateSymbolTop();
|
|
|
|
updateSymbolBot();
|
|
|
|
showSymbol();
|
|
|
|
readMouse();
|
|
|
|
showPointer();
|
|
|
|
vSync();
|
|
|
|
dumpPointer();
|
|
|
|
dumpTextLine();
|
|
|
|
dumpSymbol();
|
|
|
|
RectWithCallback symbolList[] = {
|
|
|
|
{ kSymbolx+40,kSymbolx+64,kSymboly+2,kSymboly+16,&DreamGenContext::quitSymbol },
|
|
|
|
{ kSymbolx,kSymbolx+52,kSymboly+20,kSymboly+50,&DreamGenContext::setTopLeft },
|
|
|
|
{ kSymbolx+52,kSymbolx+104,kSymboly+20,kSymboly+50,&DreamGenContext::setTopRight },
|
|
|
|
{ kSymbolx,kSymbolx+52,kSymboly+50,kSymboly+80,&DreamGenContext::setBotLeft },
|
|
|
|
{ kSymbolx+52,kSymbolx+104,kSymboly+50,kSymboly+80,&DreamGenContext::setBotRight },
|
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
|
|
|
checkCoords(symbolList);
|
2011-12-03 19:43:54 +00:00
|
|
|
} while ((data.byte(kGetback) == 0) && !quitRequested());
|
2011-12-03 19:10:15 +00:00
|
|
|
if ((data.byte(kSymbolbotnum) == 3) && (data.byte(kSymboltopnum) == 5)) {
|
|
|
|
removeSetObject(43);
|
|
|
|
placeSetObject(46);
|
|
|
|
turnAnyPathOn(0, data.byte(kRoomnum) + 12);
|
|
|
|
data.byte(kManisoffscreen) = 0;
|
|
|
|
redrawMainScrn();
|
|
|
|
getRidOfTemp();
|
|
|
|
restoreReels();
|
|
|
|
workToScreenM();
|
|
|
|
playChannel1(13);
|
|
|
|
} else {
|
|
|
|
removeSetObject(46);
|
|
|
|
placeSetObject(43);
|
|
|
|
turnAnyPathOff(0, data.byte(kRoomnum) + 12);
|
|
|
|
data.byte(kManisoffscreen) = 0;
|
|
|
|
redrawMainScrn();
|
|
|
|
getRidOfTemp();
|
|
|
|
restoreReels();
|
|
|
|
workToScreenM();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::zoomOnOff() {
|
2011-10-09 15:22:41 +00:00
|
|
|
if (data.word(kWatchingtime) != 0) {
|
|
|
|
blank();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.byte(kPointermode) == 2) {
|
|
|
|
blank();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.byte(kCommandtype) != 222) {
|
|
|
|
data.byte(kCommandtype) = 222;
|
2011-12-01 19:43:43 +00:00
|
|
|
commandOnly(39);
|
2011-10-09 15:22:41 +00:00
|
|
|
}
|
|
|
|
if (data.word(kMousebutton) == data.word(kOldbutton))
|
|
|
|
return;
|
|
|
|
if ((data.word(kMousebutton) & 1) == 0)
|
|
|
|
return;
|
|
|
|
data.byte(kZoomon) ^= 1;
|
2011-12-01 19:43:43 +00:00
|
|
|
createPanel();
|
2011-10-09 15:22:41 +00:00
|
|
|
data.byte(kNewobs) = 0;
|
2011-12-01 19:43:43 +00:00
|
|
|
drawFloor();
|
|
|
|
printSprites();
|
|
|
|
reelsOnScreen();
|
|
|
|
showIcon();
|
|
|
|
getUnderZoom();
|
|
|
|
underTextLine();
|
|
|
|
commandOnly(39);
|
|
|
|
readMouse();
|
|
|
|
workToScreenM();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::sortOutMap() {
|
2011-11-30 14:05:04 +00:00
|
|
|
const uint8 *src = workspace();
|
2011-12-02 15:29:16 +00:00
|
|
|
uint8 *dst = (uint8 *)getSegment(data.word(kMapdata)).ptr(0, 0);
|
2011-09-04 10:44:05 +00:00
|
|
|
for (uint16 y = 0; y < kMaplength; ++y) {
|
|
|
|
memcpy(dst, src, kMapwidth);
|
|
|
|
dst += kMapwidth;
|
|
|
|
src += 132;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showCity() {
|
|
|
|
clearWork();
|
|
|
|
showFrame(tempGraphics(), 57, 32, 0, 0);
|
|
|
|
showFrame(tempGraphics(), 120+57, 32, 1, 0);
|
2011-09-04 11:20:02 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::mainScreen() {
|
2011-11-14 19:18:06 +00:00
|
|
|
data.byte(kInmaparea) = 0;
|
2011-11-14 19:18:18 +00:00
|
|
|
if (data.byte(kWatchon) == 1) {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback mainList[] = {
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 44,70,32,46,&DreamGenContext::look },
|
|
|
|
{ 0,50,0,180,&DreamGenContext::inventory },
|
2011-12-01 19:43:43 +00:00
|
|
|
{ 226,244,10,26,&DreamGenContext::zoomOnOff },
|
|
|
|
{ 226,244,26,40,&DreamGenContext::saveLoad },
|
|
|
|
{ 240,260,100,124,&DreamGenContext::madmanRun },
|
|
|
|
{ 0,320,0,200,&DreamGenContext::identifyOb },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(mainList);
|
2011-11-14 19:18:18 +00:00
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback mainList2[] = {
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 44,70,32,46,&DreamGenContext::look },
|
|
|
|
{ 0,50,0,180,&DreamGenContext::inventory },
|
2011-12-01 19:43:43 +00:00
|
|
|
{ 226+48,244+48,10,26,&DreamGenContext::zoomOnOff },
|
|
|
|
{ 226+48,244+48,26,40,&DreamGenContext::saveLoad },
|
|
|
|
{ 240,260,100,124,&DreamGenContext::madmanRun },
|
|
|
|
{ 0,320,0,200,&DreamGenContext::identifyOb },
|
2011-11-14 20:38:40 +00:00
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(mainList2);
|
2011-11-14 19:18:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (data.byte(kWalkandexam) != 0)
|
2011-12-01 19:43:43 +00:00
|
|
|
walkAndExamine();
|
2011-11-14 19:18:06 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showWatch() {
|
2011-11-15 10:05:30 +00:00
|
|
|
if (data.byte(kWatchon)) {
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), 250, 1, 6, 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
showTime();
|
2011-11-15 10:05:30 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-14 19:18:06 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::dumpWatch() {
|
2011-11-20 18:04:33 +00:00
|
|
|
if (data.byte(kWatchdump) != 1)
|
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
multiDump(256, 21, 40, 12);
|
2011-11-20 18:04:33 +00:00
|
|
|
data.byte(kWatchdump) = 0;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showTime() {
|
2011-11-16 23:18:28 +00:00
|
|
|
if (data.byte(kWatchon) == 0)
|
|
|
|
return;
|
2011-12-02 15:29:16 +00:00
|
|
|
Frame *charset = (Frame *)getSegment(data.word(kCharset1)).ptr(0, 0);
|
2011-11-16 23:18:28 +00:00
|
|
|
|
2011-11-16 22:09:39 +00:00
|
|
|
int seconds = data.byte(kSecondcount);
|
|
|
|
int minutes = data.byte(kMinutecount);
|
|
|
|
int hours = data.byte(kHourcount);
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(charset, 282+5, 21, 91*3+10 + seconds / 10, 0);
|
|
|
|
showFrame(charset, 282+9, 21, 91*3+10 + seconds % 10, 0);
|
2011-11-16 22:09:39 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(charset, 270+5, 21, 91*3 + minutes / 10, 0);
|
|
|
|
showFrame(charset, 270+11, 21, 91*3 + minutes % 10, 0);
|
2011-11-16 22:09:39 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(charset, 256+5, 21, 91*3 + hours / 10, 0);
|
|
|
|
showFrame(charset, 256+11, 21, 91*3 + hours % 10, 0);
|
2011-11-16 23:18:28 +00:00
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(charset, 267+5, 21, 91*3+20, 0);
|
2011-11-16 23:18:28 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::watchCount() {
|
2011-11-16 19:09:47 +00:00
|
|
|
if (data.byte(kWatchon) == 0)
|
|
|
|
return;
|
|
|
|
++data.byte(kTimercount);
|
|
|
|
if (data.byte(kTimercount) == 9) {
|
2011-12-02 15:29:16 +00:00
|
|
|
showFrame((Frame *)getSegment(data.word(kCharset1)).ptr(0, 0), 268+4, 21, 91*3+21, 0);
|
2011-11-16 19:09:47 +00:00
|
|
|
data.byte(kWatchdump) = 1;
|
|
|
|
} else if (data.byte(kTimercount) == 18) {
|
|
|
|
data.byte(kTimercount) = 0;
|
|
|
|
++data.byte(kSecondcount);
|
|
|
|
if (data.byte(kSecondcount) == 60) {
|
|
|
|
data.byte(kSecondcount) = 0;
|
|
|
|
++data.byte(kMinutecount);
|
|
|
|
if (data.byte(kMinutecount) == 60) {
|
|
|
|
data.byte(kMinutecount) = 0;
|
|
|
|
++data.byte(kHourcount);
|
|
|
|
if (data.byte(kHourcount) == 24)
|
|
|
|
data.byte(kHourcount) = 0;
|
|
|
|
}
|
|
|
|
}
|
2011-12-01 19:43:43 +00:00
|
|
|
showTime();
|
2011-11-16 19:09:47 +00:00
|
|
|
data.byte(kWatchdump) = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::roomName() {
|
|
|
|
printMessage(88, 18, 53, 240, false);
|
2011-11-14 18:49:19 +00:00
|
|
|
uint16 textIndex = data.byte(kRoomnum);
|
|
|
|
if (textIndex >= 32)
|
|
|
|
textIndex -= 32;
|
|
|
|
data.word(kLinespacing) = 7;
|
|
|
|
uint8 maxWidth = (data.byte(kWatchon) == 1) ? 120 : 160;
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 descOffset = getSegment(data.word(kRoomdesc)).word(kIntextdat + textIndex * 2);
|
|
|
|
const uint8 *string = getSegment(data.word(kRoomdesc)).ptr(kIntext + descOffset, 0);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(string, 88, 25, maxWidth, false);
|
2011-11-14 18:49:19 +00:00
|
|
|
data.word(kLinespacing) = 10;
|
2011-12-01 19:43:43 +00:00
|
|
|
useCharset1();
|
2011-11-14 18:49:19 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::zoomIcon() {
|
2011-11-16 20:00:46 +00:00
|
|
|
if (data.byte(kZoomon) == 0)
|
|
|
|
return;
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), kZoomx, kZoomy-1, 8, 0);
|
2011-11-16 20:00:46 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadRoom() {
|
2011-11-16 20:23:51 +00:00
|
|
|
data.byte(kRoomloaded) = 1;
|
|
|
|
data.word(kTimecount) = 0;
|
|
|
|
data.word(kMaintimer) = 0;
|
|
|
|
data.word(kMapoffsetx) = 104;
|
|
|
|
data.word(kMapoffsety) = 38;
|
|
|
|
data.word(kTextaddressx) = 13;
|
|
|
|
data.word(kTextaddressy) = 182;
|
|
|
|
data.byte(kTextlen) = 240;
|
|
|
|
data.byte(kLocation) = data.byte(kNewlocation);
|
2011-12-03 13:54:00 +00:00
|
|
|
const Room &room = g_roomData[data.byte(kNewlocation)];
|
2011-12-01 19:43:43 +00:00
|
|
|
startLoading(room);
|
|
|
|
loadRoomsSample();
|
|
|
|
switchRyanOn();
|
|
|
|
drawFlags();
|
|
|
|
getDimension();
|
2011-11-16 20:23:51 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadRoomsSample() {
|
2011-11-16 22:08:55 +00:00
|
|
|
uint8 sample = data.byte(kRoomssample);
|
|
|
|
|
|
|
|
if (sample == 255 || data.byte(kCurrentsample) == sample)
|
|
|
|
return; // loaded already
|
|
|
|
|
|
|
|
data.byte(kCurrentsample) = sample;
|
|
|
|
cs.byte(kSamplename+10) = '0' + sample / 10;
|
|
|
|
cs.byte(kSamplename+11) = '0' + sample % 10;
|
|
|
|
dx = kSamplename;
|
2011-12-01 19:43:43 +00:00
|
|
|
loadSecondSample();
|
2011-11-16 21:52:34 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::readSetData() {
|
|
|
|
data.word(kCharset1) = standardLoad((const char *)cs.ptr(kCharacterset1, 0));
|
|
|
|
data.word(kIcons1) = standardLoad((const char *)cs.ptr(kIcongraphics0, 0));
|
|
|
|
data.word(kIcons2) = standardLoad((const char *)cs.ptr(kIcongraphics1, 0));
|
|
|
|
data.word(kMainsprites) = standardLoad((const char *)cs.ptr(kSpritename1, 0));
|
|
|
|
data.word(kPuzzletext) = standardLoad((const char *)cs.ptr(kPuzzletextname, 0));
|
|
|
|
data.word(kCommandtext) = standardLoad((const char *)cs.ptr(kCommandtextname, 0));
|
2011-11-17 16:44:19 +00:00
|
|
|
ax = data.word(kCharset1);
|
|
|
|
data.word(kCurrentset) = ax;
|
|
|
|
if (data.byte(kSoundint) == 0xff)
|
|
|
|
return;
|
2011-11-30 22:31:13 +00:00
|
|
|
|
|
|
|
//engine->openFile("DREAMWEB.VOL");
|
2011-12-02 15:29:16 +00:00
|
|
|
//uint8 *volumeTab = getSegment(data.word(kSoundbuffer)).ptr(16384, 0);
|
2011-11-30 22:31:13 +00:00
|
|
|
//engine->readFromFile(volumeTab, 2048-256);
|
|
|
|
//engine->closeFile();
|
2011-11-17 16:44:19 +00:00
|
|
|
}
|
|
|
|
|
2011-11-20 13:06:48 +00:00
|
|
|
Frame * DreamGenContext::tempGraphics() {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (Frame *)getSegment(data.word(kTempgraphics)).ptr(0, 0);
|
2011-11-20 13:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Frame * DreamGenContext::tempGraphics2() {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (Frame *)getSegment(data.word(kTempgraphics2)).ptr(0, 0);
|
2011-11-20 13:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Frame * DreamGenContext::tempGraphics3() {
|
2011-12-02 15:29:16 +00:00
|
|
|
return (Frame *)getSegment(data.word(kTempgraphics3)).ptr(0, 0);
|
2011-11-20 13:06:48 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 15:36:02 +00:00
|
|
|
Frame * DreamGenContext::icons1() {
|
|
|
|
return (Frame *)getSegment(data.word(kIcons1)).ptr(0, 0);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::playChannel0(uint8 index, uint8 repeat) {
|
2011-11-22 10:56:54 +00:00
|
|
|
if (data.byte(kSoundint) == 255)
|
|
|
|
return;
|
2011-11-22 15:16:55 +00:00
|
|
|
|
2011-11-22 10:56:54 +00:00
|
|
|
data.byte(kCh0playing) = index;
|
2011-11-22 15:16:55 +00:00
|
|
|
Sound *soundBank;
|
2011-11-22 10:56:54 +00:00
|
|
|
if (index >= 12) {
|
2011-12-02 15:29:16 +00:00
|
|
|
soundBank = (Sound *)getSegment(data.word(kSounddata2)).ptr(0, 0);
|
2011-11-22 10:56:54 +00:00
|
|
|
index -= 12;
|
|
|
|
} else
|
2011-12-02 15:29:16 +00:00
|
|
|
soundBank = (Sound *)getSegment(data.word(kSounddata)).ptr(0, 0);
|
2011-11-22 10:56:54 +00:00
|
|
|
|
|
|
|
data.byte(kCh0repeat) = repeat;
|
2011-11-22 15:16:55 +00:00
|
|
|
data.word(kCh0emmpage) = soundBank[index].emmPage;
|
|
|
|
data.word(kCh0offset) = soundBank[index].offset();
|
|
|
|
data.word(kCh0blockstocopy) = soundBank[index].blockCount();
|
2011-11-22 10:56:54 +00:00
|
|
|
if (repeat) {
|
|
|
|
data.word(kCh0oldemmpage) = data.word(kCh0emmpage);
|
|
|
|
data.word(kCh0oldoffset) = data.word(kCh0offset);
|
|
|
|
data.word(kCh0oldblockstocopy) = data.word(kCh0blockstocopy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::playChannel0() {
|
|
|
|
playChannel0(al, ah);
|
2011-11-21 13:33:36 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::playChannel1(uint8 index) {
|
2011-11-22 10:56:54 +00:00
|
|
|
if (data.byte(kSoundint) == 255)
|
|
|
|
return;
|
|
|
|
if (data.byte(kCh1playing) == 7)
|
|
|
|
return;
|
2011-11-22 15:16:55 +00:00
|
|
|
|
2011-11-22 10:56:54 +00:00
|
|
|
data.byte(kCh1playing) = index;
|
2011-11-22 15:16:55 +00:00
|
|
|
Sound *soundBank;
|
2011-11-22 10:56:54 +00:00
|
|
|
if (index >= 12) {
|
2011-12-02 15:29:16 +00:00
|
|
|
soundBank = (Sound *)getSegment(data.word(kSounddata2)).ptr(0, 0);
|
2011-11-22 10:56:54 +00:00
|
|
|
index -= 12;
|
|
|
|
} else
|
2011-12-02 15:29:16 +00:00
|
|
|
soundBank = (Sound *)getSegment(data.word(kSounddata)).ptr(0, 0);
|
2011-11-22 10:56:54 +00:00
|
|
|
|
2011-11-22 15:16:55 +00:00
|
|
|
data.word(kCh1emmpage) = soundBank[index].emmPage;
|
|
|
|
data.word(kCh1offset) = soundBank[index].offset();
|
|
|
|
data.word(kCh1blockstocopy) = soundBank[index].blockCount();
|
2011-11-22 10:56:54 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::playChannel1() {
|
|
|
|
playChannel1(al);
|
2011-11-21 13:33:36 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::findRoomInLoc() {
|
2011-11-22 22:53:35 +00:00
|
|
|
uint8 x = data.byte(kMapx) / 11;
|
|
|
|
uint8 y = data.byte(kMapy) / 10;
|
|
|
|
uint8 roomNum = y * 6 + x;
|
|
|
|
data.byte(kRoomnum) = roomNum;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::autoLook() {
|
2011-11-23 12:09:31 +00:00
|
|
|
if ((data.word(kMousex) != data.word(kOldx)) || (data.word(kMousey) != data.word(kOldy))) {
|
|
|
|
data.word(kLookcounter) = 1000;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
--data.word(kLookcounter);
|
|
|
|
if (data.word(kLookcounter))
|
|
|
|
return;
|
|
|
|
if (data.word(kWatchingtime))
|
|
|
|
return;
|
2011-12-01 19:43:43 +00:00
|
|
|
doLook();
|
2011-11-23 12:09:31 +00:00
|
|
|
}
|
|
|
|
|
2011-11-23 14:49:49 +00:00
|
|
|
void DreamGenContext::look() {
|
|
|
|
if (data.word(kWatchingtime) || (data.byte(kPointermode) == 2)) {
|
|
|
|
blank();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.byte(kCommandtype) != 241) {
|
|
|
|
data.byte(kCommandtype) = 241;
|
2011-12-01 19:43:43 +00:00
|
|
|
commandOnly(25);
|
2011-11-23 14:49:49 +00:00
|
|
|
}
|
|
|
|
if ((data.word(kMousebutton) == 1) && (data.word(kMousebutton) != data.word(kOldbutton)))
|
2011-12-01 19:43:43 +00:00
|
|
|
doLook();
|
2011-11-23 14:49:49 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::doLook() {
|
|
|
|
createPanel();
|
|
|
|
showIcon();
|
|
|
|
underTextLine();
|
|
|
|
workToScreenM();
|
2011-11-23 20:50:35 +00:00
|
|
|
data.byte(kCommandtype) = 255;
|
2011-12-01 19:43:43 +00:00
|
|
|
dumpTextLine();
|
2011-11-23 20:50:35 +00:00
|
|
|
uint8 index = data.byte(kRoomnum) & 31;
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kRoomdesc)).word(kIntextdat + index * 2);
|
|
|
|
uint8 *string = getSegment(data.word(kRoomdesc)).ptr(kIntext, 0) + offset;
|
2011-12-01 19:43:43 +00:00
|
|
|
findNextColon(&string);
|
2011-11-23 20:50:35 +00:00
|
|
|
uint16 x;
|
|
|
|
if (data.byte(kReallocation) < 50)
|
|
|
|
x = 66;
|
|
|
|
else
|
|
|
|
x = 40;
|
2011-12-01 19:43:43 +00:00
|
|
|
if (printSlow(string, x, 80, 241, true) != 1)
|
|
|
|
hangOnP(400);
|
2011-11-23 20:50:35 +00:00
|
|
|
|
|
|
|
data.byte(kPointermode) = 0;
|
|
|
|
data.byte(kCommandtype) = 0;
|
2011-12-01 19:43:43 +00:00
|
|
|
redrawMainScrn();
|
|
|
|
workToScreenM();
|
2011-11-23 20:50:35 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::useCharset1() {
|
2011-11-26 15:37:11 +00:00
|
|
|
data.word(kCurrentset) = data.word(kCharset1);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::useTempCharset() {
|
2011-11-26 15:37:11 +00:00
|
|
|
data.word(kCurrentset) = data.word(kTempcharset);
|
|
|
|
}
|
|
|
|
|
2011-12-03 17:41:20 +00:00
|
|
|
void DreamGenContext::getRidOfTemp() {
|
|
|
|
deallocateMem(data.word(kTempgraphics));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::getRidOfTempText() {
|
|
|
|
deallocateMem(data.word(kTextfile1));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::getRidOfTemp2() {
|
|
|
|
deallocateMem(data.word(kTempgraphics2));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::getRidOfTemp3() {
|
|
|
|
deallocateMem(data.word(kTempgraphics3));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::getRidOfTempCharset() {
|
|
|
|
deallocateMem(data.word(kTempcharset));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::getRidOfTempsP() {
|
|
|
|
deallocateMem(data.word(kTempsprites));
|
|
|
|
}
|
|
|
|
|
2011-11-26 19:36:56 +00:00
|
|
|
// if skipDat, skip clearing and loading Setdat and Freedat
|
2011-12-03 13:54:00 +00:00
|
|
|
void DreamGenContext::loadRoomData(const Room &room, bool skipDat) {
|
|
|
|
engine->openFile(room.name);
|
2011-11-26 19:36:56 +00:00
|
|
|
cs.word(kHandle) = 1; //only one handle
|
|
|
|
flags._c = false;
|
2011-12-03 14:47:24 +00:00
|
|
|
|
|
|
|
FileHeader header;
|
2011-12-03 15:30:51 +00:00
|
|
|
engine->readFromFile((uint8 *)&header, sizeof(FileHeader));
|
2011-11-26 19:36:56 +00:00
|
|
|
|
|
|
|
// read segment lengths from room file header
|
|
|
|
int len[15];
|
|
|
|
for (int i = 0; i < 15; ++i)
|
2011-12-03 14:47:24 +00:00
|
|
|
len[i] = header.len(i);
|
2011-11-26 19:36:56 +00:00
|
|
|
|
|
|
|
data.word(kBackdrop) = allocateAndLoad(len[0]);
|
|
|
|
clearAndLoad(data.word(kWorkspace), 0, len[1], 132*66); // 132*66 = maplen
|
2011-12-01 19:43:43 +00:00
|
|
|
sortOutMap();
|
2011-11-26 19:36:56 +00:00
|
|
|
data.word(kSetframes) = allocateAndLoad(len[2]);
|
|
|
|
if (!skipDat)
|
|
|
|
clearAndLoad(data.word(kSetdat), 255, len[3], kSetdatlen);
|
|
|
|
else
|
|
|
|
engine->skipBytes(len[3]);
|
|
|
|
// NB: The skipDat version of this function as called by restoreall
|
|
|
|
// had a 'call bloc' instead of 'call loadseg' for reel1,
|
|
|
|
// but 'bloc' was not defined.
|
|
|
|
data.word(kReel1) = allocateAndLoad(len[4]);
|
|
|
|
data.word(kReel2) = allocateAndLoad(len[5]);
|
|
|
|
data.word(kReel3) = allocateAndLoad(len[6]);
|
|
|
|
data.word(kReels) = allocateAndLoad(len[7]);
|
|
|
|
data.word(kPeople) = allocateAndLoad(len[8]);
|
|
|
|
data.word(kSetdesc) = allocateAndLoad(len[9]);
|
|
|
|
data.word(kBlockdesc) = allocateAndLoad(len[10]);
|
|
|
|
data.word(kRoomdesc) = allocateAndLoad(len[11]);
|
|
|
|
data.word(kFreeframes) = allocateAndLoad(len[12]);
|
|
|
|
if (!skipDat)
|
|
|
|
clearAndLoad(data.word(kFreedat), 255, len[13], kFreedatlen);
|
|
|
|
else
|
|
|
|
engine->skipBytes(len[13]);
|
|
|
|
data.word(kFreedesc) = allocateAndLoad(len[14]);
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
closeFile();
|
2011-11-26 19:36:56 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::restoreAll() {
|
2011-12-03 13:54:00 +00:00
|
|
|
const Room &room = g_roomData[data.byte(kLocation)];
|
2011-11-26 19:36:56 +00:00
|
|
|
loadRoomData(room, true);
|
2011-12-01 19:43:43 +00:00
|
|
|
setAllChanges();
|
2011-11-26 19:24:23 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::restoreReels() {
|
2011-11-26 19:45:59 +00:00
|
|
|
if (data.byte(kRoomloaded) == 0)
|
|
|
|
return;
|
|
|
|
|
2011-12-03 13:54:00 +00:00
|
|
|
const Room &room = g_roomData[data.byte(kReallocation)];
|
2011-11-26 19:45:59 +00:00
|
|
|
|
2011-12-03 13:54:00 +00:00
|
|
|
engine->openFile(room.name);
|
2011-11-26 19:45:59 +00:00
|
|
|
cs.word(kHandle) = 1; //only one handle
|
|
|
|
flags._c = false;
|
2011-12-03 20:15:40 +00:00
|
|
|
|
|
|
|
FileHeader header;
|
|
|
|
engine->readFromFile((uint8 *)&header, sizeof(FileHeader));
|
2011-11-26 19:45:59 +00:00
|
|
|
|
|
|
|
// read segment lengths from room file header
|
|
|
|
int len[15];
|
|
|
|
for (int i = 0; i < 15; ++i)
|
2011-12-03 20:15:40 +00:00
|
|
|
len[i] = header.len(i);
|
2011-11-26 19:45:59 +00:00
|
|
|
|
|
|
|
engine->skipBytes(len[0]);
|
|
|
|
engine->skipBytes(len[1]);
|
|
|
|
engine->skipBytes(len[2]);
|
|
|
|
engine->skipBytes(len[3]);
|
|
|
|
data.word(kReel1) = allocateAndLoad(len[4]);
|
|
|
|
data.word(kReel2) = allocateAndLoad(len[5]);
|
|
|
|
data.word(kReel3) = allocateAndLoad(len[6]);
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
closeFile();
|
2011-11-26 19:45:23 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadFolder() {
|
2011-12-03 19:17:41 +00:00
|
|
|
loadIntoTemp("DREAMWEB.G09"); // folder graphics 1
|
|
|
|
loadIntoTemp2("DREAMWEB.G10"); // folder graphics 2
|
|
|
|
loadIntoTemp3("DREAMWEB.G11"); // folder graphics 3
|
|
|
|
loadTempCharset("DREAMWEB.C02"); // character set 3
|
|
|
|
loadTempText("DREAMWEB.T50"); // folder text
|
2011-11-29 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showFolder() {
|
2011-11-28 11:10:48 +00:00
|
|
|
data.byte(kCommandtype) = 255;
|
|
|
|
if (data.byte(kFolderpage)) {
|
2011-12-01 19:43:43 +00:00
|
|
|
useTempCharset();
|
|
|
|
createPanel2();
|
|
|
|
showFrame(tempGraphics(), 0, 0, 0, 0);
|
|
|
|
showFrame(tempGraphics(), 143, 0, 1, 0);
|
|
|
|
showFrame(tempGraphics(), 0, 92, 2, 0);
|
|
|
|
showFrame(tempGraphics(), 143, 92, 3, 0);
|
|
|
|
folderExit();
|
2011-11-28 11:10:48 +00:00
|
|
|
if (data.byte(kFolderpage) != 1)
|
2011-12-01 19:43:43 +00:00
|
|
|
showLeftPage();
|
2011-11-28 11:10:48 +00:00
|
|
|
if (data.byte(kFolderpage) != 12)
|
2011-12-01 19:43:43 +00:00
|
|
|
showRightPage();
|
|
|
|
useCharset1();
|
|
|
|
underTextLine();
|
2011-11-28 11:10:48 +00:00
|
|
|
} else {
|
2011-12-01 19:43:43 +00:00
|
|
|
createPanel2();
|
|
|
|
showFrame(tempGraphics3(), 143-28, 0, 0, 0);
|
|
|
|
showFrame(tempGraphics3(), 143-28, 92, 1, 0);
|
|
|
|
folderExit();
|
|
|
|
underTextLine();
|
2011-11-28 11:10:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showLeftPage() {
|
|
|
|
showFrame(tempGraphics2(), 0, 12, 3, 0);
|
2011-11-28 11:38:09 +00:00
|
|
|
uint16 y = 12+5;
|
|
|
|
for (size_t i = 0; i < 9; ++i) {
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(tempGraphics2(), 0, y, 4, 0);
|
2011-11-28 11:38:09 +00:00
|
|
|
y += 16;
|
|
|
|
}
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(tempGraphics2(), 0, y, 5, 0);
|
2011-11-28 11:38:09 +00:00
|
|
|
data.word(kLinespacing) = 8;
|
|
|
|
data.word(kCharshift) = 91;
|
|
|
|
data.byte(kKerning) = 1;
|
|
|
|
uint8 pageIndex = data.byte(kFolderpage) - 2;
|
2011-11-28 17:28:09 +00:00
|
|
|
const uint8 *string = getTextInFile1(pageIndex * 2);
|
2011-11-28 11:38:09 +00:00
|
|
|
y = 48;
|
|
|
|
for (size_t i = 0; i < 2; ++i) {
|
|
|
|
uint8 lastChar;
|
|
|
|
do {
|
2011-12-01 19:43:43 +00:00
|
|
|
lastChar = printDirect(&string, 2, &y, 140, false);
|
2011-11-28 11:38:09 +00:00
|
|
|
y += data.word(kLinespacing);
|
|
|
|
} while (lastChar != '\0');
|
|
|
|
}
|
|
|
|
data.byte(kKerning) = 0;
|
|
|
|
data.word(kCharshift) = 0;
|
|
|
|
data.word(kLinespacing) = 10;
|
|
|
|
uint8 *bufferToSwap = workspace() + (48*320)+2;
|
|
|
|
for (size_t i = 0; i < 120; ++i) {
|
|
|
|
for (size_t j = 0; j < 65; ++j) {
|
|
|
|
SWAP(bufferToSwap[j], bufferToSwap[130 - j]);
|
|
|
|
}
|
|
|
|
bufferToSwap += 320;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::showRightPage() {
|
|
|
|
showFrame(tempGraphics2(), 143, 12, 0, 0);
|
2011-11-28 15:17:50 +00:00
|
|
|
uint16 y = 12+37;
|
|
|
|
for (size_t i = 0; i < 7; ++i) {
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(tempGraphics2(), 143, y, 1, 0);
|
2011-11-28 15:17:50 +00:00
|
|
|
y += 16;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
showFrame(tempGraphics2(), 143, y, 2, 0);
|
2011-11-28 15:17:50 +00:00
|
|
|
data.word(kLinespacing) = 8;
|
|
|
|
data.byte(kKerning) = 1;
|
|
|
|
uint8 pageIndex = data.byte(kFolderpage) - 1;
|
2011-11-28 17:28:09 +00:00
|
|
|
const uint8 *string = getTextInFile1(pageIndex * 2);
|
2011-11-28 15:17:50 +00:00
|
|
|
y = 48;
|
|
|
|
for (size_t i = 0; i < 2; ++i) {
|
|
|
|
uint8 lastChar;
|
|
|
|
do {
|
2011-12-01 19:43:43 +00:00
|
|
|
lastChar = printDirect(&string, 152, &y, 140, false);
|
2011-11-28 15:17:50 +00:00
|
|
|
y += data.word(kLinespacing);
|
|
|
|
} while (lastChar != '\0');
|
|
|
|
}
|
|
|
|
data.byte(kKerning) = 0;
|
|
|
|
data.word(kLinespacing) = 10;
|
|
|
|
}
|
|
|
|
|
2011-12-04 15:31:11 +00:00
|
|
|
void DreamGenContext::showExit() {
|
2011-12-04 15:36:02 +00:00
|
|
|
showFrame(icons1(), 274, 154, 11, 0);
|
2011-12-04 15:31:11 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
uint8 DreamGenContext::getLocation(uint8 index) {
|
2011-11-28 16:03:07 +00:00
|
|
|
return data.byte(kRoomscango + index);
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::getLocation() {
|
|
|
|
al = getLocation(al);
|
2011-11-28 16:03:07 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setLocation(uint8 index) {
|
2011-11-28 16:03:07 +00:00
|
|
|
data.byte(kRoomscango + index) = 1;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::setLocation() {
|
|
|
|
setLocation(al);
|
2011-11-28 16:03:07 +00:00
|
|
|
}
|
|
|
|
|
2011-11-28 17:28:09 +00:00
|
|
|
const uint8 *DreamGenContext::getTextInFile1(uint16 index) {
|
2011-12-02 15:29:16 +00:00
|
|
|
uint16 offset = getSegment(data.word(kTextfile1)).word(index * 2) + kTextstart;
|
|
|
|
const uint8 *string = getSegment(data.word(kTextfile1)).ptr(offset, 0);
|
2011-11-28 17:28:09 +00:00
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2011-11-29 09:27:02 +00:00
|
|
|
void DreamGenContext::checkFolderCoords() {
|
2011-12-01 19:43:43 +00:00
|
|
|
RectWithCallback folderList[] = {
|
|
|
|
{ 280,320,160,200, &DreamGenContext::quitKey },
|
|
|
|
{ 143,300,6,194, &DreamGenContext::nextFolder },
|
|
|
|
{ 0,143,6,194, &DreamGenContext::lastFolder },
|
|
|
|
{ 0,320,0,200, &DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0, 0 }
|
2011-11-29 09:27:02 +00:00
|
|
|
};
|
2011-12-01 19:43:43 +00:00
|
|
|
checkCoords(folderList);
|
2011-11-29 09:27:02 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::nextFolder() {
|
2011-11-29 09:27:02 +00:00
|
|
|
if (data.byte(kFolderpage) == 12) {
|
|
|
|
blank();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.byte(kCommandtype) != 201) {
|
|
|
|
data.byte(kCommandtype) = 201;
|
2011-12-01 19:43:43 +00:00
|
|
|
commandOnly(16);
|
2011-11-29 09:27:02 +00:00
|
|
|
}
|
|
|
|
if ((data.word(kMousebutton) == 1) && (data.word(kMousebutton) != data.word(kOldbutton))) {
|
|
|
|
++data.byte(kFolderpage);
|
2011-12-01 19:43:43 +00:00
|
|
|
folderHints();
|
|
|
|
delPointer();
|
|
|
|
showFolder();
|
2011-11-29 09:27:02 +00:00
|
|
|
data.word(kMousebutton) = 0;
|
|
|
|
checkFolderCoords();
|
2011-12-01 19:43:43 +00:00
|
|
|
workToScreenM();
|
2011-11-29 09:27:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::lastFolder() {
|
2011-11-29 10:15:01 +00:00
|
|
|
if (data.byte(kFolderpage) == 0) {
|
|
|
|
blank();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data.byte(kCommandtype) != 202) {
|
|
|
|
data.byte(kCommandtype) = 202;
|
2011-12-01 19:43:43 +00:00
|
|
|
commandOnly(17);
|
2011-11-29 10:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((data.word(kMousebutton) == 1) && (data.word(kMousebutton) != data.word(kOldbutton))) {
|
|
|
|
--data.byte(kFolderpage);
|
2011-12-01 19:43:43 +00:00
|
|
|
delPointer();
|
|
|
|
showFolder();
|
2011-11-29 10:15:01 +00:00
|
|
|
data.word(kMousebutton) = 0;
|
|
|
|
checkFolderCoords();
|
2011-12-01 19:43:43 +00:00
|
|
|
workToScreenM();
|
2011-11-29 10:15:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::folderHints() {
|
2011-11-29 11:24:04 +00:00
|
|
|
if (data.byte(kFolderpage) == 5) {
|
2011-12-01 19:43:43 +00:00
|
|
|
if ((data.byte(kAidedead) != 1) && (getLocation(13) != 1)) {
|
|
|
|
setLocation(13);
|
|
|
|
showFolder();
|
2011-11-29 11:24:04 +00:00
|
|
|
const uint8 *string = getTextInFile1(30);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(string, 0, 86, 141, true);
|
|
|
|
workToScreenM();
|
|
|
|
hangOnP(200);
|
2011-11-29 11:24:04 +00:00
|
|
|
}
|
|
|
|
} else if (data.byte(kFolderpage) == 9) {
|
2011-12-01 19:43:43 +00:00
|
|
|
if (getLocation(7) != 1) {
|
|
|
|
setLocation(7);
|
|
|
|
showFolder();
|
2011-11-29 11:24:04 +00:00
|
|
|
const uint8 *string = getTextInFile1(31);
|
2011-12-01 19:43:43 +00:00
|
|
|
printDirect(string, 0, 86, 141, true);
|
|
|
|
workToScreenM();
|
|
|
|
hangOnP(200);
|
2011-11-29 11:24:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::folderExit() {
|
|
|
|
showFrame(tempGraphics2(), 296, 178, 6, 0);
|
2011-11-29 14:18:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadTravelText() {
|
2011-12-03 19:17:41 +00:00
|
|
|
data.word(kTraveltext) = standardLoad("DREAMWEB.T81"); // location descs
|
2011-11-30 09:06:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadTempText() {
|
|
|
|
loadTempText((const char *)cs.ptr(dx, 0));
|
2011-11-30 09:06:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::loadTempText(const char *fileName) {
|
|
|
|
data.word(kTextfile1) = standardLoad(fileName);
|
2011-11-30 09:06:03 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::drawFloor() {
|
|
|
|
eraseOldObs();
|
|
|
|
drawFlags();
|
|
|
|
calcMapAd();
|
|
|
|
doBlocks();
|
|
|
|
showAllObs();
|
|
|
|
showAllFree();
|
|
|
|
showAllEx();
|
|
|
|
panelToMap();
|
|
|
|
initRain();
|
2011-11-30 13:30:40 +00:00
|
|
|
data.byte(kNewobs) = 0;
|
|
|
|
}
|
|
|
|
|
2011-12-01 19:43:43 +00:00
|
|
|
void DreamGenContext::allocateBuffers() {
|
|
|
|
data.word(kExtras) = allocateMem(kLengthofextra/16);
|
|
|
|
data.word(kMapdata) = allocateMem(kLengthofmap/16);
|
|
|
|
data.word(kBuffers) = allocateMem(kLengthofbuffer/16);
|
|
|
|
data.word(kFreedat) = allocateMem(kFreedatlen/16);
|
|
|
|
data.word(kSetdat) = allocateMem(kSetdatlen/16);
|
|
|
|
data.word(kMapstore) = allocateMem(kLenofmapstore/16);
|
|
|
|
allocateWork();
|
|
|
|
data.word(kSounddata) = allocateMem(2048/16);
|
|
|
|
data.word(kSounddata2) = allocateMem(2048/16);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DreamGenContext::workToScreenM() {
|
|
|
|
animPointer();
|
|
|
|
readMouse();
|
|
|
|
showPointer();
|
|
|
|
vSync();
|
|
|
|
workToScreen();
|
|
|
|
delPointer();
|
2011-11-30 23:01:54 +00:00
|
|
|
}
|
|
|
|
|
2011-12-03 14:44:29 +00:00
|
|
|
void DreamGenContext::loadMenu() {
|
2011-12-03 19:17:41 +00:00
|
|
|
loadIntoTemp("DREAMWEB.S02"); // sprite name 3
|
|
|
|
loadIntoTemp2("DREAMWEB.G07"); // mon. graphics 2
|
2011-12-03 14:44:29 +00:00
|
|
|
}
|
|
|
|
|
2011-12-03 14:46:43 +00:00
|
|
|
void DreamGenContext::showMenu() {
|
|
|
|
++data.byte(kMenucount);
|
|
|
|
if (data.byte(kMenucount) == 37*2)
|
|
|
|
data.byte(kMenucount) = 0;
|
|
|
|
showFrame(tempGraphics(), kMenux, kMenuy, data.byte(kMenucount) / 2, 0);
|
|
|
|
}
|
|
|
|
|
2011-12-03 14:57:47 +00:00
|
|
|
void DreamGenContext::dumpMenu() {
|
|
|
|
multiDump(kMenux, kMenuy, 48, 48);
|
|
|
|
}
|
|
|
|
|
2011-12-03 14:31:29 +00:00
|
|
|
void DreamGenContext::useMenu() {
|
|
|
|
getRidOfReels();
|
|
|
|
loadMenu();
|
|
|
|
createPanel();
|
|
|
|
showPanel();
|
|
|
|
showIcon();
|
|
|
|
data.byte(kNewobs) = 0;
|
|
|
|
drawFloor();
|
|
|
|
printSprites();
|
|
|
|
showFrame(tempGraphics2(), kMenux-48, kMenuy-4, 4, 0);
|
|
|
|
getUnderMenu();
|
|
|
|
showFrame(tempGraphics2(), kMenux+54, kMenuy+72, 5, 0);
|
|
|
|
workToScreenM();
|
|
|
|
data.byte(kGetback) = 0;
|
|
|
|
do {
|
|
|
|
delPointer();
|
|
|
|
putUnderMenu();
|
|
|
|
showMenu();
|
|
|
|
readMouse();
|
|
|
|
showPointer();
|
|
|
|
vSync();
|
|
|
|
dumpPointer();
|
|
|
|
dumpMenu();
|
|
|
|
dumpTextLine();
|
|
|
|
RectWithCallback menuList[] = {
|
|
|
|
{ kMenux+54,kMenux+68,kMenuy+72,kMenuy+88,&DreamGenContext::quitKey },
|
|
|
|
{ 0,320,0,200,&DreamGenContext::blank },
|
|
|
|
{ 0xFFFF,0,0,0,0 }
|
|
|
|
};
|
|
|
|
checkCoords(menuList);
|
|
|
|
} while ((data.byte(kGetback) != 1) && !quitRequested());
|
|
|
|
data.byte(kManisoffscreen) = 0;
|
|
|
|
redrawMainScrn();
|
|
|
|
getRidOfTemp();
|
|
|
|
getRidOfTemp2();
|
|
|
|
restoreReels();
|
|
|
|
workToScreenM();
|
|
|
|
}
|
2011-12-03 18:20:52 +00:00
|
|
|
|
|
|
|
void DreamGenContext::atmospheres() {
|
2011-12-03 18:50:25 +00:00
|
|
|
|
|
|
|
const Atmosphere *a = &g_atmosphereList[0];
|
|
|
|
|
|
|
|
for (; a->_location != 255; ++a) {
|
|
|
|
if (a->_location != data.byte(kReallocation))
|
|
|
|
continue;
|
|
|
|
if (a->_mapX != data.byte(kMapx) || a->_mapY != data.byte(kMapy))
|
|
|
|
continue;
|
|
|
|
if (a->_sound != data.byte(kCh0playing)) {
|
|
|
|
|
|
|
|
if (data.byte(kLocation) == 45 && data.word(kReeltowatch) == 45)
|
|
|
|
continue; // "web"
|
|
|
|
|
|
|
|
playChannel0(a->_sound, a->_repeat);
|
|
|
|
|
|
|
|
// NB: The asm here reads
|
|
|
|
// cmp reallocation,2
|
|
|
|
// cmp mapy,0
|
|
|
|
// jz fullvol
|
|
|
|
// jnz notlouisvol
|
|
|
|
// I'm interpreting this as if the cmp reallocation is below the jz
|
|
|
|
|
|
|
|
if (data.byte(kMapy) == 0) {
|
|
|
|
data.byte(kVolume) = 0; // "fullvol"
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.byte(kReallocation) == 2 && data.byte(kMapx) == 22 && data.byte(kMapy) == 10)
|
|
|
|
data.byte(kVolume) = 5; // "louisvol"
|
|
|
|
|
|
|
|
if (isCD() && data.byte(kReallocation) == 14) {
|
|
|
|
if (data.byte(kMapx) == 33) {
|
|
|
|
data.byte(kVolume) = 0; // "ismad2"
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.byte(kMapx) == 22) {
|
|
|
|
data.byte(kVolume) = 5;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.byte(kReallocation) == 2) {
|
|
|
|
if (data.byte(kMapx) == 22) {
|
|
|
|
data.byte(kVolume) = 5; // "louisvol"
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.byte(kMapx) == 11) {
|
|
|
|
data.byte(kVolume) = 0; // "fullvol"
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-03 18:20:52 +00:00
|
|
|
cancelCh0();
|
|
|
|
}
|
|
|
|
|
2011-12-04 09:01:37 +00:00
|
|
|
void DreamGenContext::readKey() {
|
2011-12-04 09:11:28 +00:00
|
|
|
uint16 bufOut = data.word(kBufferout);
|
|
|
|
|
|
|
|
if (bufOut == data.word(kBufferin)) {
|
|
|
|
// empty buffer
|
|
|
|
data.byte(kCurrentkey) = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bufOut = (bufOut + 1) & 15; // The buffer has size 16
|
|
|
|
data.byte(kCurrentkey) = g_keyBuffer[bufOut];
|
|
|
|
data.word(kBufferout) = bufOut;
|
2011-12-04 09:01:37 +00:00
|
|
|
}
|
2011-12-03 18:20:52 +00:00
|
|
|
|
|
|
|
|
2011-06-15 21:03:00 +00:00
|
|
|
} /*namespace dreamgen */
|
2011-08-15 13:42:09 +00:00
|
|
|
|