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.
|
2016-09-03 12:46:38 +02:00
|
|
|
*
|
2013-06-24 00:43:57 -05:00
|
|
|
* 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.
|
2016-09-03 12:46:38 +02:00
|
|
|
*
|
2013-06-24 00:43:57 -05:00
|
|
|
* 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
|
|
|
|
|
2014-06-14 15:18:24 +07:00
|
|
|
#include "zvision/scripting/actions.h"
|
2013-08-02 15:30:02 -05:00
|
|
|
|
2013-06-24 00:43:57 -05:00
|
|
|
#include "common/list.h"
|
2013-08-02 15:30:02 -05:00
|
|
|
#include "common/ptr.h"
|
2013-06-24 00:43:57 -05:00
|
|
|
|
2013-08-20 20:48:34 -05:00
|
|
|
namespace ZVision {
|
2013-07-11 00:08:00 -05:00
|
|
|
|
2013-08-02 15:30:02 -05:00
|
|
|
struct Puzzle {
|
2014-12-19 17:06:47 +06:00
|
|
|
Puzzle() : key(0), addedBySetState(false) {}
|
2013-08-20 21:26:53 -05:00
|
|
|
|
2013-08-20 20:48:34 -05:00
|
|
|
~Puzzle() {
|
2013-10-01 17:27:03 -05:00
|
|
|
for (Common::List<ResultAction *>::iterator iter = resultActions.begin(); iter != resultActions.end(); ++iter) {
|
2013-10-01 17:15:44 -05:00
|
|
|
delete *iter;
|
2013-08-20 20:48:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 22:16:21 -05:00
|
|
|
/** How criteria should be decided */
|
|
|
|
enum CriteriaOperator {
|
2014-02-24 20:37:58 +07:00
|
|
|
EQUAL_TO,
|
|
|
|
NOT_EQUAL_TO,
|
|
|
|
GREATER_THAN,
|
|
|
|
LESS_THAN
|
2013-07-29 22:16:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Criteria for a Puzzle result to be fired */
|
2013-08-18 15:38:56 -05:00
|
|
|
struct CriteriaEntry {
|
2013-07-29 22:16:21 -05:00
|
|
|
/** The key of a global state */
|
|
|
|
uint32 key;
|
2013-10-20 18:39:06 +00:00
|
|
|
/**
|
2013-07-29 22:16:21 -05:00
|
|
|
* What we're comparing the value of the global state against
|
|
|
|
* This can either be a pure value or it can be the key of another global state
|
|
|
|
*/
|
|
|
|
uint32 argument;
|
|
|
|
/** How to do the comparison */
|
|
|
|
CriteriaOperator criteriaOperator;
|
|
|
|
/** Whether 'argument' is the key of a global state (true) or a pure value (false) */
|
|
|
|
bool argumentIsAKey;
|
|
|
|
};
|
2013-07-29 21:43:49 -05:00
|
|
|
|
2013-07-29 22:16:21 -05:00
|
|
|
enum StateFlags {
|
2014-02-24 20:37:58 +07:00
|
|
|
ONCE_PER_INST = 0x01,
|
2014-03-05 18:47:52 +07:00
|
|
|
DISABLED = 0x02,
|
|
|
|
DO_ME_NOW = 0x04
|
2013-07-29 22:16:21 -05:00
|
|
|
};
|
|
|
|
|
2013-07-01 17:16:32 -05:00
|
|
|
uint32 key;
|
2013-08-18 15:38:56 -05:00
|
|
|
Common::List<Common::List <CriteriaEntry> > criteriaList;
|
2013-07-03 18:24:06 -05:00
|
|
|
// This has to be list of pointers because ResultAction is abstract
|
2013-08-18 19:51:27 -05:00
|
|
|
Common::List<ResultAction *> resultActions;
|
2013-10-25 08:13:59 +00:00
|
|
|
bool addedBySetState;
|
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
|