scummvm/engines/lastexpress/entities/tables.cpp

219 lines
5.7 KiB
C++

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "lastexpress/entities/tables.h"
#include "lastexpress/game/entities.h"
#include "lastexpress/game/logic.h"
#include "lastexpress/game/object.h"
#include "lastexpress/game/savepoint.h"
#include "lastexpress/game/state.h"
#include "lastexpress/sound/queue.h"
#include "lastexpress/lastexpress.h"
namespace LastExpress {
Tables::Tables(LastExpressEngine *engine, EntityIndex id) : Entity(engine, id) {
_id = id;
ADD_CALLBACK_FUNCTION(Tables, chapter1);
ADD_CALLBACK_FUNCTION(Tables, chapter2);
ADD_CALLBACK_FUNCTION(Tables, chapter3);
ADD_CALLBACK_FUNCTION(Tables, chapter4);
ADD_CALLBACK_FUNCTION(Tables, chapter5);
ADD_CALLBACK_FUNCTION(Tables, draw);
}
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_FUNCTION(1, Tables, chapter1)
if (savepoint.action == kActionDefault) {
if (_id == kEntityTables2)
getSound()->playSoundWithSubtitles("LOOP8A.SND", kFlagLoop, kEntityTables2);
setup_draw();
}
IMPLEMENT_FUNCTION_END
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_FUNCTION(2, Tables, chapter2)
if (savepoint.action == kActionDefault) {
if (_id == kEntityTables2)
getSound()->playSoundWithSubtitles("LOOP8A.SND", kFlagLoop, kEntityTables2);
setup_draw();
}
IMPLEMENT_FUNCTION_END
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_FUNCTION(3, Tables, chapter3)
if (savepoint.action == kActionDefault) {
if (_id == kEntityTables2)
getSound()->playSoundWithSubtitles("LOOP8A.SND", kFlagLoop, kEntityTables2);
setup_draw();
}
IMPLEMENT_FUNCTION_END
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_FUNCTION(4, Tables, chapter4)
if (savepoint.action == kActionDefault) {
if (_id == kEntityTables2)
getSound()->playSoundWithSubtitles("LOOP8A.SND", kFlagLoop, kEntityTables2);
setup_draw();
}
IMPLEMENT_FUNCTION_END
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_FUNCTION(5, Tables, chapter5)
if (savepoint.action == kActionDefault) {
if (_id == kEntityTables2 && getSoundQueue()->isBuffered(kEntityTables2))
getSoundQueue()->processEntry(kEntityTables2);
setup_draw();
}
IMPLEMENT_FUNCTION_END
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_FUNCTION(6, Tables, draw)
switch (savepoint.action) {
default:
break;
case kActionNone:
// Only applicable to Tables2 entity
if (_id != kEntityTables2)
break;
switch (getProgress().chapter) {
default:
break;
case kChapter1:
if (getState()->time > kTime1165500 && !params->param1) {
params->param1 = 1;
getSoundQueue()->processEntry(kEntityTables2);
}
break;
case kChapter3:
if (getState()->time > kTime2052000 && !params->param2) {
params->param2 = 1;
getSoundQueue()->processEntry(kEntityTables2);
}
break;
case kChapter4:
if (getState()->time > kTime2488500 && !params->param3) {
params->param3 = 1;
getSoundQueue()->processEntry(kEntityTables2);
}
break;
}
break;
case kActionDefault:
getData()->location = kLocationInsideCompartment;
getData()->car = kCarRestaurant;
switch(_id) {
default:
break;
case kEntityTables0:
getData()->entityPosition = kPosition_3970;
getEntities()->drawSequenceLeft(_id, "001P");
break;
case kEntityTables1:
getData()->entityPosition = kPosition_3970;
getEntities()->drawSequenceLeft(_id, "005J");
break;
case kEntityTables2:
getData()->entityPosition = kPosition_4690;
getEntities()->drawSequenceLeft(_id, "009G");
break;
case kEntityTables3:
getData()->entityPosition = kPosition_4690;
getEntities()->drawSequenceLeft(_id, "010M");
break;
case kEntityTables4:
getData()->entityPosition = kPosition_5420;
getEntities()->drawSequenceLeft(_id, "014F");
break;
case kEntityTables5:
getData()->entityPosition = kPosition_5420;
getEntities()->drawSequenceLeft(_id, "024D");
break;
}
break;
case kActionDrawTablesWithChairs:
if (!strcmp(savepoint.param.charValue, "")) {
getEntities()->drawSequenceLeft(_id, savepoint.param.charValue);
} else {
switch(_id) {
default:
break;
case kEntityTables0:
getEntities()->drawSequenceLeft(_id, "001P");
break;
case kEntityTables1:
getEntities()->drawSequenceLeft(_id, "005J");
break;
case kEntityTables2:
getEntities()->drawSequenceLeft(_id, "009G");
break;
case kEntityTables3:
getEntities()->drawSequenceLeft(_id, "010M");
break;
case kEntityTables4:
getEntities()->drawSequenceLeft(_id, "014F");
break;
case kEntityTables5:
getEntities()->drawSequenceLeft(_id, "024D");
break;
}
}
break;
case kAction136455232:
getEntities()->drawSequenceLeft(_id, "BLANK");
break;
}
IMPLEMENT_FUNCTION_END
} // End of namespace LastExpress