2012-06-26 20:23:05 +00:00
|
|
|
// * This file is part of the COLOBOT source code
|
|
|
|
// * Copyright (C) 2001-2008, Daniel ROUX & EPSITEC SA, www.epsitec.ch
|
|
|
|
// *
|
|
|
|
// * 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://www.gnu.org/licenses/.
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "object/auto/auto.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "common/iman.h"
|
|
|
|
#include "script/cmdtoken.h"
|
|
|
|
#include "ui/interface.h"
|
|
|
|
#include "ui/gauge.h"
|
|
|
|
#include "ui/window.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Object's constructor.
|
|
|
|
|
|
|
|
CAuto::CAuto(CInstanceManager* iMan, CObject* object)
|
|
|
|
{
|
|
|
|
m_iMan = iMan;
|
|
|
|
m_iMan->AddInstance(CLASS_AUTO, this, 100);
|
|
|
|
|
|
|
|
m_object = object;
|
2012-09-09 12:28:19 +00:00
|
|
|
m_event = static_cast< CEventQueue* >(m_iMan->SearchInstance(CLASS_EVENT));
|
|
|
|
m_engine = static_cast< Gfx::CEngine* >(m_iMan->SearchInstance(CLASS_ENGINE));
|
|
|
|
m_particle = static_cast< Gfx::CParticle* >(m_iMan->SearchInstance(CLASS_PARTICULE));
|
|
|
|
m_lightMan = static_cast< Gfx::CLightManager* >(m_iMan->SearchInstance(CLASS_LIGHT));
|
|
|
|
m_terrain = static_cast< Gfx::CTerrain* >(m_iMan->SearchInstance(CLASS_TERRAIN));
|
|
|
|
m_water = static_cast< Gfx::CWater* >(m_iMan->SearchInstance(CLASS_WATER));
|
|
|
|
m_cloud = static_cast< Gfx::CCloud* >(m_iMan->SearchInstance(CLASS_CLOUD));
|
|
|
|
m_planet = static_cast< Gfx::CPlanet* >(m_iMan->SearchInstance(CLASS_PLANET));
|
|
|
|
m_lightning = static_cast< Gfx::CLightning* >(m_iMan->SearchInstance(CLASS_BLITZ));
|
|
|
|
m_camera = static_cast< Gfx::CCamera* >(m_iMan->SearchInstance(CLASS_CAMERA));
|
|
|
|
m_interface = static_cast< Ui::CInterface* >(m_iMan->SearchInstance(CLASS_INTERFACE));
|
|
|
|
m_main = static_cast< CRobotMain* >(m_iMan->SearchInstance(CLASS_MAIN));
|
|
|
|
m_displayText = static_cast< Ui::CDisplayText* >(m_iMan->SearchInstance(CLASS_DISPLAYTEXT));
|
|
|
|
m_sound = static_cast< CSoundInterface* >(m_iMan->SearchInstance(CLASS_SOUND));
|
|
|
|
|
|
|
|
m_type = m_object->GetType();
|
2012-06-26 20:23:05 +00:00
|
|
|
m_time = 0.0f;
|
|
|
|
m_lastUpdateTime = 0.0f;
|
|
|
|
m_bMotor = false;
|
|
|
|
m_progressTime = 0.0f;
|
|
|
|
m_progressTotal = 1.0f;
|
|
|
|
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Object's destructor.
|
|
|
|
|
|
|
|
CAuto::~CAuto()
|
|
|
|
{
|
|
|
|
m_iMan->DeleteInstance(CLASS_AUTO, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destroys the object.
|
|
|
|
|
|
|
|
void CAuto::DeleteObject(bool bAll)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Initialize the object.
|
|
|
|
|
|
|
|
void CAuto::Init()
|
|
|
|
{
|
|
|
|
m_bBusy = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Starts the object.
|
|
|
|
|
|
|
|
void CAuto::Start(int param)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-11 18:59:35 +00:00
|
|
|
// Gete a type.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool CAuto::SetType(ObjectType type)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-11 18:59:35 +00:00
|
|
|
// Getes a value.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool CAuto::SetValue(int rank, float value)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-11 18:59:35 +00:00
|
|
|
// Getes the string.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool CAuto::SetString(char *string)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Management of an event.
|
|
|
|
|
|
|
|
bool CAuto::EventProcess(const Event &event)
|
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( event.type == EVENT_FRAME &&
|
|
|
|
!m_engine->GetPause() )
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
m_time += event.rTime;
|
|
|
|
UpdateInterface(event.rTime);
|
|
|
|
}
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( !m_object->GetSelect() ) // robot not selected?
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Indicates whether the controller has finished its activity.
|
|
|
|
|
|
|
|
Error CAuto::IsEnded()
|
|
|
|
{
|
|
|
|
return ERR_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stops the controller
|
|
|
|
|
|
|
|
bool CAuto::Abort()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Creates all the interface when the object is selected.
|
|
|
|
|
|
|
|
bool CAuto::CreateInterface(bool bSelect)
|
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CWindow* pw;
|
2012-06-26 20:23:05 +00:00
|
|
|
Math::Point pos, dim, ddim;
|
|
|
|
float ox, oy, sx, sy;
|
|
|
|
char name[100];
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
pw = static_cast<Ui::CWindow*>(m_interface->SearchControl(EVENT_WINDOW0));
|
|
|
|
if ( pw != nullptr )
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
pw->Flush(); // destroys the window buttons
|
|
|
|
m_interface->DeleteControl(EVENT_WINDOW0); // destroys the window
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !bSelect ) return true;
|
|
|
|
|
|
|
|
pos.x = 0.0f;
|
|
|
|
pos.y = 0.0f;
|
|
|
|
dim.x = 540.0f/640.0f;
|
|
|
|
//? dim.y = 70.0f/480.0f;
|
|
|
|
dim.y = 86.0f/480.0f;
|
|
|
|
m_interface->CreateWindows(pos, dim, 3, EVENT_WINDOW0);
|
2012-09-09 12:28:19 +00:00
|
|
|
pw = static_cast<Ui::CWindow*>(m_interface->SearchControl(EVENT_WINDOW0));
|
2012-06-26 20:23:05 +00:00
|
|
|
if ( pw == 0 ) return false;
|
|
|
|
|
|
|
|
m_object->GetTooltipName(name);
|
|
|
|
pos.x = 0.0f;
|
|
|
|
pos.y = 64.0f/480.0f;
|
|
|
|
ddim.x = 540.0f/640.0f;
|
|
|
|
ddim.y = 16.0f/480.0f;
|
|
|
|
pw->CreateLabel(pos, ddim, 0, EVENT_LABEL0, name);
|
|
|
|
|
|
|
|
dim.x = 33.0f/640.0f;
|
|
|
|
dim.y = 33.0f/480.0f;
|
|
|
|
ox = 3.0f/640.0f;
|
|
|
|
oy = 3.0f/480.0f;
|
|
|
|
sx = 33.0f/640.0f;
|
|
|
|
sy = 33.0f/480.0f;
|
|
|
|
|
|
|
|
pos.x = ox+sx*7.0f;
|
|
|
|
pos.y = oy+sy*0.6f;
|
|
|
|
ddim.x = 160.0f/640.0f;
|
|
|
|
ddim.y = 26.0f/480.0f;
|
|
|
|
pw->CreateGauge(pos, ddim, 0, EVENT_OBJECT_GPROGRESS);
|
|
|
|
|
|
|
|
if ( m_type != OBJECT_BASE &&
|
|
|
|
m_type != OBJECT_SAFE &&
|
|
|
|
m_type != OBJECT_HUSTON )
|
|
|
|
{
|
|
|
|
pos.x = ox+sx*2.1f;
|
|
|
|
pos.y = oy+sy*0;
|
|
|
|
ddim.x = dim.x*0.6f;
|
|
|
|
ddim.y = dim.y*0.6f;
|
|
|
|
pw->CreateButton(pos, ddim, 12, EVENT_OBJECT_DELETE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
pos.x = ox+sx*12.4f;
|
|
|
|
pos.y = oy+sy*1;
|
|
|
|
pw->CreateButton(pos, dim, 63, EVENT_OBJECT_BHELP);
|
|
|
|
|
|
|
|
pos.x = ox+sx*12.4f;
|
|
|
|
pos.y = oy+sy*0;
|
|
|
|
pw->CreateButton(pos, dim, 19, EVENT_OBJECT_HELP);
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( m_main->GetSceneSoluce() )
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
pos.x = ox+sx*13.4f;
|
|
|
|
pos.y = oy+sy*1;
|
|
|
|
pw->CreateButton(pos, dim, 20, EVENT_OBJECT_SOLUCE);
|
|
|
|
}
|
|
|
|
|
|
|
|
pos.x = ox+sx*13.4f;
|
|
|
|
pos.y = oy+sy*0;
|
|
|
|
pw->CreateButton(pos, dim, 10, EVENT_OBJECT_DESELECT);
|
|
|
|
#else
|
|
|
|
pos.x = ox+sx*12.3f;
|
|
|
|
pos.y = oy+sy*-0.1f;
|
|
|
|
ddim.x = dim.x*1.0f;
|
|
|
|
ddim.y = dim.y*2.1f;
|
|
|
|
pw->CreateGroup(pos, ddim, 20, EVENT_NULL); // solid blue background
|
|
|
|
|
|
|
|
pos.x = ox+sx*12.3f;
|
|
|
|
pos.y = oy+sy*1;
|
|
|
|
pw->CreateGroup(pos, dim, 19, EVENT_NULL); // sign SatCom
|
|
|
|
|
|
|
|
pos.x = ox+sx*12.4f;
|
|
|
|
pos.y = oy+sy*0.5f;
|
|
|
|
ddim.x = dim.x*0.8f;
|
|
|
|
ddim.y = dim.y*0.5f;
|
|
|
|
pw->CreateButton(pos, ddim, 18, EVENT_OBJECT_BHELP);
|
|
|
|
pos.y = oy+sy*0.0f;
|
|
|
|
pw->CreateButton(pos, ddim, 19, EVENT_OBJECT_HELP);
|
|
|
|
|
|
|
|
pos.x = ox+sx*13.4f;
|
|
|
|
pos.y = oy+sy*0;
|
|
|
|
pw->CreateButton(pos, dim, 10, EVENT_OBJECT_DESELECT);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pos.x = ox+sx*14.9f;
|
|
|
|
pos.y = oy+sy*0;
|
|
|
|
ddim.x = 14.0f/640.0f;
|
|
|
|
ddim.y = 66.0f/480.0f;
|
|
|
|
pw->CreateGauge(pos, ddim, 3, EVENT_OBJECT_GSHIELD);
|
|
|
|
|
|
|
|
UpdateInterface();
|
|
|
|
m_lastUpdateTime = 0.0f;
|
|
|
|
UpdateInterface(0.0f);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the state of a button interface.
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
void CAuto::CheckInterface(Ui::CWindow *pw, EventType event, bool bState)
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CControl* control;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
control = pw->SearchControl(event);
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( control == nullptr ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
control->SetState(Ui::STATE_CHECK, bState);
|
2012-06-26 20:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change the state of a button interface.
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
void CAuto::EnableInterface(Ui::CWindow *pw, EventType event, bool bState)
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CControl* control;
|
2012-06-26 21:01:17 +00:00
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
control = pw->SearchControl(event);
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( control == nullptr ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
control->SetState(Ui::STATE_ENABLE, bState);
|
2012-06-26 20:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change the state of a button interface.
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
void CAuto::VisibleInterface(Ui::CWindow *pw, EventType event, bool bState)
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CControl* control;
|
2012-06-26 21:01:17 +00:00
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
control = pw->SearchControl(event);
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( control == nullptr ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
control->SetState(Ui::STATE_VISIBLE, bState);
|
2012-06-26 20:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change the state of a button interface.
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
void CAuto::DeadInterface(Ui::CWindow *pw, EventType event, bool bState)
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CControl* control;
|
2012-06-26 21:01:17 +00:00
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
control = pw->SearchControl(event);
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( control == nullptr ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
control->SetState(Ui::STATE_DEAD, !bState);
|
2012-06-26 20:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Change the state of a button interface.
|
|
|
|
|
|
|
|
void CAuto::UpdateInterface()
|
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CWindow* pw;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( !m_object->GetSelect() ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
pw = static_cast<Ui::CWindow*>(m_interface->SearchControl(EVENT_WINDOW0));
|
|
|
|
if ( pw == nullptr ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
VisibleInterface(pw, EVENT_OBJECT_GPROGRESS, m_bBusy);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Updates the state of all buttons on the interface,
|
|
|
|
// following the time that elapses ...
|
|
|
|
|
|
|
|
void CAuto::UpdateInterface(float rTime)
|
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
Ui::CWindow* pw;
|
|
|
|
Ui::CGauge* pg;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
if ( m_time < m_lastUpdateTime+0.1f ) return;
|
|
|
|
m_lastUpdateTime = m_time;
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
if ( !m_object->GetSelect() ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
pw = static_cast<Ui::CWindow*>(m_interface->SearchControl(EVENT_WINDOW0));
|
|
|
|
if ( pw == nullptr ) return;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
pg = static_cast<Ui::CGauge*>(pw->SearchControl(EVENT_OBJECT_GSHIELD));
|
|
|
|
if ( pg != nullptr )
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
pg->SetLevel(m_object->GetShield());
|
2012-06-26 20:23:05 +00:00
|
|
|
}
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
pg = static_cast<Ui::CGauge*>(pw->SearchControl(EVENT_OBJECT_GPROGRESS));
|
|
|
|
if ( pg != nullptr )
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
pg->SetLevel(m_progressTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
// Geturns an error due the state of the automation.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
Error CAuto::GetError()
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Management of the occupation.
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
bool CAuto::GetBusy()
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
return m_bBusy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAuto::SetBusy(bool bBusy)
|
|
|
|
{
|
|
|
|
m_bBusy = bBusy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAuto::InitProgressTotal(float total)
|
|
|
|
{
|
|
|
|
m_progressTime = 0.0f;
|
|
|
|
m_progressTotal = total;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAuto::EventProgress(float rTime)
|
|
|
|
{
|
|
|
|
m_progressTime += rTime/m_progressTotal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Engine management.
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
bool CAuto::GetMotor()
|
2012-06-26 20:23:05 +00:00
|
|
|
{
|
|
|
|
return m_bMotor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAuto::SetMotor(bool bMotor)
|
|
|
|
{
|
|
|
|
m_bMotor = bMotor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Saves all parameters of the controller.
|
|
|
|
|
|
|
|
bool CAuto::Write(char *line)
|
|
|
|
{
|
|
|
|
char name[100];
|
|
|
|
|
|
|
|
sprintf(name, " aType=%d", m_type);
|
|
|
|
strcat(line, name);
|
|
|
|
|
|
|
|
sprintf(name, " aBusy=%d", m_bBusy);
|
|
|
|
strcat(line, name);
|
|
|
|
|
|
|
|
sprintf(name, " aTime=%.2f", m_time);
|
|
|
|
strcat(line, name);
|
|
|
|
|
|
|
|
sprintf(name, " aProgressTime=%.2f", m_progressTime);
|
|
|
|
strcat(line, name);
|
|
|
|
|
|
|
|
sprintf(name, " aProgressTotal=%.2f", m_progressTotal);
|
|
|
|
strcat(line, name);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-09 12:28:19 +00:00
|
|
|
// Geturn all settings to the controller.
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool CAuto::Read(char *line)
|
|
|
|
{
|
2012-09-09 12:28:19 +00:00
|
|
|
m_type = static_cast<ObjectType>(OpInt(line, "aType", OBJECT_NULL));
|
2012-06-26 20:23:05 +00:00
|
|
|
m_bBusy = OpInt(line, "aBusy", 0);
|
|
|
|
m_time = OpFloat(line, "aTime", 0.0f);
|
|
|
|
m_progressTime = OpFloat(line, "aProgressTime", 0.0f);
|
|
|
|
m_progressTotal = OpFloat(line, "aProgressTotal", 0.0f);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|