2014-10-14 13:11:37 +00:00
|
|
|
|
/*
|
|
|
|
|
* This file is part of the Colobot: Gold Edition source code
|
|
|
|
|
* Copyright (C) 2001-2014, Daniel Roux, EPSITEC SA & TerranovaTeam
|
|
|
|
|
* http://epsiteс.ch; http://colobot.info; http://github.com/colobot
|
|
|
|
|
*
|
|
|
|
|
* This program 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 3 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, see http://gnu.org/licenses
|
|
|
|
|
*/
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "object/motion/motion.h"
|
|
|
|
|
|
2012-09-22 12:40:13 +00:00
|
|
|
|
#include "app/app.h"
|
|
|
|
|
|
2013-02-16 21:37:43 +00:00
|
|
|
|
#include "object/robotmain.h"
|
2014-11-10 13:16:32 +00:00
|
|
|
|
#include "object/level/parserline.h"
|
|
|
|
|
#include "object/level/parserparam.h"
|
2012-09-22 12:40:13 +00:00
|
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
2012-09-22 12:40:13 +00:00
|
|
|
|
|
2012-09-15 16:50:51 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Object's constructor.
|
|
|
|
|
|
2013-02-16 21:37:43 +00:00
|
|
|
|
CMotion::CMotion(CObject* object)
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
2012-09-22 12:40:13 +00:00
|
|
|
|
m_app = CApplication::GetInstancePointer();
|
2013-02-16 21:37:43 +00:00
|
|
|
|
m_sound = m_app->GetSound();
|
|
|
|
|
m_engine = Gfx::CEngine::GetInstancePointer();
|
|
|
|
|
m_particle = m_engine->GetParticle();
|
|
|
|
|
m_water = m_engine->GetWater();
|
|
|
|
|
m_main = CRobotMain::GetInstancePointer();
|
|
|
|
|
m_terrain = m_main->GetTerrain();
|
|
|
|
|
m_camera = m_main->GetCamera();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
m_object = object;
|
|
|
|
|
m_physics = 0;
|
|
|
|
|
m_brain = 0;
|
|
|
|
|
|
|
|
|
|
m_actionType = -1;
|
|
|
|
|
m_actionTime = 0.0f;
|
|
|
|
|
m_progress = 0.0f;
|
|
|
|
|
|
|
|
|
|
m_linVibration = Math::Vector(0.0f, 0.0f, 0.0f);
|
|
|
|
|
m_cirVibration = Math::Vector(0.0f, 0.0f, 0.0f);
|
|
|
|
|
m_inclinaison = Math::Vector(0.0f, 0.0f, 0.0f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Object's destructor.
|
|
|
|
|
|
|
|
|
|
CMotion::~CMotion()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CMotion::SetPhysics(CPhysics* physics)
|
|
|
|
|
{
|
|
|
|
|
m_physics = physics;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CMotion::SetBrain(CBrain* brain)
|
|
|
|
|
{
|
|
|
|
|
m_brain = brain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Management of an event.
|
|
|
|
|
|
|
|
|
|
bool CMotion::EventProcess(const Event &event)
|
|
|
|
|
{
|
|
|
|
|
Math::Vector pos, dir;
|
|
|
|
|
float time;
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
if ( m_object->GetType() != OBJECT_TOTO &&
|
|
|
|
|
m_engine->GetPause() ) return true;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
2012-09-11 20:45:48 +00:00
|
|
|
|
if ( event.type != EVENT_FRAME ) return true;
|
2012-06-26 21:01:17 +00:00
|
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
|
m_progress += event.rTime*m_actionTime;
|
|
|
|
|
if ( m_progress > 1.0f ) m_progress = 1.0f; // (*)
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
pos = m_object->GetPosition(0);
|
|
|
|
|
if ( pos.y < m_water->GetLevel(m_object) ) // underwater?
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
time = event.rTime*3.0f; // everything is slower
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
time = event.rTime*10.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
dir = m_object->GetLinVibration();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
dir.x = Math::Smooth(dir.x, m_linVibration.x, time);
|
|
|
|
|
dir.y = Math::Smooth(dir.y, m_linVibration.y, time);
|
|
|
|
|
dir.z = Math::Smooth(dir.z, m_linVibration.z, time);
|
|
|
|
|
m_object->SetLinVibration(dir);
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
dir = m_object->GetCirVibration();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
dir.x = Math::Smooth(dir.x, m_cirVibration.x, time);
|
|
|
|
|
dir.y = Math::Smooth(dir.y, m_cirVibration.y, time);
|
|
|
|
|
dir.z = Math::Smooth(dir.z, m_cirVibration.z, time);
|
|
|
|
|
m_object->SetCirVibration(dir);
|
|
|
|
|
|
2015-06-25 17:05:56 +00:00
|
|
|
|
dir = m_object->GetTilt();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
dir.x = Math::Smooth(dir.x, m_inclinaison.x, time);
|
|
|
|
|
dir.y = Math::Smooth(dir.y, m_inclinaison.y, time);
|
|
|
|
|
dir.z = Math::Smooth(dir.z, m_inclinaison.z, time);
|
2015-06-25 17:05:56 +00:00
|
|
|
|
m_object->SetTilt(dir);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// (*) Avoids the bug of ants returned by the thumper and
|
|
|
|
|
// whose abdomen grown to infinity!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Start an action.
|
|
|
|
|
|
|
|
|
|
Error CMotion::SetAction(int action, float time)
|
|
|
|
|
{
|
|
|
|
|
m_actionType = action;
|
|
|
|
|
m_actionTime = 1.0f/time;
|
|
|
|
|
m_progress = 0.0f;
|
|
|
|
|
return ERR_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-17 19:55:45 +00:00
|
|
|
|
// Returns the current action.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
int CMotion::GetAction()
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
return m_actionType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Specifies a special parameter.
|
|
|
|
|
|
|
|
|
|
bool CMotion::SetParam(int rank, float value)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
float CMotion::GetParam(int rank)
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
return 0.0f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Saves all parameters of the object.
|
|
|
|
|
|
2014-11-10 13:16:32 +00:00
|
|
|
|
bool CMotion::Write(CLevelParserLine* line)
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
if ( m_actionType == -1 ) return false;
|
2015-06-21 18:59:23 +00:00
|
|
|
|
|
|
|
|
|
line->AddParam("mType", CLevelParserParamUPtr{new CLevelParserParam(m_actionType)});
|
|
|
|
|
line->AddParam("mTime", CLevelParserParamUPtr{new CLevelParserParam(m_actionTime)});
|
|
|
|
|
line->AddParam("mProgress", CLevelParserParamUPtr{new CLevelParserParam(m_progress)});
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Restores all parameters of the object.
|
|
|
|
|
|
2014-11-10 16:15:34 +00:00
|
|
|
|
bool CMotion::Read(CLevelParserLine* line)
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
2014-11-10 16:15:34 +00:00
|
|
|
|
m_actionType = line->GetParam("mType")->AsInt(-1);
|
|
|
|
|
m_actionTime = line->GetParam("mTime")->AsFloat(0.0f);
|
|
|
|
|
m_progress = line->GetParam("mProgress")->AsFloat(0.0f);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-11 18:59:35 +00:00
|
|
|
|
// Getes the linear vibration.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
void CMotion::SetLinVibration(Math::Vector dir)
|
|
|
|
|
{
|
|
|
|
|
m_linVibration = dir;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
Math::Vector CMotion::GetLinVibration()
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
return m_linVibration;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-11 18:59:35 +00:00
|
|
|
|
// Getes the circular vibration.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
|
|
void CMotion::SetCirVibration(Math::Vector dir)
|
|
|
|
|
{
|
|
|
|
|
m_cirVibration = dir;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
Math::Vector CMotion::GetCirVibration()
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
return m_cirVibration;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-11 18:59:35 +00:00
|
|
|
|
// Getes the tilt.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
2015-06-25 17:05:56 +00:00
|
|
|
|
void CMotion::SetTilt(Math::Vector dir)
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
m_inclinaison = dir;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-25 17:05:56 +00:00
|
|
|
|
Math::Vector CMotion::GetTilt()
|
2012-06-26 20:23:05 +00:00
|
|
|
|
{
|
|
|
|
|
return m_inclinaison;
|
|
|
|
|
}
|
|
|
|
|
|