2013-06-24 00:43:57 -05: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 ZVISION_PUZZLE_H
|
|
|
|
#define ZVISION_PUZZLE_H
|
|
|
|
|
|
|
|
#include "common/list.h"
|
|
|
|
|
|
|
|
namespace ZVision {
|
|
|
|
|
2013-07-11 00:08:00 -05:00
|
|
|
class ResultAction;
|
|
|
|
|
2013-06-24 00:43:57 -05:00
|
|
|
/** How criteria should be decided */
|
|
|
|
enum CriteriaOperator {
|
|
|
|
EQUAL_TO,
|
|
|
|
NOT_EQUAL_TO,
|
|
|
|
GREATER_THAN,
|
|
|
|
LESS_THAN
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Criteria for a Puzzle result to be fired */
|
|
|
|
struct Criteria {
|
2013-07-01 17:16:32 -05:00
|
|
|
/** The key of a global state */
|
|
|
|
uint32 key;
|
2013-06-24 00:43:57 -05:00
|
|
|
/**
|
|
|
|
* What we're comparing the value of the global state against
|
2013-07-01 17:16:32 -05:00
|
|
|
* This can either be a pure value or it can be the key of another global state
|
2013-06-24 00:43:57 -05:00
|
|
|
*/
|
|
|
|
uint32 argument;
|
|
|
|
/** How to do the comparison */
|
|
|
|
CriteriaOperator criteriaOperator;
|
2013-07-11 00:08:00 -05:00
|
|
|
/** Whether 'argument' is the key of a global state (true) or a pure value (false) */
|
|
|
|
bool argumentIsAKey;
|
2013-06-24 00:43:57 -05:00
|
|
|
};
|
|
|
|
|
2013-07-07 16:32:38 +03:00
|
|
|
enum StateFlags {
|
2013-06-24 00:43:57 -05:00
|
|
|
ONCE_PER_INST = 0x01,
|
|
|
|
DO_ME_NOW = 0x02,
|
|
|
|
DISABLED = 0x04
|
|
|
|
};
|
|
|
|
|
2013-07-29 21:43:49 -05:00
|
|
|
class Puzzle {
|
|
|
|
public:
|
|
|
|
Puzzle() {}
|
2013-07-29 22:15:24 -05:00
|
|
|
~Puzzle();
|
|
|
|
Puzzle(const Puzzle &other);
|
2013-07-29 21:43:49 -05:00
|
|
|
|
2013-07-01 17:16:32 -05:00
|
|
|
uint32 key;
|
2013-06-24 00:43:57 -05:00
|
|
|
Common::List<Criteria> criteriaList;
|
2013-07-03 18:24:06 -05:00
|
|
|
// This has to be list of pointers because ResultAction is abstract
|
|
|
|
Common::List<ResultAction *> resultActions;
|
2013-06-24 00:43:57 -05:00
|
|
|
byte flags;
|
2013-07-11 00:44:23 -05:00
|
|
|
|
|
|
|
// Used by the ScriptManager to allow unique-ification of _referenceTable
|
|
|
|
// The unique-ification is done by sorting, then iterating and removing duplicates
|
|
|
|
// The sort uses operator<
|
2013-07-24 11:36:53 -05:00
|
|
|
inline bool operator<(const Puzzle &other) const {
|
2013-07-11 00:44:23 -05:00
|
|
|
return key < other.key;
|
|
|
|
}
|
2013-06-24 00:43:57 -05:00
|
|
|
};
|
|
|
|
|
2013-06-24 13:38:40 -05:00
|
|
|
} // End of namespace ZVision
|
2013-06-24 00:43:57 -05:00
|
|
|
|
|
|
|
#endif
|