2022-05-19 01:51:26 -07:00
|
|
|
#include "elevator.h"
|
|
|
|
|
2022-09-15 02:38:23 -07:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2022-06-18 06:26:21 -07:00
|
|
|
#include "art.h"
|
2022-05-19 01:51:26 -07:00
|
|
|
#include "core.h"
|
|
|
|
#include "cycle.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "draw.h"
|
|
|
|
#include "game_mouse.h"
|
|
|
|
#include "game_sound.h"
|
2022-06-18 06:26:21 -07:00
|
|
|
#include "geometry.h"
|
2022-10-04 23:23:27 -07:00
|
|
|
#include "input.h"
|
2022-05-21 11:30:25 -07:00
|
|
|
#include "interface.h"
|
2022-10-03 06:42:34 -07:00
|
|
|
#include "kb.h"
|
2022-05-19 01:51:26 -07:00
|
|
|
#include "map.h"
|
|
|
|
#include "pipboy.h"
|
|
|
|
#include "scripts.h"
|
2022-08-03 02:34:13 -07:00
|
|
|
#include "sfall_config.h"
|
2022-05-19 01:51:26 -07:00
|
|
|
#include "window_manager.h"
|
|
|
|
|
2022-09-23 05:43:44 -07:00
|
|
|
namespace fallout {
|
|
|
|
|
2022-06-18 06:26:21 -07:00
|
|
|
// The maximum number of elevator levels.
|
|
|
|
#define ELEVATOR_LEVEL_MAX (4)
|
|
|
|
|
2022-08-03 02:34:13 -07:00
|
|
|
// Max number of elevators that can be loaded from elevators.ini. This limit is
|
|
|
|
// emposed by Sfall.
|
|
|
|
#define ELEVATORS_MAX 50
|
|
|
|
|
2022-06-18 06:26:21 -07:00
|
|
|
typedef enum ElevatorFrm {
|
|
|
|
ELEVATOR_FRM_BUTTON_DOWN,
|
|
|
|
ELEVATOR_FRM_BUTTON_UP,
|
|
|
|
ELEVATOR_FRM_GAUGE,
|
|
|
|
ELEVATOR_FRM_COUNT,
|
|
|
|
} ElevatorFrm;
|
|
|
|
|
|
|
|
typedef struct ElevatorBackground {
|
|
|
|
int backgroundFrmId;
|
|
|
|
int panelFrmId;
|
|
|
|
} ElevatorBackground;
|
|
|
|
|
|
|
|
typedef struct ElevatorDescription {
|
|
|
|
int map;
|
|
|
|
int elevation;
|
|
|
|
int tile;
|
|
|
|
} ElevatorDescription;
|
|
|
|
|
|
|
|
static int elevatorWindowInit(int elevator);
|
|
|
|
static void elevatorWindowFree();
|
|
|
|
static int elevatorGetLevelFromKeyCode(int elevator, int keyCode);
|
|
|
|
|
2022-05-19 01:51:26 -07:00
|
|
|
// 0x43E950
|
2022-06-18 06:26:21 -07:00
|
|
|
static const int gElevatorFrmIds[ELEVATOR_FRM_COUNT] = {
|
2022-05-19 01:51:26 -07:00
|
|
|
141, // ebut_in.frm - map elevator screen
|
|
|
|
142, // ebut_out.frm - map elevator screen
|
|
|
|
149, // gaj000.frm - map elevator screen
|
|
|
|
};
|
|
|
|
|
|
|
|
// 0x43E95C
|
2022-08-03 02:34:13 -07:00
|
|
|
static ElevatorBackground gElevatorBackgrounds[ELEVATORS_MAX] = {
|
2022-05-19 01:51:26 -07:00
|
|
|
{ 143, -1 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 144, -1 },
|
|
|
|
{ 144, 145 },
|
|
|
|
{ 146, -1 },
|
|
|
|
{ 146, 147 },
|
|
|
|
{ 146, -1 },
|
|
|
|
{ 146, 151 },
|
|
|
|
{ 148, -1 },
|
|
|
|
{ 146, -1 },
|
|
|
|
{ 146, -1 },
|
|
|
|
{ 146, 147 },
|
|
|
|
{ 388, -1 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 148, -1 },
|
|
|
|
{ 148, -1 },
|
|
|
|
{ 148, -1 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 143, 150 },
|
|
|
|
{ 143, 150 },
|
|
|
|
};
|
|
|
|
|
|
|
|
// Number of levels for eleveators.
|
|
|
|
//
|
|
|
|
// 0x43EA1C
|
2022-08-03 02:34:13 -07:00
|
|
|
static int gElevatorLevels[ELEVATORS_MAX] = {
|
2022-05-19 01:51:26 -07:00
|
|
|
4,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
3,
|
|
|
|
3,
|
|
|
|
3,
|
|
|
|
3,
|
|
|
|
2,
|
|
|
|
4,
|
|
|
|
2,
|
|
|
|
3,
|
|
|
|
3,
|
|
|
|
3,
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
};
|
|
|
|
|
|
|
|
// 0x43EA7C
|
2022-08-03 02:34:13 -07:00
|
|
|
static ElevatorDescription gElevatorDescriptions[ELEVATORS_MAX][ELEVATOR_LEVEL_MAX] = {
|
2022-05-19 01:51:26 -07:00
|
|
|
{
|
|
|
|
{ 14, 0, 18940 },
|
|
|
|
{ 14, 1, 18936 },
|
|
|
|
{ 15, 0, 21340 },
|
|
|
|
{ 15, 1, 21340 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 13, 0, 20502 },
|
|
|
|
{ 14, 0, 14912 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 33, 0, 12498 },
|
|
|
|
{ 33, 1, 20094 },
|
|
|
|
{ 34, 0, 17312 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 34, 0, 16140 },
|
|
|
|
{ 34, 1, 16140 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 49, 0, 14920 },
|
|
|
|
{ 49, 1, 15120 },
|
|
|
|
{ 50, 0, 12944 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 50, 0, 24520 },
|
|
|
|
{ 50, 1, 25316 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 42, 0, 22526 },
|
|
|
|
{ 42, 1, 22526 },
|
|
|
|
{ 42, 2, 22526 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 42, 2, 14086 },
|
|
|
|
{ 43, 0, 14086 },
|
|
|
|
{ 43, 2, 14086 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 40, 0, 14104 },
|
|
|
|
{ 40, 1, 22504 },
|
|
|
|
{ 40, 2, 17312 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 9, 0, 13704 },
|
|
|
|
{ 9, 1, 23302 },
|
|
|
|
{ 9, 2, 17308 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 28, 0, 19300 },
|
|
|
|
{ 28, 1, 19300 },
|
|
|
|
{ 28, 2, 20110 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 28, 2, 20118 },
|
|
|
|
{ 29, 0, 21710 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 28, 0, 20122 },
|
|
|
|
{ 28, 1, 20124 },
|
|
|
|
{ 28, 2, 20940 },
|
|
|
|
{ 29, 0, 22540 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 12, 1, 16052 },
|
|
|
|
{ 12, 2, 14480 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 6, 0, 14104 },
|
|
|
|
{ 6, 1, 22504 },
|
|
|
|
{ 6, 2, 17312 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 30, 0, 14104 },
|
|
|
|
{ 30, 1, 22504 },
|
|
|
|
{ 30, 2, 17312 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 36, 0, 13704 },
|
|
|
|
{ 36, 1, 23302 },
|
|
|
|
{ 36, 2, 17308 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 39, 0, 17285 },
|
|
|
|
{ 36, 0, 19472 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 109, 2, 10701 },
|
|
|
|
{ 109, 1, 10705 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 109, 2, 14697 },
|
|
|
|
{ 109, 1, 15099 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 109, 2, 23877 },
|
|
|
|
{ 109, 1, 25481 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 109, 2, 26130 },
|
|
|
|
{ 109, 1, 24721 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 137, 0, 23953 },
|
|
|
|
{ 148, 1, 16526 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 62, 0, 13901 },
|
|
|
|
{ 63, 1, 17923 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
{ 0, 0, -1 },
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// NOTE: These values are also used as key bindings.
|
|
|
|
//
|
|
|
|
// 0x43EEFC
|
2022-08-03 02:34:13 -07:00
|
|
|
static char gElevatorLevelLabels[ELEVATORS_MAX][ELEVATOR_LEVEL_MAX] = {
|
2022-05-19 01:51:26 -07:00
|
|
|
{ '1', '2', '3', '4' },
|
|
|
|
{ 'G', '1', '\0', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '3', '4', '\0', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '3', '4', '\0', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '3', '4', '6', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '3', '4', '\0', '\0' },
|
|
|
|
{ '1', '2', '3', '4' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '1', '2', '3', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
{ '1', '2', '\0', '\0' },
|
|
|
|
};
|
|
|
|
|
|
|
|
// 0x51862C
|
2022-06-18 06:26:21 -07:00
|
|
|
static const char* gElevatorSoundEffects[ELEVATOR_LEVEL_MAX - 1][ELEVATOR_LEVEL_MAX] = {
|
2022-05-19 01:51:26 -07:00
|
|
|
{
|
|
|
|
"ELV1_1",
|
|
|
|
"ELV1_1",
|
|
|
|
"ERROR",
|
|
|
|
"ERROR",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ELV1_2",
|
|
|
|
"ELV1_2",
|
|
|
|
"ELV1_1",
|
|
|
|
"ERROR",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ELV1_3",
|
|
|
|
"ELV1_3",
|
|
|
|
"ELV2_3",
|
|
|
|
"ELV1_1",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// 0x570A54
|
2022-06-18 06:26:21 -07:00
|
|
|
static int gElevatorWindow;
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
// 0x570A6C
|
2022-06-18 06:26:21 -07:00
|
|
|
static unsigned char* gElevatorWindowBuffer;
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
// 0x570A70
|
2022-06-18 06:26:21 -07:00
|
|
|
static bool gElevatorWindowIsoWasEnabled;
|
2022-05-19 01:51:26 -07:00
|
|
|
|
2022-09-24 07:03:50 -07:00
|
|
|
static FrmImage _elevatorFrmImages[ELEVATOR_FRM_COUNT];
|
|
|
|
static FrmImage _elevatorBackgroundFrmImage;
|
|
|
|
static FrmImage _elevatorPanelFrmImage;
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
// Presents elevator dialog for player to pick a desired level.
|
|
|
|
//
|
|
|
|
// 0x43EF5C
|
|
|
|
int elevatorSelectLevel(int elevator, int* mapPtr, int* elevationPtr, int* tilePtr)
|
|
|
|
{
|
2022-08-03 02:34:13 -07:00
|
|
|
if (elevator < 0 || elevator >= ELEVATORS_MAX) {
|
2022-05-19 01:51:26 -07:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-08-03 02:34:13 -07:00
|
|
|
// SFALL
|
2022-05-19 01:51:26 -07:00
|
|
|
if (elevatorWindowInit(elevator) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ElevatorDescription* elevatorDescription = gElevatorDescriptions[elevator];
|
|
|
|
|
|
|
|
int index;
|
|
|
|
for (index = 0; index < ELEVATOR_LEVEL_MAX; index++) {
|
|
|
|
if (elevatorDescription[index].map == *mapPtr) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index < ELEVATOR_LEVEL_MAX) {
|
|
|
|
if (elevatorDescription[*elevationPtr + index].tile != -1) {
|
|
|
|
*elevationPtr += index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (elevator == ELEVATOR_SIERRA_2) {
|
|
|
|
if (*elevationPtr <= 2) {
|
|
|
|
*elevationPtr -= 2;
|
|
|
|
} else {
|
|
|
|
*elevationPtr -= 3;
|
|
|
|
}
|
|
|
|
} else if (elevator == ELEVATOR_MILITARY_BASE_LOWER) {
|
|
|
|
if (*elevationPtr >= 2) {
|
|
|
|
*elevationPtr -= 2;
|
|
|
|
}
|
|
|
|
} else if (elevator == ELEVATOR_MILITARY_BASE_UPPER && *elevationPtr == 4) {
|
|
|
|
*elevationPtr -= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*elevationPtr > 3) {
|
|
|
|
*elevationPtr -= 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
debugPrint("\n the start elev level %d\n", *elevationPtr);
|
|
|
|
|
2022-09-24 07:03:50 -07:00
|
|
|
int v18 = (_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getWidth() * _elevatorFrmImages[ELEVATOR_FRM_GAUGE].getHeight()) / 13;
|
2022-05-19 01:51:26 -07:00
|
|
|
float v42 = 12.0f / (float)(gElevatorLevels[elevator] - 1);
|
|
|
|
blitBufferToBuffer(
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getData() + v18 * (int)((float)(*elevationPtr) * v42),
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getWidth(),
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getHeight() / 13,
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getWidth(),
|
|
|
|
gElevatorWindowBuffer + _elevatorBackgroundFrmImage.getWidth() * 41 + 121,
|
|
|
|
_elevatorBackgroundFrmImage.getWidth());
|
2022-05-19 01:51:26 -07:00
|
|
|
windowRefresh(gElevatorWindow);
|
|
|
|
|
|
|
|
bool done = false;
|
|
|
|
int keyCode;
|
|
|
|
while (!done) {
|
2022-10-05 00:11:47 -07:00
|
|
|
keyCode = inputGetInput();
|
2022-05-19 01:51:26 -07:00
|
|
|
if (keyCode == KEY_ESCAPE) {
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keyCode >= 500 && keyCode < 504) {
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keyCode > 0 && keyCode < 500) {
|
|
|
|
int level = elevatorGetLevelFromKeyCode(elevator, keyCode);
|
|
|
|
if (level != 0) {
|
|
|
|
keyCode = 500 + level - 1;
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keyCode != KEY_ESCAPE) {
|
|
|
|
keyCode -= 500;
|
|
|
|
|
|
|
|
if (*elevationPtr != keyCode) {
|
|
|
|
float v43 = (float)(gElevatorLevels[elevator] - 1) / 12.0f;
|
|
|
|
|
|
|
|
unsigned int delay = (unsigned int)(v43 * 276.92307);
|
|
|
|
|
|
|
|
if (keyCode < *elevationPtr) {
|
|
|
|
v43 = -v43;
|
|
|
|
}
|
|
|
|
|
|
|
|
int numberOfLevelsTravelled = keyCode - *elevationPtr;
|
|
|
|
if (numberOfLevelsTravelled < 0) {
|
|
|
|
numberOfLevelsTravelled = -numberOfLevelsTravelled;
|
|
|
|
}
|
|
|
|
|
|
|
|
soundPlayFile(gElevatorSoundEffects[gElevatorLevels[elevator] - 2][numberOfLevelsTravelled]);
|
|
|
|
|
|
|
|
float v41 = (float)keyCode * v42;
|
|
|
|
float v44 = (float)(*elevationPtr) * v42;
|
|
|
|
do {
|
2022-10-05 00:11:47 -07:00
|
|
|
unsigned int tick = getTicks();
|
2022-05-19 01:51:26 -07:00
|
|
|
v44 += v43;
|
|
|
|
blitBufferToBuffer(
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getData() + v18 * (int)v44,
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getWidth(),
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getHeight() / 13,
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_GAUGE].getWidth(),
|
|
|
|
gElevatorWindowBuffer + _elevatorBackgroundFrmImage.getWidth() * 41 + 121,
|
|
|
|
_elevatorBackgroundFrmImage.getWidth());
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
windowRefresh(gElevatorWindow);
|
|
|
|
|
|
|
|
while (getTicksSince(tick) < delay) {
|
|
|
|
}
|
|
|
|
} while ((v43 <= 0.0 || v44 < v41) && (v43 > 0.0 || v44 > v41));
|
|
|
|
|
2022-10-05 00:11:47 -07:00
|
|
|
inputPauseForTocks(200);
|
2022-05-19 01:51:26 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
elevatorWindowFree();
|
|
|
|
|
|
|
|
if (keyCode != KEY_ESCAPE) {
|
|
|
|
const ElevatorDescription* description = &(elevatorDescription[keyCode]);
|
|
|
|
*mapPtr = description->map;
|
|
|
|
*elevationPtr = description->elevation;
|
|
|
|
*tilePtr = description->tile;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x43F324
|
2022-06-18 06:26:21 -07:00
|
|
|
static int elevatorWindowInit(int elevator)
|
2022-05-19 01:51:26 -07:00
|
|
|
{
|
|
|
|
gElevatorWindowIsoWasEnabled = isoDisable();
|
|
|
|
colorCycleDisable();
|
|
|
|
|
|
|
|
gameMouseSetCursor(MOUSE_CURSOR_ARROW);
|
|
|
|
gameMouseObjectsHide();
|
|
|
|
|
|
|
|
gameMouseSetCursor(MOUSE_CURSOR_ARROW);
|
|
|
|
scriptsDisable();
|
|
|
|
|
|
|
|
int index;
|
|
|
|
for (index = 0; index < ELEVATOR_FRM_COUNT; index++) {
|
2022-07-29 06:04:05 -07:00
|
|
|
int fid = buildFid(OBJ_TYPE_INTERFACE, gElevatorFrmIds[index], 0, 0, 0);
|
2022-09-24 07:03:50 -07:00
|
|
|
if (!_elevatorFrmImages[index].lock(fid)) {
|
2022-05-19 01:51:26 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index != ELEVATOR_FRM_COUNT) {
|
|
|
|
for (int reversedIndex = index - 1; reversedIndex >= 0; reversedIndex--) {
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[reversedIndex].unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gElevatorWindowIsoWasEnabled) {
|
|
|
|
isoEnable();
|
|
|
|
}
|
|
|
|
|
|
|
|
colorCycleEnable();
|
|
|
|
gameMouseSetCursor(MOUSE_CURSOR_ARROW);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ElevatorBackground* elevatorBackground = &(gElevatorBackgrounds[elevator]);
|
|
|
|
bool backgroundsLoaded = true;
|
|
|
|
|
2022-07-29 06:04:05 -07:00
|
|
|
int backgroundFid = buildFid(OBJ_TYPE_INTERFACE, elevatorBackground->backgroundFrmId, 0, 0, 0);
|
2022-09-24 07:03:50 -07:00
|
|
|
if (_elevatorBackgroundFrmImage.lock(backgroundFid)) {
|
2022-05-19 01:51:26 -07:00
|
|
|
if (elevatorBackground->panelFrmId != -1) {
|
2022-07-29 06:04:05 -07:00
|
|
|
int panelFid = buildFid(OBJ_TYPE_INTERFACE, elevatorBackground->panelFrmId, 0, 0, 0);
|
2022-09-24 07:03:50 -07:00
|
|
|
if (!_elevatorPanelFrmImage.lock(panelFid)) {
|
2022-05-19 01:51:26 -07:00
|
|
|
backgroundsLoaded = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
backgroundsLoaded = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!backgroundsLoaded) {
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorBackgroundFrmImage.unlock();
|
|
|
|
_elevatorPanelFrmImage.unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
for (int index = 0; index < ELEVATOR_FRM_COUNT; index++) {
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[index].unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gElevatorWindowIsoWasEnabled) {
|
|
|
|
isoEnable();
|
|
|
|
}
|
|
|
|
|
|
|
|
colorCycleEnable();
|
|
|
|
gameMouseSetCursor(MOUSE_CURSOR_ARROW);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-09-24 07:03:50 -07:00
|
|
|
int elevatorWindowX = (screenGetWidth() - _elevatorBackgroundFrmImage.getWidth()) / 2;
|
|
|
|
int elevatorWindowY = (screenGetHeight() - INTERFACE_BAR_HEIGHT - 1 - _elevatorBackgroundFrmImage.getHeight()) / 2;
|
2022-05-19 01:51:26 -07:00
|
|
|
gElevatorWindow = windowCreate(
|
2022-05-20 16:43:06 -07:00
|
|
|
elevatorWindowX,
|
|
|
|
elevatorWindowY,
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorBackgroundFrmImage.getWidth(),
|
|
|
|
_elevatorBackgroundFrmImage.getHeight(),
|
2022-05-19 01:51:26 -07:00
|
|
|
256,
|
|
|
|
WINDOW_FLAG_0x10 | WINDOW_FLAG_0x02);
|
|
|
|
if (gElevatorWindow == -1) {
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorBackgroundFrmImage.unlock();
|
|
|
|
_elevatorPanelFrmImage.unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
for (int index = 0; index < ELEVATOR_FRM_COUNT; index++) {
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[index].unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gElevatorWindowIsoWasEnabled) {
|
|
|
|
isoEnable();
|
|
|
|
}
|
|
|
|
|
|
|
|
colorCycleEnable();
|
|
|
|
gameMouseSetCursor(MOUSE_CURSOR_ARROW);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gElevatorWindowBuffer = windowGetBuffer(gElevatorWindow);
|
2022-09-24 07:03:50 -07:00
|
|
|
memcpy(gElevatorWindowBuffer, _elevatorBackgroundFrmImage.getData(), _elevatorBackgroundFrmImage.getWidth() * _elevatorBackgroundFrmImage.getHeight());
|
|
|
|
|
|
|
|
if (_elevatorPanelFrmImage.isLocked()) {
|
|
|
|
blitBufferToBuffer(_elevatorPanelFrmImage.getData(),
|
|
|
|
_elevatorPanelFrmImage.getWidth(),
|
|
|
|
_elevatorPanelFrmImage.getHeight(),
|
|
|
|
_elevatorPanelFrmImage.getWidth(),
|
|
|
|
gElevatorWindowBuffer + _elevatorBackgroundFrmImage.getWidth() * (_elevatorBackgroundFrmImage.getHeight() - _elevatorPanelFrmImage.getHeight()),
|
|
|
|
_elevatorBackgroundFrmImage.getWidth());
|
2022-05-19 01:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int y = 40;
|
|
|
|
for (int level = 0; level < gElevatorLevels[elevator]; level++) {
|
|
|
|
int btn = buttonCreate(gElevatorWindow,
|
|
|
|
13,
|
|
|
|
y,
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_BUTTON_DOWN].getWidth(),
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_BUTTON_DOWN].getHeight(),
|
2022-05-19 01:51:26 -07:00
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
500 + level,
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_BUTTON_UP].getData(),
|
|
|
|
_elevatorFrmImages[ELEVATOR_FRM_BUTTON_DOWN].getData(),
|
2022-05-19 01:51:26 -07:00
|
|
|
NULL,
|
|
|
|
BUTTON_FLAG_TRANSPARENT);
|
|
|
|
if (btn != -1) {
|
|
|
|
buttonSetCallbacks(btn, _gsound_red_butt_press, NULL);
|
|
|
|
}
|
|
|
|
y += 60;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x43F6D0
|
2022-06-18 06:26:21 -07:00
|
|
|
static void elevatorWindowFree()
|
2022-05-19 01:51:26 -07:00
|
|
|
{
|
|
|
|
windowDestroy(gElevatorWindow);
|
|
|
|
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorBackgroundFrmImage.unlock();
|
|
|
|
_elevatorPanelFrmImage.unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
for (int index = 0; index < ELEVATOR_FRM_COUNT; index++) {
|
2022-09-24 07:03:50 -07:00
|
|
|
_elevatorFrmImages[index].unlock();
|
2022-05-19 01:51:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
scriptsEnable();
|
|
|
|
|
|
|
|
if (gElevatorWindowIsoWasEnabled) {
|
|
|
|
isoEnable();
|
|
|
|
}
|
|
|
|
|
|
|
|
colorCycleEnable();
|
|
|
|
|
|
|
|
gameMouseSetCursor(MOUSE_CURSOR_ARROW);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x43F73C
|
2022-06-18 06:26:21 -07:00
|
|
|
static int elevatorGetLevelFromKeyCode(int elevator, int keyCode)
|
2022-05-19 01:51:26 -07:00
|
|
|
{
|
|
|
|
// TODO: Check if result is really unused?
|
|
|
|
toupper(keyCode);
|
|
|
|
|
|
|
|
for (int index = 0; index < ELEVATOR_LEVEL_MAX; index++) {
|
|
|
|
char c = gElevatorLevelLabels[elevator][index];
|
|
|
|
if (c == '\0') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == (char)(keyCode & 0xFF)) {
|
|
|
|
return index + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2022-08-03 02:34:13 -07:00
|
|
|
|
|
|
|
void elevatorsInit()
|
|
|
|
{
|
|
|
|
char* elevatorsFileName;
|
|
|
|
configGetString(&gSfallConfig, SFALL_CONFIG_MISC_KEY, SFALL_CONFIG_ELEVATORS_FILE_KEY, &elevatorsFileName);
|
|
|
|
if (elevatorsFileName != NULL && *elevatorsFileName == '\0') {
|
|
|
|
elevatorsFileName = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (elevatorsFileName != NULL) {
|
|
|
|
Config elevatorsConfig;
|
|
|
|
if (configInit(&elevatorsConfig)) {
|
|
|
|
if (configRead(&elevatorsConfig, elevatorsFileName, false)) {
|
|
|
|
char sectionKey[4];
|
|
|
|
char key[32];
|
|
|
|
for (int index = 0; index < ELEVATORS_MAX; index++) {
|
|
|
|
sprintf(sectionKey, "%d", index);
|
|
|
|
|
|
|
|
if (index >= ELEVATOR_COUNT) {
|
|
|
|
int levels = 0;
|
|
|
|
configGetInt(&elevatorsConfig, sectionKey, "ButtonCount", &levels);
|
|
|
|
gElevatorLevels[index] = std::clamp(levels, 2, ELEVATOR_LEVEL_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
configGetInt(&elevatorsConfig, sectionKey, "MainFrm", &(gElevatorBackgrounds[index].backgroundFrmId));
|
|
|
|
configGetInt(&elevatorsConfig, sectionKey, "ButtonsFrm", &(gElevatorBackgrounds[index].panelFrmId));
|
|
|
|
|
|
|
|
for (int level = 0; level < ELEVATOR_LEVEL_MAX; level++) {
|
|
|
|
sprintf(key, "ID%d", level + 1);
|
|
|
|
configGetInt(&elevatorsConfig, sectionKey, key, &(gElevatorDescriptions[index][level].map));
|
|
|
|
|
|
|
|
sprintf(key, "Elevation%d", level + 1);
|
|
|
|
configGetInt(&elevatorsConfig, sectionKey, key, &(gElevatorDescriptions[index][level].elevation));
|
|
|
|
|
|
|
|
sprintf(key, "Tile%d", level + 1);
|
|
|
|
configGetInt(&elevatorsConfig, sectionKey, key, &(gElevatorDescriptions[index][level].tile));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: Sfall implementation is slightly different. It uses one
|
|
|
|
// loop and stores `type` value in a separate lookup table. This
|
|
|
|
// value is then used in the certain places to remap from
|
|
|
|
// requested elevator to the new one.
|
|
|
|
for (int index = 0; index < ELEVATORS_MAX; index++) {
|
|
|
|
sprintf(sectionKey, "%d", index);
|
|
|
|
|
|
|
|
int type;
|
|
|
|
if (configGetInt(&elevatorsConfig, sectionKey, "Image", &type)) {
|
|
|
|
type = std::clamp(type, 0, ELEVATORS_MAX - 1);
|
|
|
|
if (index != type) {
|
|
|
|
memcpy(&(gElevatorBackgrounds[index]), &(gElevatorBackgrounds[type]), sizeof(*gElevatorBackgrounds));
|
|
|
|
memcpy(&(gElevatorLevels[index]), &(gElevatorLevels[type]), sizeof(*gElevatorLevels));
|
|
|
|
memcpy(&(gElevatorLevelLabels[index]), &(gElevatorLevelLabels[type]), sizeof(*gElevatorLevelLabels));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configFree(&elevatorsConfig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 05:43:44 -07:00
|
|
|
|
|
|
|
} // namespace fallout
|