2016-10-05 22:59:11 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLADERUNNER_SUSPECTS_DATABASE_H
|
|
|
|
#define BLADERUNNER_SUSPECTS_DATABASE_H
|
|
|
|
#include "common/array.h"
|
|
|
|
|
|
|
|
namespace BladeRunner {
|
|
|
|
|
|
|
|
class BladeRunnerEngine;
|
|
|
|
class TextResource;
|
|
|
|
|
|
|
|
class SuspectDatabaseEntry {
|
2018-01-14 11:12:06 +00:00
|
|
|
static const int kMOClueCount = 10;
|
|
|
|
static const int kWhereaboutsClueCount = 10;
|
|
|
|
static const int kReplicantClueCount = 20;
|
|
|
|
static const int kNonReplicantClueCount = 20;
|
|
|
|
static const int kOtherClueCount = 20;
|
|
|
|
static const int kIdentityClueCount = 10;
|
|
|
|
static const int kPhotoClueCount = 6;
|
|
|
|
|
2018-01-28 19:59:12 +00:00
|
|
|
struct Photo {
|
|
|
|
int clueId;
|
|
|
|
int shapeId;
|
|
|
|
int notUsed;
|
|
|
|
};
|
|
|
|
|
2016-10-05 22:59:11 +00:00
|
|
|
BladeRunnerEngine *_vm;
|
|
|
|
|
|
|
|
int _actorId;
|
|
|
|
int _sex;
|
2018-01-14 11:12:06 +00:00
|
|
|
|
2018-01-28 19:59:12 +00:00
|
|
|
int _moClues[kMOClueCount];
|
|
|
|
int _whereaboutsClues[kWhereaboutsClueCount];
|
|
|
|
int _replicantClues[kReplicantClueCount];
|
|
|
|
int _nonReplicantClues[kNonReplicantClueCount];
|
|
|
|
int _otherClues[kOtherClueCount];
|
|
|
|
int _identityClues[kIdentityClueCount];
|
|
|
|
Photo _photoClues[kPhotoClueCount];
|
2018-01-14 11:12:06 +00:00
|
|
|
|
|
|
|
int _moClueCount;
|
|
|
|
int _whereaboutsClueCount;
|
|
|
|
int _replicantClueCount;
|
|
|
|
int _nonReplicantClueCount;
|
|
|
|
int _otherClueCount;
|
|
|
|
int _identityClueCount;
|
|
|
|
int _photoClueCount;
|
2016-10-05 22:59:11 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SuspectDatabaseEntry(BladeRunnerEngine *_vm);
|
|
|
|
~SuspectDatabaseEntry();
|
|
|
|
|
|
|
|
void setActor(int actorId);
|
|
|
|
void setSex(int sex);
|
2018-01-28 19:59:12 +00:00
|
|
|
|
2016-10-05 22:59:11 +00:00
|
|
|
bool addMOClue(int clueId);
|
|
|
|
bool addWhereaboutsClue(int clueId);
|
|
|
|
bool addReplicantClue(int clueId);
|
|
|
|
bool addNonReplicantClue(int clueId);
|
|
|
|
bool addOtherClue(int clueId);
|
|
|
|
bool addIdentityClue(int clueId);
|
2018-01-28 19:59:12 +00:00
|
|
|
bool addPhotoClue(int shapeId, int clueId);
|
|
|
|
|
|
|
|
const char *getName() const;
|
|
|
|
int getSex() const;
|
|
|
|
|
|
|
|
bool hasMOClue(int clueId) const;
|
|
|
|
bool hasWhereaboutsClue(int clueId) const;
|
|
|
|
bool hasReplicantClue(int clueId) const;
|
|
|
|
bool hasNonReplicantClue(int clueId) const;
|
|
|
|
bool hasOtherClue(int clueId) const;
|
|
|
|
bool hasIdentityClue(int clueId) const;
|
|
|
|
bool hasClue(int clueId) const;
|
|
|
|
|
|
|
|
int getPhotoCount() const;
|
|
|
|
int getPhotoClueId(int photoId) const;
|
|
|
|
int getPhotoShapeId(int photoId) const;
|
|
|
|
int getPhotoNotUsed(int photoId) const;
|
2016-10-05 22:59:11 +00:00
|
|
|
|
|
|
|
void reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
class SuspectsDatabase {
|
|
|
|
BladeRunnerEngine *_vm;
|
|
|
|
|
2018-01-28 19:59:12 +00:00
|
|
|
Common::Array<SuspectDatabaseEntry *> _suspects;
|
2016-10-05 22:59:11 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SuspectsDatabase(BladeRunnerEngine *_vm, int size);
|
|
|
|
~SuspectsDatabase();
|
|
|
|
|
|
|
|
SuspectDatabaseEntry *get(int suspectId);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace BladeRunner
|
|
|
|
|
|
|
|
#endif
|