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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef STARK_RESOURCES_ANIM_H
#define STARK_RESOURCES_ANIM_H
#include "common/path.h"
#include "common/rect.h"
#include "common/str.h"
#include "engines/stark/resources/object.h"
namespace Common {
class SeekableReadStream;
}
namespace Stark {
class SkeletonAnim;
class VisualActor;
class VisualProp;
class VisualSmacker;
class Visual;
namespace Formats {
class XRCReadStream;
}
namespace Resources {
class Direction;
class Image;
class Item;
class ItemVisual;
/**
* Animation base class
*
* Animations provide a time dependent visual state to Items
*/
class Anim : public Object {
public:
static const Type::ResourceType TYPE = Type::kAnim;
enum SubType {
kAnimImages = 1,
kAnimProp = 2,
kAnimVideo = 3,
kAnimSkeleton = 4
};
enum ActionUsage {
kActionUsagePassive = 1,
kActionUsageActive = 2
};
enum UIUsage {
kUIUsageInventory = 1,
kUIUsageUseCursorPassive = 4,
kUIUsageUseCursorActive = 5
};
enum ActorActivity {
kActorActivityIdle = 1,
kActorActivityWalk = 2,
kActorActivityTalk = 3,
kActorActivityRun = 6,
kActorActivityIdleAction = 10
};
/** Anim factory */
static Object *construct(Object *parent, byte subType, uint16 index, const Common::String &name);
Anim(Object *parent, byte subType, uint16 index, const Common::String &name);
~Anim() override;
// Resource API
void readData(Formats::XRCReadStream *stream) override;
/** Get current displayed frame */
uint32 getCurrentFrame() { return _currentFrame; }
/** Sets the animation frame to be displayed */
virtual void selectFrame(uint32 frameIndex);
/** Obtain the Visual to be used to render the animation */
virtual Visual *getVisual() = 0;
/** Associate the animation to an Item */
virtual void applyToItem(Item *item);
/** Dissociate the animation from an item */
virtual void removeFromItem(Item *item);
/** Check is the animation is being used by an item */
bool isInUse() const;
/** Obtain the purpose of this anim */
uint32 getActivity() const;
/** Return the hotspot index for a point given in relative coordinates */
virtual int getPointHotspotIndex(const Common::Point &point) const;
/** Get the hotspot position for a given index of a pat-table */
virtual Common::Point getHotspotPosition(uint index) const { return Common::Point(-1, -1); }
/**
* Play the animation as an action for an item.
*
* This sets up a callback to the item for when the animation completes.
*/
virtual void playAsAction(ItemVisual *item);
/** Checks if the elapsed time since the animation start is greater than a specified duration */
virtual bool isAtTime(uint32 time) const;
/** Get the anim movement speed in units per seconds */
virtual uint32 getMovementSpeed() const;
/** Get the chance the animation has to play among other idle actions from the same anim hierarchy */
virtual uint32 getIdleActionFrequency() const;
/**
* When this animation is playing as an action should a new animation
* be chosen for the item as soon as this one completes based on
* the item's activity?
* This is true by default, but setting it to false allows scripts
* to chose precisely the new animation to play, and to start it
* in the same frame as this one is removed.
*/
virtual void shouldResetItem(bool resetItem);
/**
* Remove this action animation for the item and select a new animation
* based on the item's current activity.
*/
virtual void resetItem();
/**
* Is this animation done playing.
*
* Only valid for animations started with playAsAction.
*/
virtual bool isDone() const;
protected:
void printData() override;
uint32 _activity;
uint32 _currentFrame;
uint32 _numFrames;
int32 _refCount;
};
/**
* Displays still images controlled by an AnimScript
*/
class AnimImages : public Anim {
public:
AnimImages(Object *parent, byte subType, uint16 index, const Common::String &name);
~AnimImages() override;
// Resource API
void readData(Formats::XRCReadStream *stream) override;
void onAllLoaded() override;
void saveLoad(ResourceSerializer *serializer) override;
// Anim API
void selectFrame(uint32 frameIndex) override;
Visual *getVisual() override;
int getPointHotspotIndex(const Common::Point &point) const override;
Common::Point getHotspotPosition(uint index) const override;
protected:
void printData() override;
float _field_3C;
uint32 _currentDirection;
Common::Array<Direction *> _directions;
Image *_currentFrameImage;
};
class AnimProp : public Anim {
public:
AnimProp(Object *parent, byte subType, uint16 index, const Common::String &name);
~AnimProp() override;
// Resource API
void readData(Formats::XRCReadStream *stream) override;
void onPostRead() override;
// Anim API
Visual *getVisual() override;
uint32 getMovementSpeed() const override;
protected:
void printData() override;
Common::String _field_3C;
Common::Array<Common::Path> _meshFilenames;
Common::Path _textureFilename;
uint32 _movementSpeed;
Common::Path _archiveName;
VisualProp *_visual;
};
/**
* Displays a Smacker video
*/
class AnimVideo : public Anim {
public:
AnimVideo(Object *parent, byte subType, uint16 index, const Common::String &name);
~AnimVideo() override;
// Resource API
void readData(Formats::XRCReadStream *stream) override;
void onAllLoaded() override;
void onGameLoop() override;
void onEnginePause(bool pause) override;
void saveLoadCurrent(ResourceSerializer *serializer) override;
// Anim API
Visual *getVisual() override;
void playAsAction(ItemVisual *item) override;
void shouldResetItem(bool resetItem) override;
void resetItem() override;
bool isAtTime(uint32 time) const override;
bool isDone() const override { return _done || !isInUse(); }
protected:
typedef Common::Array<Common::Point> PointArray;
typedef Common::Array<Common::Rect> RectArray;
void printData() override;
Common::SeekableReadStream *openOverrideFile(const Common::String &extension) const;
/** Update the position of the video for the current frame */
void updateSmackerPosition();
Common::Path _smackerFile;
Common::Path _archiveName;
VisualSmacker *_smacker;
uint32 _width;
uint32 _height;
PointArray _positions;
RectArray _sizes;
int32 _frameRateOverride;
bool _preload;
bool _loop;
bool _done;
ItemVisual *_actionItem;
bool _shouldResetItem;
};
/**
* Animates a 3D mesh skeleton
*/
class AnimSkeleton : public Anim {
public:
AnimSkeleton(Object *parent, byte subType, uint16 index, const Common::String &name);
~AnimSkeleton() override;
// Resource API
void readData(Formats::XRCReadStream *stream) override;
void onPostRead() override;
void onAllLoaded() override;
void onGameLoop() override;
void onPreDestroy() override;
// Anim API
void applyToItem(Item *item) override;
void removeFromItem(Item *item) override;
Visual *getVisual() override;
void playAsAction(ItemVisual *item) override;
bool isAtTime(uint32 time) const override;
bool isDone() const override { return _done || !isInUse(); }
uint32 getMovementSpeed() const override;
uint32 getIdleActionFrequency() const override;
void shouldResetItem(bool resetItem) override;
void resetItem() override;
/** Get the duration in milliseconds before the animation loops ends */
uint32 getRemainingTime() const;
/** Get the position in the animation loop in milliseconds */
uint32 getCurrentTime() const;
protected:
void printData() override;
bool _castsShadow;
Common::Path _archiveName;
Common::Path _animFilename;
bool _loop;
uint32 _movementSpeed;
uint32 _idleActionFrequency;
uint32 _totalTime;
uint32 _currentTime;
bool _done;
SkeletonAnim *_skeletonAnim;
VisualActor *_visual;
ItemVisual *_actionItem;
bool _shouldResetItem;
};
} // End of namespace Resources
} // End of namespace Stark
#endif // STARK_RESOURCES_ANIM_H
|