1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
/***************************************************************************
* Copyright (C) 2005-2011 by the FIFE team *
* http://www.fifengine.net *
* This file is part of FIFE. *
* *
* FIFE is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
%module fife
%{
#include "model/structures/instance.h"
%}
%include "model/metamodel/modelcoords.i"
%include "model/metamodel/ivisual.i"
%include "util/structures/utilstructures.i"
%include "util/base/utilbase.i"
%include "location.i"
namespace FIFE {
class Layer;
class Action;
class Object;
class Instance;
%feature("director") InstanceActionListener;
class InstanceActionListener {
public:
virtual ~InstanceActionListener() {};
virtual void onInstanceActionFinished(Instance* instance, Action* action) = 0;
virtual void onInstanceActionFrame(Instance* instance, Action* action, int32_t frame) = 0;
};
enum InstanceChangeType {
ICHANGE_NO_CHANGES = 0x0000,
ICHANGE_LOC = 0x0001,
ICHANGE_FACING_LOC = 0x0002,
ICHANGE_SPEED = 0x0004,
ICHANGE_ACTION = 0x0008,
ICHANGE_TIME_MULTIPLIER = 0x0010,
ICHANGE_SAYTEXT = 0x0020,
ICHANGE_ROTATION = 0x0040,
ICHANGE_BLOCK = 0x0080,
ICHANGE_CELL = 0x0100
};
typedef uint32_t InstanceChangeInfo;
%feature("director") InstanceChangeListener;
class InstanceChangeListener {
public:
virtual ~InstanceChangeListener() {};
virtual void onInstanceChanged(Instance* instance, InstanceChangeInfo info) = 0;
};
class Instance : public FifeClass {
public:
Instance(Object* object, const Location& location, const std::string& identifier="");
virtual ~Instance();
const std::string& getId();
void setId(const std::string& identifier="");
Object* getObject();
void setLocation(const Location& loc);
Location getLocation() const;
Location& getLocationRef();
Location getTargetLocation() const;
void setRotation(int32_t);
int32_t getRotation() const;
void setBlocking(bool blocking);
bool isBlocking() const;
void setOverrideBlocking(bool overblock);
bool isOverrideBlocking() const;
void addActionListener(InstanceActionListener* listener);
void removeActionListener(InstanceActionListener* listener);
void addChangeListener(InstanceChangeListener* listener);
void removeChangeListener(InstanceChangeListener* listener);
Action* getCurrentAction() const;
double getMovementSpeed() const;
void setFacingLocation(const Location& loc);
Location getFacingLocation();
Location& getFacingLocationRef();
uint32_t getActionRuntime();
void setActionRuntime(uint32_t time_offset);
void move(const std::string& action_name, const Location& target, const double speed);
void act(const std::string& action_name, const Location& direction, bool repeating=false);
void follow(const std::string& action_name, Instance* leader, const double speed);
void say(const std::string& text, uint32_t duration=0);
void setTimeMultiplier(float multip);
float getTimeMultiplier();
uint32_t getRuntime();
void refresh();
InstanceChangeInfo getChangeInfo();
void setVisual(IVisual* visual);
template<typename T> T* getVisual() const;
};
}
namespace std {
%template(InstanceVector) vector<FIFE::Instance*>;
%template(InstanceList) list<FIFE::Instance*>;
}
|