Added LocalCharacter & BaseMonster
This commit is contained in:
@@ -19,9 +19,9 @@
|
|||||||
* 3. This notice may not be removed or altered from any source
|
* 3. This notice may not be removed or altered from any source
|
||||||
* distribution.
|
* distribution.
|
||||||
*/
|
*/
|
||||||
#include "character.hpp"
|
#include "base_character.hpp"
|
||||||
|
|
||||||
void Character::CorrectSprite() {
|
void BaseCharacter::CorrectSprite() {
|
||||||
//NOTE: These must correspond to the sprite sheet in use
|
//NOTE: These must correspond to the sprite sheet in use
|
||||||
if (motion.y > 0) {
|
if (motion.y > 0) {
|
||||||
sprite.SetYIndex(0);
|
sprite.SetYIndex(0);
|
||||||
|
|||||||
@@ -19,29 +19,24 @@
|
|||||||
* 3. This notice may not be removed or altered from any source
|
* 3. This notice may not be removed or altered from any source
|
||||||
* distribution.
|
* distribution.
|
||||||
*/
|
*/
|
||||||
#ifndef CHARACTER_HPP_
|
#ifndef BASECHARACTER_HPP_
|
||||||
#define CHARACTER_HPP_
|
#define BASECHARACTER_HPP_
|
||||||
|
|
||||||
//components
|
//components
|
||||||
#include "character_defines.hpp"
|
#include "character_defines.hpp"
|
||||||
#include "renderable.hpp"
|
#include "renderable.hpp"
|
||||||
#include "statistics.hpp"
|
|
||||||
|
|
||||||
//std namespace
|
//std namespace
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cmath>
|
|
||||||
|
|
||||||
class Character : public Renderable {
|
class BaseCharacter : public Renderable {
|
||||||
public:
|
public:
|
||||||
Character() = default;
|
BaseCharacter() = default;
|
||||||
~Character() = default;
|
virtual ~BaseCharacter() = default;
|
||||||
|
|
||||||
//graphics
|
//graphics
|
||||||
void CorrectSprite();
|
void CorrectSprite();
|
||||||
|
|
||||||
//gameplay
|
|
||||||
Statistics* GetStats() { return &stats; }
|
|
||||||
|
|
||||||
//metadata
|
//metadata
|
||||||
int SetOwner(int i) { return owner = i; }
|
int SetOwner(int i) { return owner = i; }
|
||||||
int GetOwner() { return owner; }
|
int GetOwner() { return owner; }
|
||||||
@@ -51,19 +46,10 @@ public:
|
|||||||
std::string GetAvatar() const { return avatar; }
|
std::string GetAvatar() const { return avatar; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
//base statistics
|
|
||||||
Statistics stats;
|
|
||||||
|
|
||||||
//gameplay components: equipment, items, buffs, debuffs...
|
|
||||||
|
|
||||||
//metadata
|
//metadata
|
||||||
int owner;
|
int owner;
|
||||||
std::string handle;
|
std::string handle;
|
||||||
std::string avatar;
|
std::string avatar;
|
||||||
};
|
};
|
||||||
|
|
||||||
//tmp
|
|
||||||
#include <map>
|
|
||||||
typedef std::map<int, Character> CharacterMap;
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
/* Copyright: (c) Kayne Ruse 2014
|
||||||
|
*
|
||||||
|
* This software is provided 'as-is', without any express or implied
|
||||||
|
* warranty. In no event will the authors be held liable for any damages
|
||||||
|
* arising from the use of this software.
|
||||||
|
*
|
||||||
|
* Permission is granted to anyone to use this software for any purpose,
|
||||||
|
* including commercial applications, and to alter it and redistribute it
|
||||||
|
* freely, subject to the following restrictions:
|
||||||
|
*
|
||||||
|
* 1. The origin of this software must not be misrepresented; you must not
|
||||||
|
* claim that you wrote the original software. If you use this software
|
||||||
|
* in a product, an acknowledgment in the product documentation would be
|
||||||
|
* appreciated but is not required.
|
||||||
|
*
|
||||||
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
* misrepresented as being the original software.
|
||||||
|
*
|
||||||
|
* 3. This notice may not be removed or altered from any source
|
||||||
|
* distribution.
|
||||||
|
*/
|
||||||
|
#include "base_monster.hpp"
|
||||||
|
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
/* Copyright: (c) Kayne Ruse 2014
|
||||||
|
*
|
||||||
|
* This software is provided 'as-is', without any express or implied
|
||||||
|
* warranty. In no event will the authors be held liable for any damages
|
||||||
|
* arising from the use of this software.
|
||||||
|
*
|
||||||
|
* Permission is granted to anyone to use this software for any purpose,
|
||||||
|
* including commercial applications, and to alter it and redistribute it
|
||||||
|
* freely, subject to the following restrictions:
|
||||||
|
*
|
||||||
|
* 1. The origin of this software must not be misrepresented; you must not
|
||||||
|
* claim that you wrote the original software. If you use this software
|
||||||
|
* in a product, an acknowledgment in the product documentation would be
|
||||||
|
* appreciated but is not required.
|
||||||
|
*
|
||||||
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
* misrepresented as being the original software.
|
||||||
|
*
|
||||||
|
* 3. This notice may not be removed or altered from any source
|
||||||
|
* distribution.
|
||||||
|
*/
|
||||||
|
#ifndef BASEMONSTER_HPP_
|
||||||
|
#define BASEMONSTER_HPP_
|
||||||
|
|
||||||
|
#include "renderable.hpp"
|
||||||
|
|
||||||
|
class BaseMonster {
|
||||||
|
public:
|
||||||
|
BaseMonster();
|
||||||
|
virtual ~BaseMonster();
|
||||||
|
|
||||||
|
private:
|
||||||
|
//
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
/* Copyright: (c) Kayne Ruse 2014
|
||||||
|
*
|
||||||
|
* This software is provided 'as-is', without any express or implied
|
||||||
|
* warranty. In no event will the authors be held liable for any damages
|
||||||
|
* arising from the use of this software.
|
||||||
|
*
|
||||||
|
* Permission is granted to anyone to use this software for any purpose,
|
||||||
|
* including commercial applications, and to alter it and redistribute it
|
||||||
|
* freely, subject to the following restrictions:
|
||||||
|
*
|
||||||
|
* 1. The origin of this software must not be misrepresented; you must not
|
||||||
|
* claim that you wrote the original software. If you use this software
|
||||||
|
* in a product, an acknowledgment in the product documentation would be
|
||||||
|
* appreciated but is not required.
|
||||||
|
*
|
||||||
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
* misrepresented as being the original software.
|
||||||
|
*
|
||||||
|
* 3. This notice may not be removed or altered from any source
|
||||||
|
* distribution.
|
||||||
|
*/
|
||||||
|
#include "local_character.hpp"
|
||||||
|
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
/* Copyright: (c) Kayne Ruse 2014
|
||||||
|
*
|
||||||
|
* This software is provided 'as-is', without any express or implied
|
||||||
|
* warranty. In no event will the authors be held liable for any damages
|
||||||
|
* arising from the use of this software.
|
||||||
|
*
|
||||||
|
* Permission is granted to anyone to use this software for any purpose,
|
||||||
|
* including commercial applications, and to alter it and redistribute it
|
||||||
|
* freely, subject to the following restrictions:
|
||||||
|
*
|
||||||
|
* 1. The origin of this software must not be misrepresented; you must not
|
||||||
|
* claim that you wrote the original software. If you use this software
|
||||||
|
* in a product, an acknowledgment in the product documentation would be
|
||||||
|
* appreciated but is not required.
|
||||||
|
*
|
||||||
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||||
|
* misrepresented as being the original software.
|
||||||
|
*
|
||||||
|
* 3. This notice may not be removed or altered from any source
|
||||||
|
* distribution.
|
||||||
|
*/
|
||||||
|
#ifndef LOCALCHARACTER_HPP_
|
||||||
|
#define LOCALCHARACTER_HPP_
|
||||||
|
|
||||||
|
#include "base_character.hpp"
|
||||||
|
#include "statistics.hpp"
|
||||||
|
|
||||||
|
class LocalCharacter : public BaseCharacter {
|
||||||
|
public:
|
||||||
|
LocalCharacter() = default;
|
||||||
|
~LocalCharacter() = default;
|
||||||
|
|
||||||
|
Statistics* GetBaseStats() { return &baseStats; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
Statistics baseStats;
|
||||||
|
//TODO: weapons, armour, buffs, debuffs, etc.
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
#config
|
#config
|
||||||
INCLUDES+=. .. ../../common/gameplay ../../common/graphics ../../common/map ../../common/network ../../common/network/packet_types ../../common/ui ../../common/utilities
|
INCLUDES+=. .. ../../common/gameplay ../../common/graphics ../../common/utilities
|
||||||
LIBS+=
|
LIBS+=
|
||||||
CXXFLAGS+=-std=c++11 $(addprefix -I,$(INCLUDES))
|
CXXFLAGS+=-std=c++11 $(addprefix -I,$(INCLUDES))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user