2011-08-03 20:05:33 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2007, 2010 - Bit-Blot
|
|
|
|
|
|
|
|
This file is part of Aquaria.
|
|
|
|
|
|
|
|
Aquaria 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2017-01-20 03:51:38 +00:00
|
|
|
#ifndef RENDER_OBJECT_H
|
|
|
|
#define RENDER_OBJECT_H
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
#include "Base.h"
|
|
|
|
#include "Texture.h"
|
Script interface improvements & extensions.
- Pointer typechecks are now enabled by default.
- enabled all script warnings for non-FULL or DEMO builds by default
- Added generic obj_* functions that operate on any type of RenderObject.
These give quite low-level control about the renderer, and are quite
dangerous too.
Subsequently, many functions sharing the same code (*_setPosition, for example)
could be removed, and simply call the generic functions after a type check.
- Added interface function deathNotify(). The original logic of death
notifiers was never used, so i thought i'd make use of it.
This is useful in scripts to safely drop dangling pointers.
- removed sendEntityMessage, entity_setCollideWithAvatar, entity_setTouchDamage,
which were essentially no-ops.
- Replaced all unnecessary luaReturnNum(0) and luaReturnInt(0),
now it does only push a return value on the stack if the function
is actually supposed to have a retun value.
- Allow variadic calling of entity_msg(). Now any parameters can be passed
to the function, and the target entity will receive all of them.
Any values returned from the entity's msg() callback will be returned
by entity_msg() to the original caller. This allows nice RPC-like
entity communication.
- fixed possible crash in debugLog, bone_update, entity_debugText
- added an override function for loadfile() that is case-insensitive like dofile()
- entity_createEntity returns the created entity now
- spawnParticleEffect returns the associated RenderObject
- Added some text rendering functions
- Added beam_setFirer()
- removed the underflow check in avatar_decrLeaches() I added earlier
- added a panic function for Lua.
- added the Lua debug library
- fixed a stupid typo in ScriptObject::isType() that made the type checks a lot less accurate
- misc stuff I forgot
2012-02-05 19:22:54 +00:00
|
|
|
#include "ScriptObject.h"
|
2016-07-09 02:18:40 +00:00
|
|
|
#include <list>
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
class Core;
|
|
|
|
class StateData;
|
2016-07-09 02:18:40 +00:00
|
|
|
class Texture;
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
enum RenderObjectFlags
|
|
|
|
{
|
|
|
|
RO_CLEAR = 0x00,
|
|
|
|
RO_RENDERBORDERS = 0x01,
|
|
|
|
RO_NEXT = 0x02,
|
|
|
|
RO_MOTIONBLUR = 0x04
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AutoSize
|
|
|
|
{
|
|
|
|
AUTO_VIRTUALWIDTH = -101,
|
|
|
|
AUTO_VIRTUALHEIGHT = -102
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ParentManaged
|
|
|
|
{
|
|
|
|
PM_NONE = 0,
|
|
|
|
PM_POINTER = 1,
|
|
|
|
PM_STATIC = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ChildOrder
|
|
|
|
{
|
|
|
|
CHILD_BACK = 0,
|
|
|
|
CHILD_FRONT = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
enum RenderBeforeParent
|
|
|
|
{
|
|
|
|
RBP_NONE = -1,
|
|
|
|
RBP_OFF = 0,
|
|
|
|
RBP_ON = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MotionBlurFrame
|
|
|
|
{
|
|
|
|
Vector position;
|
|
|
|
float rotz;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RenderObjectLayer;
|
|
|
|
|
Script interface improvements & extensions.
- Pointer typechecks are now enabled by default.
- enabled all script warnings for non-FULL or DEMO builds by default
- Added generic obj_* functions that operate on any type of RenderObject.
These give quite low-level control about the renderer, and are quite
dangerous too.
Subsequently, many functions sharing the same code (*_setPosition, for example)
could be removed, and simply call the generic functions after a type check.
- Added interface function deathNotify(). The original logic of death
notifiers was never used, so i thought i'd make use of it.
This is useful in scripts to safely drop dangling pointers.
- removed sendEntityMessage, entity_setCollideWithAvatar, entity_setTouchDamage,
which were essentially no-ops.
- Replaced all unnecessary luaReturnNum(0) and luaReturnInt(0),
now it does only push a return value on the stack if the function
is actually supposed to have a retun value.
- Allow variadic calling of entity_msg(). Now any parameters can be passed
to the function, and the target entity will receive all of them.
Any values returned from the entity's msg() callback will be returned
by entity_msg() to the original caller. This allows nice RPC-like
entity communication.
- fixed possible crash in debugLog, bone_update, entity_debugText
- added an override function for loadfile() that is case-insensitive like dofile()
- entity_createEntity returns the created entity now
- spawnParticleEffect returns the associated RenderObject
- Added some text rendering functions
- Added beam_setFirer()
- removed the underflow check in avatar_decrLeaches() I added earlier
- added a panic function for Lua.
- added the Lua debug library
- fixed a stupid typo in ScriptObject::isType() that made the type checks a lot less accurate
- misc stuff I forgot
2012-02-05 19:22:54 +00:00
|
|
|
class RenderObject : public ScriptObject
|
2011-08-03 20:05:33 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class Core;
|
|
|
|
RenderObject();
|
|
|
|
virtual ~RenderObject();
|
|
|
|
virtual void render();
|
|
|
|
|
|
|
|
static RenderObjectLayer *rlayer;
|
|
|
|
|
2015-03-23 23:06:51 +00:00
|
|
|
void setTexturePointer(CountedPtr<Texture> t)
|
2011-08-03 20:05:33 +00:00
|
|
|
{
|
|
|
|
this->texture = t;
|
|
|
|
onSetTexture();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setStateDataObject(StateData *state);
|
2015-03-23 23:06:51 +00:00
|
|
|
bool setTexture(const std::string &name);
|
2011-08-03 20:05:33 +00:00
|
|
|
|
2017-01-20 03:51:38 +00:00
|
|
|
void toggleAlpha(float t = 0.2f);
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
virtual void update(float dt);
|
|
|
|
bool isDead() const {return _dead;}
|
|
|
|
bool isHidden() const {return _hidden || (parent && parent->isHidden());}
|
|
|
|
bool isStatic() const {return _static;}
|
|
|
|
|
|
|
|
// Set whether the object is hidden. If hidden, no updates (except
|
|
|
|
// lifetime checks) or render operations will be performed, and no
|
|
|
|
// child objects will be updated or rendered.
|
|
|
|
void setHidden(bool hidden) {_hidden = hidden;}
|
|
|
|
|
|
|
|
// Set whether the object is static. If static, the object's data
|
|
|
|
// (including position, scale, rotation, color, etc.) are assumed
|
|
|
|
// not to change over the lifetime of the object, to allow for
|
|
|
|
// optimized rendering.
|
|
|
|
void setStatic(bool staticFlag) {_static = staticFlag;}
|
|
|
|
|
2017-01-20 03:51:38 +00:00
|
|
|
void setLife(float newlife)
|
2011-08-03 20:05:33 +00:00
|
|
|
{
|
2017-01-20 03:51:38 +00:00
|
|
|
maxLife = this->life = newlife;
|
2011-08-03 20:05:33 +00:00
|
|
|
}
|
2017-01-20 03:51:38 +00:00
|
|
|
void setDecayRate(float newdecayRate)
|
2011-08-03 20:05:33 +00:00
|
|
|
{
|
2017-01-20 03:51:38 +00:00
|
|
|
this->decayRate = newdecayRate;
|
2011-08-03 20:05:33 +00:00
|
|
|
}
|
2017-01-20 03:51:38 +00:00
|
|
|
void setBlendType (unsigned char bt)
|
2011-08-03 20:05:33 +00:00
|
|
|
{
|
|
|
|
blendType = bt;
|
|
|
|
}
|
|
|
|
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
virtual void flipHorizontal();
|
|
|
|
virtual void flipVertical();
|
|
|
|
|
2015-07-12 20:16:55 +00:00
|
|
|
bool isfh() const { return _fh; }
|
|
|
|
bool isfv() const { return _fv; }
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
// recursive
|
|
|
|
bool isfhr();
|
|
|
|
bool isfvr();
|
|
|
|
|
2017-01-14 17:10:20 +00:00
|
|
|
size_t getIdx() const { return idx; }
|
2017-01-20 03:51:38 +00:00
|
|
|
void setIdx(size_t newidx) { this->idx = newidx; }
|
2011-08-03 20:05:33 +00:00
|
|
|
void moveToFront();
|
|
|
|
void moveToBack();
|
|
|
|
|
|
|
|
inline float getCullRadiusSqr() const
|
|
|
|
{
|
2017-01-20 03:51:38 +00:00
|
|
|
if (overrideCullRadiusSqr != 0)
|
2011-08-03 20:05:33 +00:00
|
|
|
return overrideCullRadiusSqr;
|
|
|
|
if (width == 0 || height == 0)
|
|
|
|
return 0;
|
|
|
|
const float w = width*scale.x;
|
|
|
|
const float h = height*scale.y;
|
|
|
|
return w*w + h*h;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getTopLayer();
|
|
|
|
|
|
|
|
void setColorMult(const Vector &color, const float alpha);
|
|
|
|
void clearColorMult();
|
|
|
|
|
|
|
|
void enableMotionBlur(int sz=10, int off=5);
|
|
|
|
void disableMotionBlur();
|
|
|
|
|
|
|
|
void addChild(RenderObject *r, ParentManaged pm, RenderBeforeParent rbp = RBP_NONE, ChildOrder order = CHILD_BACK);
|
|
|
|
void removeChild(RenderObject *r);
|
|
|
|
|
|
|
|
Vector getRealPosition();
|
|
|
|
Vector getRealScale();
|
|
|
|
|
|
|
|
StateData *getStateData();
|
|
|
|
|
|
|
|
void setPositionSnapTo(InterpolatedVector *positionSnapTo);
|
|
|
|
|
|
|
|
// HACK: This is defined in RenderObject_inline.h because it needs
|
|
|
|
// the class Core definition. --achurch
|
|
|
|
inline bool isOnScreen();
|
|
|
|
|
|
|
|
bool isCoordinateInRadius(const Vector &pos, float r);
|
|
|
|
|
|
|
|
void copyProperties(RenderObject *target);
|
|
|
|
|
|
|
|
const RenderObject &operator=(const RenderObject &r);
|
|
|
|
|
|
|
|
void toggleCull(bool value);
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
void safeKill();
|
|
|
|
|
|
|
|
void enqueueChildDeletion(RenderObject *r);
|
|
|
|
|
|
|
|
Vector getWorldPosition();
|
|
|
|
Vector getWorldCollidePosition(const Vector &vec=Vector(0,0,0));
|
|
|
|
Vector getInvRotPosition(const Vector &vec);
|
|
|
|
bool isPieceFlippedHorizontal();
|
|
|
|
|
|
|
|
RenderObject *getTopParent();
|
|
|
|
|
|
|
|
virtual void onAnimationKeyPassed(int key){}
|
|
|
|
|
|
|
|
Vector getAbsoluteRotation();
|
|
|
|
float getWorldRotation();
|
2013-07-20 15:44:27 +00:00
|
|
|
Vector getWorldPositionAndRotation(); // more efficient shortcut, returns rotation in vector z component
|
2011-08-03 20:05:33 +00:00
|
|
|
Vector getNormal();
|
|
|
|
Vector getForward();
|
|
|
|
void setOverrideCullRadius(float ovr);
|
|
|
|
void setRenderPass(int pass) { renderPass = pass; }
|
|
|
|
int getRenderPass() { return renderPass; }
|
|
|
|
void setOverrideRenderPass(int pass) { overrideRenderPass = pass; }
|
|
|
|
int getOverrideRenderPass() { return overrideRenderPass; }
|
|
|
|
enum { RENDER_ALL=314, OVERRIDE_NONE=315 };
|
|
|
|
|
|
|
|
// Defined in RenderObject_inline.h
|
|
|
|
inline Vector getFollowCameraPosition() const;
|
|
|
|
|
|
|
|
void lookAt(const Vector &pos, float t, float minAngle, float maxAngle, float offset=0);
|
2012-01-02 20:34:29 +00:00
|
|
|
inline RenderObject *getParent() const {return parent;}
|
2011-08-03 20:05:33 +00:00
|
|
|
void applyBlendType();
|
|
|
|
void fhTo(bool fh);
|
|
|
|
void addDeathNotify(RenderObject *r);
|
|
|
|
virtual void unloadDevice();
|
|
|
|
virtual void reloadDevice();
|
|
|
|
|
2017-01-14 17:10:20 +00:00
|
|
|
Vector getCollisionMaskNormal(size_t index);
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
//-------------------------------- Methods above, fields below
|
|
|
|
|
|
|
|
static bool renderCollisionShape;
|
|
|
|
static bool renderPaths;
|
2017-01-14 17:10:20 +00:00
|
|
|
static size_t lastTextureApplied;
|
2011-08-03 20:05:33 +00:00
|
|
|
static bool lastTextureRepeat;
|
|
|
|
|
|
|
|
float width, height; // Only used by Quads, but stored here for getCullRadius()
|
|
|
|
InterpolatedVector position, scale, color, alpha, rotation;
|
|
|
|
InterpolatedVector offset, rotationOffset, internalOffset, beforeScaleOffset;
|
|
|
|
InterpolatedVector velocity, gravity;
|
|
|
|
|
2015-03-23 23:06:51 +00:00
|
|
|
CountedPtr<Texture> texture;
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
//int mode;
|
|
|
|
|
|
|
|
bool fadeAlphaWithLife;
|
|
|
|
|
|
|
|
bool blendEnabled;
|
|
|
|
enum BlendTypes { BLEND_DEFAULT = 0, BLEND_ADD, BLEND_SUB, BLEND_MULT };
|
|
|
|
unsigned char blendType;
|
|
|
|
|
|
|
|
float life;
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
float followCamera;
|
|
|
|
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
bool renderBeforeParent;
|
|
|
|
bool updateAfterParent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool colorIsSaved; // Used for both color and alpha
|
|
|
|
Vector savedColor; // Saved values from setColorMult()
|
|
|
|
float savedAlpha;
|
|
|
|
|
|
|
|
bool shareAlphaWithChildren;
|
|
|
|
bool shareColorWithChildren;
|
|
|
|
|
|
|
|
bool cull;
|
2015-06-03 02:04:03 +00:00
|
|
|
float updateCull;
|
2017-01-20 19:54:17 +00:00
|
|
|
unsigned layer;
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
InterpolatedVector *positionSnapTo;
|
|
|
|
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2014-07-21 20:21:22 +00:00
|
|
|
typedef std::vector<RenderObject*> Children;
|
2011-08-03 20:05:33 +00:00
|
|
|
Children children, childGarbage;
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-20 18:17:57 +00:00
|
|
|
float collideRadius;
|
2011-08-03 20:05:33 +00:00
|
|
|
std::vector<Vector> collisionMask;
|
|
|
|
std::vector<Vector> transformedCollisionMask;
|
|
|
|
|
2013-07-20 18:17:57 +00:00
|
|
|
float collisionMaskRadius;
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
float alphaMod;
|
|
|
|
|
|
|
|
bool ignoreUpdate;
|
|
|
|
bool useOldDT;
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
protected:
|
|
|
|
virtual void onFH(){}
|
|
|
|
virtual void onFV(){}
|
|
|
|
virtual void onDestroy(){}
|
|
|
|
virtual void onSetTexture(){}
|
|
|
|
virtual void onRender(){}
|
|
|
|
virtual void onUpdate(float dt);
|
|
|
|
virtual void deathNotify(RenderObject *r);
|
|
|
|
virtual void onEndOfLife() {}
|
|
|
|
|
|
|
|
inline void updateLife(float dt)
|
|
|
|
{
|
|
|
|
if (decayRate > 0)
|
|
|
|
{
|
|
|
|
life -= decayRate*dt;
|
|
|
|
if (life<=0)
|
|
|
|
{
|
|
|
|
safeKill();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fadeAlphaWithLife && !alpha.isInterpolating())
|
|
|
|
{
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
alpha = life/maxLife;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Is this object or any of its children rendered in pass "pass"?
|
|
|
|
bool hasRenderPass(const int pass);
|
|
|
|
|
|
|
|
inline void renderCall();
|
|
|
|
void renderCollision();
|
|
|
|
|
|
|
|
bool repeatTexture;
|
|
|
|
unsigned char pm; // unsigned char to save space
|
|
|
|
typedef std::list<RenderObject*> RenderObjectList;
|
|
|
|
RenderObjectList deathNotifications;
|
|
|
|
int overrideRenderPass;
|
|
|
|
int renderPass;
|
|
|
|
float overrideCullRadiusSqr;
|
|
|
|
float motionBlurTransitionTimer;
|
|
|
|
int motionBlurFrameOffsetCounter, motionBlurFrameOffset;
|
|
|
|
std::vector<MotionBlurFrame>motionBlurPositions;
|
|
|
|
bool motionBlur, motionBlurTransition;
|
|
|
|
|
|
|
|
bool _dead;
|
|
|
|
bool _hidden;
|
|
|
|
bool _static;
|
|
|
|
bool _fv, _fh;
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2017-01-14 17:10:20 +00:00
|
|
|
size_t idx;
|
2011-08-03 20:05:33 +00:00
|
|
|
RenderObject *parent;
|
|
|
|
StateData *stateData;
|
|
|
|
float decayRate;
|
|
|
|
float maxLife;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|