Danbias/Code/Game/GameLogic/Player.cpp

283 lines
6.7 KiB
C++
Raw Normal View History

#include "Player.h"
#include "Weapon.h"
2014-01-20 15:47:52 +01:00
#include "CollisionManager.h"
#include "Game.h"
using namespace GameLogic;
using namespace Oyster::Physics;
2014-02-14 10:09:03 +01:00
const float MOVE_FORCE = 30;
const float KEY_TIMER = 0.03f;
Player::Player()
:DynamicObject()
{
}
2014-02-12 14:48:58 +01:00
Player::Player(Oyster::Physics::ICustomBody *rigidBody, void (*EventOnCollision)(Oyster::Physics::ICustomBody *proto,Oyster::Physics::ICustomBody *deuter,Oyster::Math::Float kineticEnergyLoss), ObjectSpecialType type, int objectID, int teamID)
:DynamicObject(rigidBody, EventOnCollision, type, objectID)
{
weapon = new Weapon(2,this);
this->life = 100;
this->teamID = teamID;
this->playerState = PLAYER_STATE_IDLE;
this->lookDir = Oyster::Math::Float3(0,0,-1);
key_forward = 0;
key_backward = 0;
key_strafeRight = 0;
key_strafeLeft = 0;
2014-02-14 12:07:49 +01:00
this->previousPosition = Oyster::Math::Float3(0,0,0);
this->moveDir = Oyster::Math::Float3(0,0,0);
this->moveSpeed = 100;
this->previousMoveSpeed = Oyster::Math::Float3(0,0,0);
2014-01-27 08:54:25 +01:00
}
Player::Player(Oyster::Physics::ICustomBody *rigidBody, Oyster::Physics::ICustomBody::SubscriptMessage (*EventOnCollision)(Oyster::Physics::ICustomBody *proto,Oyster::Physics::ICustomBody *deuter,Oyster::Math::Float kineticEnergyLoss), ObjectSpecialType type, int objectID, int teamID)
:DynamicObject(rigidBody, EventOnCollision, type, objectID)
2014-01-27 08:54:25 +01:00
{
weapon = new Weapon(2,this);
this->life = 100;
this->teamID = teamID;
this->playerState = PLAYER_STATE_IDLE;
2014-02-12 11:36:08 +01:00
this->lookDir = Oyster::Math::Float3(0,0,-1);
key_forward = 0;
key_backward = 0;
key_strafeRight = 0;
key_strafeLeft = 0;
2014-02-14 11:52:44 +01:00
this->previousPosition = Oyster::Math::Float3(0,0,0);
this->moveDir = Oyster::Math::Float3(0,0,0);
2014-02-17 06:44:29 +01:00
this->moveSpeed = 20;
this->previousMoveSpeed = Oyster::Math::Float3(0,0,0);
2014-01-27 13:56:31 +01:00
}
Player::~Player(void)
{
if(weapon)
{
delete weapon;
weapon = NULL;
}
}
void Player::BeginFrame()
{
2014-02-11 11:46:06 +01:00
//weapon->Update(0.002f);
Object::BeginFrame();
2014-02-14 11:52:44 +01:00
2014-02-17 06:44:29 +01:00
Oyster::Math::Float maxSpeed = 30;
2014-02-14 11:52:44 +01:00
2014-02-17 06:44:29 +01:00
Oyster::Math::Float4x4 xform;
xform = this->rigidBody->GetState().GetOrientation();
2014-02-14 11:52:44 +01:00
2014-02-17 06:44:29 +01:00
/* Handle turning */
/*if (left)
m_turnAngle -= dt * m_turnVelocity;
if (right)
m_turnAngle += dt * m_turnVelocity;*/
2014-02-17 06:44:29 +01:00
//xform.setRotation (btQuaternion (btVector3(0.0, 1.0, 0.0), m_turnAngle));
Oyster::Math::Float3 linearVelocity = this->rigidBody->GetLinearVelocity();
Oyster::Math::Float speed = this->rigidBody->GetLinearVelocity().GetLength();
Oyster::Math::Float3 forwardDir = xform.v[2];
Oyster::Math::Float3 rightDir = xform.v[0];
forwardDir.Normalize();
rightDir.Normalize();
Oyster::Math::Float3 walkDirection = Oyster::Math::Float3(0.0, 0.0, 0.0);
Oyster::Math::Float walkSpeed = this->moveSpeed*0.2;
if (key_forward > 0.001)
{
2014-02-17 06:44:29 +01:00
key_forward -= gameInstance->GetFrameTime();
walkDirection += forwardDir;
walkDirection.Normalize();
}
if (key_backward > 0.001)
{
key_backward -= gameInstance->GetFrameTime();
2014-02-17 06:44:29 +01:00
walkDirection -= forwardDir;
walkDirection.Normalize();
}
if (key_strafeRight > 0.001)
{
key_strafeRight -= gameInstance->GetFrameTime();
2014-02-17 06:44:29 +01:00
walkDirection -= rightDir;
walkDirection.Normalize();
}
if (key_strafeLeft > 0.001)
{
key_strafeLeft -= gameInstance->GetFrameTime();
2014-02-17 06:44:29 +01:00
walkDirection += rightDir;
walkDirection.Normalize();
maxSpeed = 40;
}
2014-02-17 06:44:29 +01:00
2014-02-12 13:12:51 +01:00
2014-02-17 06:44:29 +01:00
if (key_forward <= 0.001 && key_backward <= 0.001 && key_strafeRight <= 0.001 && key_strafeLeft <= 0.001 && key_jump <= 0.001 && this->rigidBody->GetLambda() < 0.7f)
{
2014-02-17 06:44:29 +01:00
/* Dampen when on the ground and not being moved by the player */
linearVelocity *= 0.2;
this->rigidBody->SetLinearVelocity (linearVelocity);
}
else
{
if (speed < maxSpeed && this->rigidBody->GetLambda() < 1.0f)
{
Oyster::Math::Float3 velocity = linearVelocity + walkDirection * walkSpeed;
this->rigidBody->SetLinearVelocity(velocity);
}
else if(speed < maxSpeed)
{
Oyster::Math::Float3 velocity = linearVelocity + (walkDirection * walkSpeed)*0.2f;
this->rigidBody->SetLinearVelocity(velocity);
}
}
2014-02-12 13:12:51 +01:00
2014-02-17 06:44:29 +01:00
if (key_jump > 0.001)
{
this->key_jump -= this->gameInstance->GetFrameTime();
if(this->rigidBody->GetLambda() < 1.0f)
{
Oyster::Math::Float3 up = this->rigidBody->GetState().GetOrientation().v[1].GetNormalized();
this->rigidBody->ApplyImpulse(up*this->rigidBody->GetState().mass*20);
this->playerState = PLAYER_STATE::PLAYER_STATE_JUMPING;
}
}
this->weapon->Update(0.01f);
}
void Player::EndFrame()
{
// snap to axis
Oyster::Math::Float4 rotation;
this->rigidBody->SetUp(this->rigidBody->GetState().centerPos.GetNormalized());
2014-02-11 11:46:06 +01:00
Object::EndFrame();
}
void Player::Move(const PLAYER_MOVEMENT &movement)
{
switch(movement)
{
case PLAYER_MOVEMENT::PLAYER_MOVEMENT_FORWARD:
MoveForward();
break;
case PLAYER_MOVEMENT::PLAYER_MOVEMENT_BACKWARD:
MoveBackwards();
break;
case PLAYER_MOVEMENT::PLAYER_MOVEMENT_LEFT:
MoveLeft();
break;
case PLAYER_MOVEMENT::PLAYER_MOVEMENT_RIGHT:
MoveRight();
break;
case PLAYER_MOVEMENT::PLAYER_MOVEMENT_JUMP:
Jump();
break;
}
}
void Player::MoveForward()
{
key_forward = KEY_TIMER;
}
void Player::MoveBackwards()
{
key_backward = KEY_TIMER;
}
void Player::MoveRight()
{
key_strafeRight = KEY_TIMER;
}
void Player::MoveLeft()
{
key_strafeLeft = KEY_TIMER;
}
2014-01-16 11:17:19 +01:00
void Player::UseWeapon(const WEAPON_FIRE &usage)
{
this->weapon->Use(usage,gameInstance->GetFrameTime());
}
void Player::Respawn(Oyster::Math::Float3 spawnPoint)
2014-02-14 10:09:03 +01:00
{
this->life = 100;
this->playerState = PLAYER_STATE::PLAYER_STATE_IDLE;
this->lookDir = Oyster::Math::Float4(1,0,0);
2014-02-11 11:46:06 +01:00
this->rigidBody->SetPosition(spawnPoint);
}
void Player::Rotate(const Oyster::Math3D::Float3 lookDir, const Oyster::Math3D::Float3 right)
{
2014-02-12 11:36:08 +01:00
// this is the camera right vector
this->lookDir = lookDir;
2014-02-11 11:46:06 +01:00
2014-02-14 11:52:44 +01:00
//Oyster::Math::Float3 up = this->rigidBody->GetState().GetOrientation().v[1];
//this->rigidBody->SetUpAndRight(up, right);
}
void Player::Jump()
{
2014-02-17 06:44:29 +01:00
this->key_jump = KEY_TIMER;
}
bool Player::IsWalking()
{
return (this->playerState == PLAYER_STATE::PLAYER_STATE_WALKING);
}
bool Player::IsJumping()
{
return (this->playerState == PLAYER_STATE::PLAYER_STATE_JUMPING);
}
bool Player::IsIdle()
{
return (this->playerState == PLAYER_STATE::PLAYER_STATE_IDLE);
}
Oyster::Math::Float3 Player::GetPosition() const
{
2014-02-11 10:11:38 +01:00
return (Oyster::Math::Float3) this->rigidBody->GetState().centerPos;
}
2014-01-16 12:26:14 +01:00
Oyster::Math::Float4x4 Player::GetOrientation() const
{
2014-02-11 10:11:38 +01:00
return this->rigidBody->GetState().GetOrientation();
}
Oyster::Math::Float3 Player::GetLookDir() const
{
return this->lookDir;
}
int Player::GetTeamID() const
{
return this->teamID;
}
PLAYER_STATE Player::GetState() const
{
return this->playerState;
}
void Player::DamageLife(int damage)
{
this->life -= damage;
2014-02-04 11:13:02 +01:00
this->life = 0;
if(this->life <= 0)
{
this->life = 0;
playerState = PLAYER_STATE_DEAD;
this->gameInstance->onDisableFnc(this, 0.0f);
2014-02-04 11:13:02 +01:00
}
}