2013-11-28 08:33:29 +01:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
//Created by Erik and Linda of the GameLogic team
|
|
|
|
//////////////////////////////////////////////////
|
2013-11-19 11:07:14 +01:00
|
|
|
#ifndef LEVEL_H
|
|
|
|
#define LEVEL_H
|
2013-12-13 11:11:51 +01:00
|
|
|
#include <string>
|
2014-01-20 15:47:52 +01:00
|
|
|
|
|
|
|
#include "Player.h"
|
|
|
|
#include "StaticObject.h"
|
|
|
|
#include "DynamicObject.h"
|
2014-02-10 14:00:14 +01:00
|
|
|
#include "GameModeType.h"
|
2014-02-12 13:37:21 +01:00
|
|
|
#include "JumpPad.h"
|
2013-12-18 08:30:58 +01:00
|
|
|
#include "Player.h"
|
2014-01-20 15:47:52 +01:00
|
|
|
#include "PhysicsAPI.h"
|
|
|
|
#include "TeamManager.h"
|
|
|
|
#include "DynamicArray.h"
|
2014-02-10 14:00:14 +01:00
|
|
|
#include "LevelLoader/LevelLoader.h"
|
2013-11-19 11:07:14 +01:00
|
|
|
|
|
|
|
namespace GameLogic
|
|
|
|
{
|
|
|
|
|
|
|
|
class Level
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
Level(void);
|
|
|
|
~Level(void);
|
|
|
|
|
2013-12-18 08:30:58 +01:00
|
|
|
/********************************************************
|
|
|
|
* Initiates a level for players to play on
|
|
|
|
* @param levelPath: Path to a file that contains all information on the level
|
|
|
|
********************************************************/
|
2013-12-13 11:06:03 +01:00
|
|
|
void InitiateLevel(std::string levelPath);
|
2014-02-10 14:00:14 +01:00
|
|
|
void InitiateLevel(float radius);
|
2013-12-12 09:36:14 +01:00
|
|
|
|
2014-02-10 14:00:14 +01:00
|
|
|
void parseObjectType(ObjectTypeHeader* obj);
|
2014-02-10 16:28:25 +01:00
|
|
|
void parsePhysicsObj(LevelLoaderInternal::BoundingVolumeBase* obj);
|
2013-12-18 08:30:58 +01:00
|
|
|
/********************************************************
|
|
|
|
* Creates a team in the level
|
|
|
|
* @param teamSize: The size of the team you want to create
|
|
|
|
********************************************************/
|
|
|
|
void CreateTeam(int teamSize);
|
|
|
|
|
|
|
|
/********************************************************
|
|
|
|
* Adds a player to a team
|
|
|
|
* @param player: The player you want to add to the team
|
|
|
|
* @param teamID: ArrayPos of the team you want to add the player to
|
|
|
|
********************************************************/
|
|
|
|
void AddPlayerToTeam(Player *player, int teamID);
|
|
|
|
|
|
|
|
|
|
|
|
/********************************************************
|
|
|
|
* Respawns a player on a random teammate
|
|
|
|
* @param player: The player you want to respawn
|
|
|
|
********************************************************/
|
|
|
|
void RespawnPlayer(Player *player);
|
|
|
|
|
2014-01-21 15:46:54 +01:00
|
|
|
/********************************************************
|
|
|
|
* Collision function for level, this is to be sent to physics through the subscribe function with the rigidbody
|
|
|
|
* Will be called when the physics detect a collision
|
|
|
|
* @param rigidBodyLevel: physics object of the level
|
|
|
|
* @param obj: physics object for the object that collided with the level
|
|
|
|
********************************************************/
|
2014-01-29 14:33:21 +01:00
|
|
|
static Oyster::Physics::ICustomBody::SubscriptMessage LevelCollisionAfter(Oyster::Physics::ICustomBody *rigidBodyLevel, Oyster::Physics::ICustomBody *obj, Oyster::Math::Float kineticEnergyLoss);
|
2014-02-05 11:46:04 +01:00
|
|
|
|
|
|
|
int getNrOfDynamicObj();
|
2014-01-28 15:04:25 +01:00
|
|
|
Object* GetObj( int ID ) const;
|
|
|
|
static void PhysicsOnMoveLevel(const Oyster::Physics::ICustomBody *object);
|
|
|
|
|
2014-01-21 15:46:54 +01:00
|
|
|
|
2014-02-10 13:25:28 +01:00
|
|
|
//private:
|
2014-01-20 15:47:52 +01:00
|
|
|
TeamManager teamManager;
|
|
|
|
Utility::DynamicMemory::DynamicArray<Utility::DynamicMemory::SmartPointer<StaticObject>> staticObjects;
|
|
|
|
Utility::DynamicMemory::DynamicArray<Utility::DynamicMemory::SmartPointer<DynamicObject>> dynamicObjects;
|
2014-02-10 14:00:14 +01:00
|
|
|
GameModeType gameMode;
|
2014-01-20 15:47:52 +01:00
|
|
|
Utility::DynamicMemory::SmartPointer<Oyster::Physics::ICustomBody> rigidBodyLevel;
|
2014-01-23 08:57:46 +01:00
|
|
|
StaticObject *levelObj;
|
2013-11-19 11:07:14 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|