2011-11-08 02:44:30 +01:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-11-08 02:44:30 +01:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SHOT_H
|
|
|
|
#define SHOT_H
|
|
|
|
|
|
|
|
#include <framework/global.h>
|
2012-02-02 17:37:52 +01:00
|
|
|
#include <framework/core/timer.h>
|
2011-11-08 02:44:30 +01:00
|
|
|
#include "thing.h"
|
|
|
|
|
|
|
|
class Missile : public Thing
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
TICKS_PER_FRAME = 75
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2012-02-02 21:54:49 +01:00
|
|
|
void draw(const Point& dest, float scaleFactor, bool animate);
|
2011-11-08 02:44:30 +01:00
|
|
|
|
|
|
|
void updateAnimation();
|
|
|
|
|
2012-02-02 17:37:52 +01:00
|
|
|
void setId(uint32 id);
|
2011-11-08 02:44:30 +01:00
|
|
|
void setPath(const Position& fromPosition, const Position& toPosition);
|
|
|
|
|
2012-02-02 17:37:52 +01:00
|
|
|
uint32 getId() { return m_id; }
|
2011-11-08 02:44:30 +01:00
|
|
|
|
|
|
|
MissilePtr asMissile() { return std::static_pointer_cast<Missile>(shared_from_this()); }
|
|
|
|
|
|
|
|
private:
|
2012-02-02 17:37:52 +01:00
|
|
|
Timer m_animationTimer;
|
2012-02-02 21:54:49 +01:00
|
|
|
Point m_delta;
|
2011-11-08 02:44:30 +01:00
|
|
|
float m_duration;
|
2012-02-02 17:37:52 +01:00
|
|
|
uint16 m_id;
|
|
|
|
Otc::Direction m_direction;
|
2011-11-08 02:44:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|