scummvm/sword2/icons.cpp

251 lines
6.4 KiB
C++
Raw Normal View History

2003-07-28 01:44:38 +00:00
/* Copyright (C) 1994-2003 Revolution Software Ltd
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*/
2003-07-28 03:12:49 +00:00
#include "stdafx.h"
2003-09-17 16:59:12 +00:00
#include "defs.h"
2003-07-28 01:44:38 +00:00
#include "icons.h"
#include "interpreter.h"
#include "mouse.h"
2003-09-17 16:59:12 +00:00
// tempory list
2003-07-28 01:44:38 +00:00
menu_object temp_list[TOTAL_engine_pockets];
2003-09-17 16:59:12 +00:00
uint32 total_temp = 0;
2003-07-28 01:44:38 +00:00
menu_object master_menu_list[TOTAL_engine_pockets];
2003-09-17 16:59:12 +00:00
uint32 total_masters=0;
int32 FN_add_menu_object(int32 *params) {
2003-09-17 16:59:12 +00:00
// param 0 pointer to a menu_object structure to copy down
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// Zdebug("FN_add_menu_object icon res");
2003-07-28 01:44:38 +00:00
#ifdef _SWORD2_DEBUG
2003-07-28 01:44:38 +00:00
if (total_temp == TOTAL_engine_pockets)
2003-09-17 16:59:12 +00:00
Con_fatal_error("TOTAL_engine_pockets exceeded! (%s line %u)", __FILE__, __LINE__);
2003-07-28 01:44:38 +00:00
#endif
2003-09-17 16:59:12 +00:00
// copy the structure to our in-the-engine list
memcpy(&temp_list[total_temp], (uint8 *) params[0], sizeof(menu_object));
2003-07-28 01:44:38 +00:00
total_temp++;
2003-09-17 16:59:12 +00:00
// script continue
return IR_CONT;
2003-07-28 01:44:38 +00:00
}
2003-09-17 16:59:12 +00:00
int32 FN_refresh_inventory(int32 *params) {
2003-07-28 01:44:38 +00:00
// called from 'menu_look_or_combine' script in 'menu_master' object
2003-09-17 16:59:12 +00:00
// to update the menu to display a combined object while George runs
// voice-over. Note that 'object_held' must be set to the graphic of
// the combined object
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// can reset this now
COMBINE_BASE = 0;
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// so that the icon in 'object_held' is coloured while the rest are
// grey
examining_menu_icon = 1;
2003-07-28 01:44:38 +00:00
Build_top_menu();
2003-09-17 16:59:12 +00:00
examining_menu_icon = 0;
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// script continue
return IR_CONT;
2003-07-28 01:44:38 +00:00
}
void Build_top_menu(void) {
2003-09-17 16:59:12 +00:00
// create and start the inventory menu - NOW AT THE BOTTOM OF THE
// SCREEN!
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
uint32 null_pc = 0;
uint32 j, k;
uint8 icon_coloured;
uint8 *icon;
uint8 *head;
uint32 res;
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// reset temp list which will be totally rebuilt
total_temp = 0;
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// Zdebug("\nbuild top menu %d", total_masters);
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// clear the temp list before building a new temp list in-case list
// gets smaller. check each master
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
for (j = 0; j < TOTAL_engine_pockets; j++)
temp_list[j].icon_resource = 0;
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// Call menu builder script which will register all carried menu
// objects. Run the 'build_menu' script in the 'menu_master' object
2003-07-28 01:44:38 +00:00
head = res_man.Res_open(MENU_MASTER_OBJECT);
2003-09-17 16:59:12 +00:00
RunScript((char*) head, (char*) head, &null_pc);
2003-07-28 01:44:38 +00:00
res_man.Res_close(MENU_MASTER_OBJECT);
2003-09-17 16:59:12 +00:00
// Compare new with old. Anything in master thats not in new gets
// removed from master - if found in new too, remove from temp
if (total_masters) {
// check each master
for (j = 0; j < total_masters; j++) {
for (k = 0; k < TOTAL_engine_pockets; k++) {
res = 0;
// if master is in temp
if (master_menu_list[j].icon_resource == temp_list[k].icon_resource) {
// kill it in the temp
temp_list[k].icon_resource = 0;
res = 1;
2003-07-28 01:44:38 +00:00
break;
}
}
2003-09-17 16:59:12 +00:00
if (!res) {
// otherwise not in temp so kill in main
master_menu_list[j].icon_resource = 0;
// Zdebug("Killed menu %d",j);
2003-07-28 01:44:38 +00:00
}
}
}
2003-09-17 16:59:12 +00:00
// merge master downwards
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
total_masters = 0;
//check each master slot
for (j = 0; j < TOTAL_engine_pockets; j++) {
// not current end - meaning out over the end so move down
if (master_menu_list[j].icon_resource && j != total_masters) {
memcpy(&master_menu_list[total_masters++], &master_menu_list[j], sizeof(menu_object));
// moved down now so kill here
master_menu_list[j].icon_resource = 0;
} else if (master_menu_list[j].icon_resource) {
// skip full slots
2003-07-28 01:44:38 +00:00
total_masters++;
2003-09-17 16:59:12 +00:00
}
2003-07-28 01:44:38 +00:00
}
2003-09-17 16:59:12 +00:00
// add those new to menu still in temp but not yet in master to the
// end of the master
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// check each master slot
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
for (j = 0; j < TOTAL_engine_pockets; j++) {
if (temp_list[j].icon_resource) {
// here's a new temp
memcpy(&master_menu_list[total_masters++], &temp_list[j], sizeof(menu_object));
}
}
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// init top menu from master list
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
for (j = 0; j < 15; j++) {
if (master_menu_list[j].icon_resource) {
// 'res' is now the resource id of the icon
res = master_menu_list[j].icon_resource;
if (examining_menu_icon) {
// WHEN AN ICON HAS BEEN RIGHT-CLICKED FOR
// 'EXAMINE' - SELECTION COLOURED, THE REST
// GREYED OUT
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// If this is the icon being examined, make
// it coloured. If not, grey this one out.
if (res == OBJECT_HELD)
icon_coloured = 1;
2003-07-28 01:44:38 +00:00
else
2003-09-17 16:59:12 +00:00
icon_coloured = 0;
} else if (COMBINE_BASE) {
// WHEN ONE MENU OBJECT IS BEING USED WITH
// ANOTHER - BOTH TO BE COLOURED, THE REST
// GREYED OUT
// if this if either of the icons being
// combined...
if (res == OBJECT_HELD || res == COMBINE_BASE)
icon_coloured = 1;
else
icon_coloured = 0;
} else {
// NORMAL ICON SELECTION - SELECTION GREYED
// OUT, THE REST COLOURED
// If this is the selction, grey it out. If
// not, make it coloured.
if (res == OBJECT_HELD)
icon_coloured = 0;
else
icon_coloured = 1;
2003-07-28 01:44:38 +00:00
}
2003-09-17 16:59:12 +00:00
icon = res_man.Res_open(master_menu_list[j].icon_resource) + sizeof(_standardHeader);
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
// The coloured icon is stored directly after the
// greyed out one.
if (icon_coloured)
icon += (RDMENU_ICONWIDE * RDMENU_ICONDEEP);
2003-07-28 01:44:38 +00:00
SetMenuIcon(RDMENU_BOTTOM, j, icon);
2003-09-17 16:59:12 +00:00
res_man.Res_close(res);
} else {
// no icon here
SetMenuIcon(RDMENU_BOTTOM, j, NULL);
// Zdebug(" NULL for %d", j);
2003-07-28 01:44:38 +00:00
}
}
ShowMenu(RDMENU_BOTTOM);
}
void Build_system_menu(void) {
2003-09-17 16:59:12 +00:00
// start a fresh top system menu
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
uint8 *icon;
int j;
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
uint32 icon_list[5] = {
2003-07-28 01:44:38 +00:00
OPTIONS_ICON,
QUIT_ICON,
SAVE_ICON,
RESTORE_ICON,
RESTART_ICON
};
2003-09-17 16:59:12 +00:00
// build them all high in full colour - when one is clicked on all the
// rest will grey out
for (j = 0; j < ARRAYSIZE(icon_list); j++) {
icon = res_man.Res_open(icon_list[j]) + sizeof(_standardHeader);
// The only case when an icon is grayed is when the player
// is dead. Then SAVE is not available.
2003-07-28 01:44:38 +00:00
2003-09-17 16:59:12 +00:00
if (!DEAD || icon_list[j] != SAVE_ICON)
icon += (RDMENU_ICONWIDE * RDMENU_ICONDEEP);
2003-07-28 01:44:38 +00:00
SetMenuIcon(RDMENU_TOP, j, icon);
2003-09-17 16:59:12 +00:00
res_man.Res_close(icon_list[j]);
2003-07-28 01:44:38 +00:00
}
ShowMenu(RDMENU_TOP);
}