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/.
|
|
|
|
|
2012-10-17 19:55:45 +00:00
|
|
|
/**
|
|
|
|
* \file object/object.h
|
|
|
|
* \brief CObject - base class for all game objects
|
|
|
|
*/
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
#include "graphics/engine/engine.h"
|
|
|
|
#include "graphics/engine/camera.h"
|
2012-09-22 12:40:13 +00:00
|
|
|
|
|
|
|
#include "sound/sound.h"
|
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-22 12:40:13 +00:00
|
|
|
class CApplication;
|
2012-06-26 20:23:05 +00:00
|
|
|
class CPhysics;
|
|
|
|
class CBrain;
|
|
|
|
class CMotion;
|
|
|
|
class CAuto;
|
|
|
|
class CDisplayText;
|
|
|
|
class CRobotMain;
|
|
|
|
class CBotVar;
|
|
|
|
class CScript;
|
|
|
|
|
2012-08-10 21:31:42 +00:00
|
|
|
|
2012-10-17 21:16:19 +00:00
|
|
|
/**
|
|
|
|
* \enum ObjectType
|
|
|
|
* \brief Type of game object
|
|
|
|
*/
|
|
|
|
enum ObjectType
|
|
|
|
{
|
|
|
|
OBJECT_NULL = 0, //! < object destroyed
|
|
|
|
OBJECT_FIX = 1, //! < stationary scenery
|
2014-01-01 16:33:19 +00:00
|
|
|
OBJECT_PORTICO = 2, //! < Portico
|
|
|
|
OBJECT_BASE = 3, //! < SpaceShip
|
|
|
|
OBJECT_DERRICK = 4, //! < Derrick
|
|
|
|
OBJECT_FACTORY = 5, //! < BotFactory
|
|
|
|
OBJECT_STATION = 6, //! < PowerStation
|
|
|
|
OBJECT_CONVERT = 7, //! < Converter
|
|
|
|
OBJECT_REPAIR = 8, //! < RepairStation
|
|
|
|
OBJECT_TOWER = 9, //! < DefenseTower
|
|
|
|
OBJECT_NEST = 10, //! < AlienNest
|
|
|
|
OBJECT_RESEARCH = 11, //! < ResearchCenter
|
|
|
|
OBJECT_RADAR = 12, //! < RadarStation
|
|
|
|
OBJECT_ENERGY = 13, //! < PowerPlant
|
|
|
|
OBJECT_LABO = 14, //! < AutoLab
|
|
|
|
OBJECT_NUCLEAR = 15, //! < NuclearPlant
|
|
|
|
OBJECT_START = 16, //! < StartArea
|
|
|
|
OBJECT_END = 17, //! < EndArea
|
|
|
|
OBJECT_INFO = 18, //! < ExchangePost
|
|
|
|
OBJECT_PARA = 19, //! < PowerCaptor
|
|
|
|
OBJECT_TARGET1 = 20, //! < Target1 (gate)
|
|
|
|
OBJECT_TARGET2 = 21, //! < Target2 (center)
|
|
|
|
OBJECT_SAFE = 22, //! < Vault
|
|
|
|
OBJECT_HUSTON = 23, //! < Houston
|
|
|
|
OBJECT_DESTROYER = 24, //! < Destroyer
|
|
|
|
OBJECT_FRET = 30, //! < transportable (unused)
|
|
|
|
OBJECT_STONE = 31, //! < TitaniumOre
|
|
|
|
OBJECT_URANIUM = 32, //! < UraniumOre
|
|
|
|
OBJECT_METAL = 33, //! < Titanium
|
|
|
|
OBJECT_POWER = 34, //! < PowerCell
|
|
|
|
OBJECT_ATOMIC = 35, //! < NuclearCell
|
|
|
|
OBJECT_BULLET = 36, //! < OrgaMatter
|
|
|
|
OBJECT_BBOX = 37, //! < BlackBox
|
|
|
|
OBJECT_TNT = 38, //! < TNT
|
|
|
|
OBJECT_SCRAP1 = 40, //! < Scrap1 (metal)
|
|
|
|
OBJECT_SCRAP2 = 41, //! < Scrap2 (metal)
|
|
|
|
OBJECT_SCRAP3 = 42, //! < Scrap3 (metal)
|
|
|
|
OBJECT_SCRAP4 = 43, //! < Scrap4 (plastic)
|
|
|
|
OBJECT_SCRAP5 = 44, //! < Scrap5 (plastic)
|
|
|
|
OBJECT_MARKPOWER = 50, //! < PowerSpot
|
|
|
|
OBJECT_MARKSTONE = 51, //! < TitaniumSpot
|
|
|
|
OBJECT_MARKURANIUM = 52, //! < UraniumSpot
|
|
|
|
OBJECT_MARKKEYa = 53, //! < KeyASpot
|
|
|
|
OBJECT_MARKKEYb = 54, //! < KeyBSpot
|
|
|
|
OBJECT_MARKKEYc = 55, //! < KeyCSpot
|
|
|
|
OBJECT_MARKKEYd = 56, //! < KeyDSpot
|
|
|
|
OBJECT_BOMB = 60, //! < Mine
|
|
|
|
OBJECT_WINFIRE = 61, //! < Firework
|
|
|
|
OBJECT_SHOW = 62, //! < arrow above object (Visit)
|
|
|
|
OBJECT_BAG = 63, //! < Bag
|
|
|
|
OBJECT_PLANT0 = 70, //! < Greenery0
|
|
|
|
OBJECT_PLANT1 = 71, //! < Greenery1
|
|
|
|
OBJECT_PLANT2 = 72, //! < Greenery2
|
|
|
|
OBJECT_PLANT3 = 73, //! < Greenery3
|
|
|
|
OBJECT_PLANT4 = 74, //! < Greenery4
|
|
|
|
OBJECT_PLANT5 = 75, //! < Greenery5
|
|
|
|
OBJECT_PLANT6 = 76, //! < Greenery6
|
|
|
|
OBJECT_PLANT7 = 77, //! < Greenery7
|
|
|
|
OBJECT_PLANT8 = 78, //! < Greenery8
|
|
|
|
OBJECT_PLANT9 = 79, //! < Greenery9
|
|
|
|
OBJECT_PLANT10 = 80, //! < Greenery10
|
|
|
|
OBJECT_PLANT11 = 81, //! < Greenery11
|
|
|
|
OBJECT_PLANT12 = 82, //! < Greenery12
|
|
|
|
OBJECT_PLANT13 = 83, //! < Greenery13
|
|
|
|
OBJECT_PLANT14 = 84, //! < Greenery14
|
|
|
|
OBJECT_PLANT15 = 85, //! < Greenery15
|
|
|
|
OBJECT_PLANT16 = 86, //! < Greenery16
|
|
|
|
OBJECT_PLANT17 = 87, //! < Greenery17
|
|
|
|
OBJECT_PLANT18 = 88, //! < Greenery18
|
|
|
|
OBJECT_PLANT19 = 89, //! < Greenery19
|
|
|
|
OBJECT_TREE0 = 90, //! < Tree0
|
|
|
|
OBJECT_TREE1 = 91, //! < Tree1
|
|
|
|
OBJECT_TREE2 = 92, //! < Tree2
|
|
|
|
OBJECT_TREE3 = 93, //! < Tree3
|
|
|
|
OBJECT_TREE4 = 94, //! < Tree4
|
|
|
|
OBJECT_TREE5 = 95, //! < Tree5
|
2013-12-29 14:03:21 +00:00
|
|
|
OBJECT_MOBILEwt = 100, //! < PracticeBot
|
|
|
|
OBJECT_MOBILEtt = 101, //! < track-trainer (unused)
|
|
|
|
OBJECT_MOBILEft = 102, //! < fly-trainer (unused)
|
|
|
|
OBJECT_MOBILEit = 103, //! < insect-trainer (unused)
|
|
|
|
OBJECT_MOBILEwa = 110, //! < WheeledGrabber
|
|
|
|
OBJECT_MOBILEta = 111, //! < TrackedGrabber
|
|
|
|
OBJECT_MOBILEfa = 112, //! < WingedGrabber
|
|
|
|
OBJECT_MOBILEia = 113, //! < LeggedGrabber
|
|
|
|
OBJECT_MOBILEwc = 120, //! < WheeledShooter
|
|
|
|
OBJECT_MOBILEtc = 121, //! < TrackedShooter
|
|
|
|
OBJECT_MOBILEfc = 122, //! < WingedShooter
|
|
|
|
OBJECT_MOBILEic = 123, //! < LeggedShooter
|
|
|
|
OBJECT_MOBILEwi = 130, //! < WheeledOrgaShooter
|
|
|
|
OBJECT_MOBILEti = 131, //! < TrackedOrgaShooter
|
|
|
|
OBJECT_MOBILEfi = 132, //! < WingedOrgaShooter
|
|
|
|
OBJECT_MOBILEii = 133, //! < LeggedOrgaShooter
|
|
|
|
OBJECT_MOBILEws = 140, //! < WheeledSniffer
|
|
|
|
OBJECT_MOBILEts = 141, //! < TrackedSniffer
|
|
|
|
OBJECT_MOBILEfs = 142, //! < WingedSniffer
|
|
|
|
OBJECT_MOBILEis = 143, //! < LeggedSniffer
|
|
|
|
OBJECT_MOBILErt = 200, //! < Thumper
|
|
|
|
OBJECT_MOBILErc = 201, //! < PhazerShooter
|
|
|
|
OBJECT_MOBILErr = 202, //! < Recycler
|
|
|
|
OBJECT_MOBILErs = 203, //! < Shielder
|
|
|
|
OBJECT_MOBILEsa = 210, //! < Subber
|
|
|
|
OBJECT_MOBILEtg = 211, //! < TargetBot
|
|
|
|
OBJECT_MOBILEdr = 212, //! < Scribbler
|
|
|
|
OBJECT_CONTROLLER = 213, //! < MissionController
|
2014-01-01 16:33:19 +00:00
|
|
|
OBJECT_WAYPOINT = 250, //! < WayPoint
|
|
|
|
OBJECT_FLAGb = 260, //! < BlueFlag
|
|
|
|
OBJECT_FLAGr = 261, //! < RedFlag
|
|
|
|
OBJECT_FLAGg = 262, //! < GreenFlag
|
|
|
|
OBJECT_FLAGy = 263, //! < YellowFlag
|
|
|
|
OBJECT_FLAGv = 264, //! < VioletFlag
|
|
|
|
OBJECT_KEYa = 270, //! < KeyA
|
|
|
|
OBJECT_KEYb = 271, //! < KeyB
|
|
|
|
OBJECT_KEYc = 272, //! < KeyC
|
|
|
|
OBJECT_KEYd = 273, //! < KeyD
|
|
|
|
OBJECT_HUMAN = 300, //! < Me
|
|
|
|
OBJECT_TOTO = 301, //! < Robby (toto)
|
|
|
|
OBJECT_TECH = 302, //! < Tech
|
|
|
|
OBJECT_BARRIER0 = 400, //! < Barrier0
|
|
|
|
OBJECT_BARRIER1 = 401, //! < Barrier1
|
|
|
|
OBJECT_BARRIER2 = 402, //! < Barrier2
|
|
|
|
OBJECT_BARRIER3 = 403, //! < Barrier3
|
|
|
|
OBJECT_MOTHER = 500, //! < AlienQueen
|
|
|
|
OBJECT_EGG = 501, //! < AlienEgg
|
|
|
|
OBJECT_ANT = 502, //! < AlienAnt
|
|
|
|
OBJECT_SPIDER = 503, //! < AlienSpider
|
|
|
|
OBJECT_BEE = 504, //! < AlienWasp
|
|
|
|
OBJECT_WORM = 505, //! < AlienWorm
|
|
|
|
OBJECT_RUINmobilew1 = 600, //! < WreckBotw1
|
|
|
|
OBJECT_RUINmobilew2 = 601, //! < WreckBotw2
|
|
|
|
OBJECT_RUINmobilet1 = 602, //! < WreckBott1
|
|
|
|
OBJECT_RUINmobilet2 = 603, //! < WreckBott2
|
|
|
|
OBJECT_RUINmobiler1 = 604, //! < WreckBotr1
|
|
|
|
OBJECT_RUINmobiler2 = 605, //! < WreckBotr2
|
|
|
|
OBJECT_RUINfactory = 606, //! < RuinBotFactory
|
|
|
|
OBJECT_RUINdoor = 607, //! < RuinDoor
|
|
|
|
OBJECT_RUINsupport = 608, //! < RuinSupport
|
|
|
|
OBJECT_RUINradar = 609, //! < RuinRadar
|
|
|
|
OBJECT_RUINconvert = 610, //! < RuinConvert
|
|
|
|
OBJECT_RUINbase = 611, //! < RuinBaseCamp
|
|
|
|
OBJECT_RUINhead = 612, //! < RuinHeadCamp
|
|
|
|
OBJECT_TEEN0 = 620, //! < Teen0
|
|
|
|
OBJECT_TEEN1 = 621, //! < Teen1
|
|
|
|
OBJECT_TEEN2 = 622, //! < Teen2
|
|
|
|
OBJECT_TEEN3 = 623, //! < Teen3
|
|
|
|
OBJECT_TEEN4 = 624, //! < Teen4
|
|
|
|
OBJECT_TEEN5 = 625, //! < Teen5
|
|
|
|
OBJECT_TEEN6 = 626, //! < Teen6
|
|
|
|
OBJECT_TEEN7 = 627, //! < Teen7
|
|
|
|
OBJECT_TEEN8 = 628, //! < Teen8
|
|
|
|
OBJECT_TEEN9 = 629, //! < Teen9
|
|
|
|
OBJECT_TEEN10 = 630, //! < Teen10
|
|
|
|
OBJECT_TEEN11 = 631, //! < Teen11
|
|
|
|
OBJECT_TEEN12 = 632, //! < Teen12
|
|
|
|
OBJECT_TEEN13 = 633, //! < Teen13
|
|
|
|
OBJECT_TEEN14 = 634, //! < Teen14
|
|
|
|
OBJECT_TEEN15 = 635, //! < Teen15
|
|
|
|
OBJECT_TEEN16 = 636, //! < Teen16
|
|
|
|
OBJECT_TEEN17 = 637, //! < Teen17
|
|
|
|
OBJECT_TEEN18 = 638, //! < Teen18
|
|
|
|
OBJECT_TEEN19 = 639, //! < Teen19
|
|
|
|
OBJECT_TEEN20 = 640, //! < Teen20
|
|
|
|
OBJECT_TEEN21 = 641, //! < Teen21
|
|
|
|
OBJECT_TEEN22 = 642, //! < Teen22
|
|
|
|
OBJECT_TEEN23 = 643, //! < Teen23
|
|
|
|
OBJECT_TEEN24 = 644, //! < Teen24
|
|
|
|
OBJECT_TEEN25 = 645, //! < Teen25
|
|
|
|
OBJECT_TEEN26 = 646, //! < Teen26
|
|
|
|
OBJECT_TEEN27 = 647, //! < Teen27
|
|
|
|
OBJECT_TEEN28 = 648, //! < Teen28
|
|
|
|
OBJECT_TEEN29 = 649, //! < Teen29
|
|
|
|
OBJECT_TEEN30 = 650, //! < Teen30
|
|
|
|
OBJECT_TEEN31 = 651, //! < Teen31
|
|
|
|
OBJECT_TEEN32 = 652, //! < Teen32
|
|
|
|
OBJECT_TEEN33 = 653, //! < Teen33
|
|
|
|
OBJECT_TEEN34 = 654, //! < Stone (Teen34)
|
|
|
|
OBJECT_TEEN35 = 655, //! < Teen35
|
|
|
|
OBJECT_TEEN36 = 656, //! < Teen36
|
|
|
|
OBJECT_TEEN37 = 657, //! < Teen37
|
|
|
|
OBJECT_TEEN38 = 658, //! < Teen38
|
|
|
|
OBJECT_TEEN39 = 659, //! < Teen39
|
|
|
|
OBJECT_TEEN40 = 660, //! < Teen40
|
|
|
|
OBJECT_TEEN41 = 661, //! < Teen41
|
|
|
|
OBJECT_TEEN42 = 662, //! < Teen42
|
|
|
|
OBJECT_TEEN43 = 663, //! < Teen43
|
|
|
|
OBJECT_TEEN44 = 664, //! < Teen44
|
|
|
|
OBJECT_QUARTZ0 = 700, //! < Quartz0
|
|
|
|
OBJECT_QUARTZ1 = 701, //! < Quartz1
|
|
|
|
OBJECT_QUARTZ2 = 702, //! < Quartz2
|
|
|
|
OBJECT_QUARTZ3 = 703, //! < Quartz3
|
|
|
|
OBJECT_ROOT0 = 710, //! < MegaStalk0
|
|
|
|
OBJECT_ROOT1 = 711, //! < MegaStalk1
|
|
|
|
OBJECT_ROOT2 = 712, //! < MegaStalk2
|
|
|
|
OBJECT_ROOT3 = 713, //! < MegaStalk3
|
|
|
|
OBJECT_ROOT4 = 714, //! < MegaStalk4
|
|
|
|
OBJECT_ROOT5 = 715, //! < MegaStalk5
|
|
|
|
OBJECT_MUSHROOM1 = 731, //! < Mushroom1
|
|
|
|
OBJECT_MUSHROOM2 = 732, //! < Mushroom2
|
|
|
|
OBJECT_APOLLO1 = 900, //! < ApolloLEM
|
|
|
|
OBJECT_APOLLO2 = 901, //! < ApolloJeep
|
|
|
|
OBJECT_APOLLO3 = 902, //! < ApolloFlag
|
|
|
|
OBJECT_APOLLO4 = 903, //! < ApolloModule
|
|
|
|
OBJECT_APOLLO5 = 904, //! < ApolloAntenna
|
|
|
|
OBJECT_HOME1 = 910, //! < Home
|
2012-10-17 21:16:19 +00:00
|
|
|
|
|
|
|
OBJECT_MAX = 1000 //! < number of values
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
// The father of all parts must always be the part number zero!
|
|
|
|
|
|
|
|
const int OBJECTMAXPART = 40;
|
|
|
|
const int MAXCRASHSPHERE = 40;
|
|
|
|
const int OBJECTMAXDESELLIST = 10;
|
|
|
|
const int OBJECTMAXINFO = 10;
|
|
|
|
const int OBJECTMAXCMDLINE = 20;
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
enum ObjectMaterial
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
OM_METAL = 0, // metal
|
|
|
|
OM_PLASTIC = 1, // plastic
|
|
|
|
OM_HUMAN = 2, // cosmonaut
|
|
|
|
OM_ANIMAL = 3, // insect
|
|
|
|
OM_VEGETAL = 4, // plant
|
|
|
|
OM_MINERAL = 5, // stone
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
2013-12-29 14:03:21 +00:00
|
|
|
enum DriveType
|
|
|
|
{
|
|
|
|
DRIVE_OTHER = 0,
|
|
|
|
DRIVE_WHEELED,
|
|
|
|
DRIVE_TRACKED,
|
|
|
|
DRIVE_WINGED,
|
|
|
|
DRIVE_LEGGED,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ToolType
|
|
|
|
{
|
|
|
|
TOOL_OTHER = 0,
|
|
|
|
TOOL_GRABBER,
|
|
|
|
TOOL_SNIFFER,
|
|
|
|
TOOL_SHOOTER,
|
|
|
|
TOOL_ORGASHOOTER,
|
|
|
|
};
|
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
struct ObjectPart
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
char bUsed;
|
|
|
|
int object; // number of the object in CEngine
|
|
|
|
int parentPart; // number of father part
|
|
|
|
int masterParti; // master canal of the particle
|
|
|
|
Math::Vector position;
|
|
|
|
Math::Vector angle;
|
|
|
|
Math::Vector zoom;
|
|
|
|
char bTranslate;
|
|
|
|
char bRotate;
|
|
|
|
char bZoom;
|
|
|
|
Math::Matrix matTranslate;
|
|
|
|
Math::Matrix matRotate;
|
|
|
|
Math::Matrix matTransform;
|
|
|
|
Math::Matrix matWorld;
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Character
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
float wheelFront; // position X of the front wheels
|
|
|
|
float wheelBack; // position X of the back wheels
|
|
|
|
float wheelLeft; // position Z of the left wheels
|
|
|
|
float wheelRight; // position Z of the right wheels
|
|
|
|
float height; // normal height on top of ground
|
|
|
|
Math::Vector posPower; // position of the battery
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Info
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
char name[20]; // name of the information
|
|
|
|
float value; // value of the information
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ExploType
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
EXPLO_BOUM = 1,
|
|
|
|
EXPLO_BURN = 2,
|
|
|
|
EXPLO_WATER = 3,
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ResetCap
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
RESET_NONE = 0,
|
|
|
|
RESET_MOVE = 1,
|
|
|
|
RESET_DELETE = 2,
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum RadarFilter
|
|
|
|
{
|
2012-09-10 21:29:38 +00:00
|
|
|
FILTER_NONE = 0,
|
|
|
|
FILTER_ONLYLANDING = 1,
|
|
|
|
FILTER_ONLYFLYING = 2,
|
2012-06-26 20:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CObject
|
|
|
|
{
|
|
|
|
public:
|
2013-02-16 21:37:43 +00:00
|
|
|
CObject();
|
2012-06-26 20:23:05 +00:00
|
|
|
~CObject();
|
|
|
|
|
|
|
|
void DeleteObject(bool bAll=false);
|
|
|
|
void Simplify();
|
|
|
|
bool ExploObject(ExploType type, float force, float decay=1.0f);
|
|
|
|
|
|
|
|
bool EventProcess(const Event &event);
|
|
|
|
void UpdateMapping();
|
|
|
|
|
|
|
|
int CreatePart();
|
|
|
|
void DeletePart(int part);
|
|
|
|
void SetObjectRank(int part, int objRank);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetObjectRank(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetObjectParent(int part, int parent);
|
|
|
|
void SetType(ObjectType type);
|
2012-08-09 20:50:04 +00:00
|
|
|
ObjectType GetType();
|
|
|
|
char* GetName();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetOption(int option);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetOption();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetID(int id);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetID();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool Write(char *line);
|
|
|
|
bool Read(char *line);
|
|
|
|
|
|
|
|
void SetDrawWorld(bool bDraw);
|
|
|
|
void SetDrawFront(bool bDraw);
|
|
|
|
|
|
|
|
bool CreateVehicle(Math::Vector pos, float angle, ObjectType type, float power, bool bTrainer, bool bToy);
|
|
|
|
bool CreateInsect(Math::Vector pos, float angle, ObjectType type);
|
|
|
|
bool CreateBuilding(Math::Vector pos, float angle, float height, ObjectType type, float power=1.0f);
|
|
|
|
bool CreateResource(Math::Vector pos, float angle, ObjectType type, float power=1.0f);
|
|
|
|
bool CreateFlag(Math::Vector pos, float angle, ObjectType type);
|
|
|
|
bool CreateBarrier(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreatePlant(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreateMushroom(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreateTeen(Math::Vector pos, float angle, float zoom, float height, ObjectType type);
|
|
|
|
bool CreateQuartz(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreateRoot(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreateHome(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreateRuin(Math::Vector pos, float angle, float height, ObjectType type);
|
|
|
|
bool CreateApollo(Math::Vector pos, float angle, ObjectType type);
|
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
bool ReadProgram(int rank, const char* filename);
|
2012-06-26 20:23:05 +00:00
|
|
|
bool WriteProgram(int rank, char* filename);
|
|
|
|
bool RunProgram(int rank);
|
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetShadowLight();
|
|
|
|
int GetEffectLight();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void FlushCrashShere();
|
|
|
|
int CreateCrashSphere(Math::Vector pos, float radius, Sound sound, float hardness=0.45f);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetCrashSphereTotal();
|
2012-06-26 20:23:05 +00:00
|
|
|
bool GetCrashSphere(int rank, Math::Vector &pos, float &radius);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetCrashSphereHardness(int rank);
|
|
|
|
Sound GetCrashSphereSound(int rank);
|
2012-06-26 20:23:05 +00:00
|
|
|
void DeleteCrashSphere(int rank);
|
|
|
|
void SetGlobalSphere(Math::Vector pos, float radius);
|
|
|
|
void GetGlobalSphere(Math::Vector &pos, float &radius);
|
|
|
|
void SetJotlerSphere(Math::Vector pos, float radius);
|
|
|
|
void GetJotlerSphere(Math::Vector &pos, float &radius);
|
|
|
|
void SetShieldRadius(float radius);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetShieldRadius();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetFloorHeight(float height);
|
|
|
|
void FloorAdjust();
|
|
|
|
|
|
|
|
void SetLinVibration(Math::Vector dir);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetLinVibration();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetCirVibration(Math::Vector dir);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetCirVibration();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetInclinaison(Math::Vector dir);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetInclinaison();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetPosition(int part, const Math::Vector &pos);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetPosition(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetAngle(int part, const Math::Vector &angle);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetAngle(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetAngleY(int part, float angle);
|
|
|
|
void SetAngleX(int part, float angle);
|
|
|
|
void SetAngleZ(int part, float angle);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetAngleY(int part);
|
|
|
|
float GetAngleX(int part);
|
|
|
|
float GetAngleZ(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetZoom(int part, float zoom);
|
|
|
|
void SetZoom(int part, Math::Vector zoom);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetZoom(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetZoomX(int part, float zoom);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetZoomX(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetZoomY(int part, float zoom);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetZoomY(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetZoomZ(int part, float zoom);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetZoomZ(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetWaterLevel();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetTrainer(bool bEnable);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetTrainer();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetToy(bool bEnable);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetToy();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetManual(bool bManual);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetManual();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetResetCap(ResetCap cap);
|
2012-08-09 20:50:04 +00:00
|
|
|
ResetCap GetResetCap();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetResetBusy(bool bBusy);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetResetBusy();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetResetPosition(const Math::Vector &pos);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetResetPosition();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetResetAngle(const Math::Vector &angle);
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Vector GetResetAngle();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetResetRun(int run);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetResetRun();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-09-10 21:29:38 +00:00
|
|
|
void SetMasterParticle(int part, int parti);
|
|
|
|
int GetMasterParticle(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetPower(CObject* power);
|
2012-08-09 20:50:04 +00:00
|
|
|
CObject* GetPower();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetFret(CObject* fret);
|
2012-08-09 20:50:04 +00:00
|
|
|
CObject* GetFret();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetTruck(CObject* truck);
|
2012-08-09 20:50:04 +00:00
|
|
|
CObject* GetTruck();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetTruckPart(int part);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetTruckPart();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void InfoFlush();
|
|
|
|
void DeleteInfo(int rank);
|
|
|
|
void SetInfo(int rank, Info info);
|
2012-08-09 20:50:04 +00:00
|
|
|
Info GetInfo(int rank);
|
|
|
|
int GetInfoTotal();
|
2012-09-10 21:29:38 +00:00
|
|
|
void SetInfoReturn(float value);
|
|
|
|
float GetInfoReturn();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetInfoUpdate(bool bUpdate);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetInfoUpdate();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool SetCmdLine(int rank, float value);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetCmdLine(int rank);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
Math::Matrix* GetRotateMatrix(int part);
|
|
|
|
Math::Matrix* GetTranslateMatrix(int part);
|
|
|
|
Math::Matrix* GetTransformMatrix(int part);
|
|
|
|
Math::Matrix* GetWorldMatrix(int part);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
void SetViewFromHere(Math::Vector &eye, float &dirH, float &dirV,
|
|
|
|
Math::Vector &lookat, Math::Vector &upVec,
|
|
|
|
Gfx::CameraType type);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetCharacter(Character* character);
|
|
|
|
void GetCharacter(Character* character);
|
2012-08-09 20:50:04 +00:00
|
|
|
Character* GetCharacter();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetAbsTime();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetEnergy(float level);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetEnergy();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetCapacity(float capacity);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetCapacity();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetShield(float level);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetShield();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetRange(float delay);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetRange();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetTransparency(float value);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetTransparency();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
ObjectMaterial GetMaterial();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetGadget(bool bMode);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetGadget();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetFixed(bool bFixed);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetFixed();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetClip(bool bClip);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetClip();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool JostleObject(float force);
|
|
|
|
|
|
|
|
void StartDetectEffect(CObject *target, bool bFound);
|
|
|
|
|
|
|
|
void SetVirusMode(bool bEnable);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetVirusMode();
|
|
|
|
float GetVirusTime();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
void SetCameraType(Gfx::CameraType type);
|
|
|
|
Gfx::CameraType GetCameraType();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetCameraDist(float dist);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetCameraDist();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetCameraLock(bool bLock);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetCameraLock();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetHilite(bool bMode);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetHilite();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetSelect(bool bMode, bool bDisplayError=true);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetSelect(bool bReal=false);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetSelectable(bool bMode);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetSelectable();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetActivity(bool bMode);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetActivity();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetVisible(bool bVisible);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetVisible();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetEnable(bool bEnable);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetEnable();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetCheckToken(bool bMode);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetCheckToken();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetProxyActivate(bool bActivate);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetProxyActivate();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetProxyDistance(float distance);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetProxyDistance();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetMagnifyDamage(float factor);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetMagnifyDamage();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetParam(float value);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetParam();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetExplo(bool bExplo);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetExplo();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetLock(bool bLock);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetLock();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetCargo(bool bCargo);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetCargo();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetBurn(bool bBurn);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetBurn();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetDead(bool bDead);
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetDead();
|
|
|
|
bool GetRuin();
|
|
|
|
bool GetActif();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetGunGoalV(float gunGoal);
|
|
|
|
void SetGunGoalH(float gunGoal);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetGunGoalV();
|
|
|
|
float GetGunGoalH();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
bool StartShowLimit();
|
|
|
|
void StopShowLimit();
|
|
|
|
|
|
|
|
bool IsProgram();
|
2012-09-10 21:29:38 +00:00
|
|
|
void CreateSelectParticle();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void SetRunScript(CScript* script);
|
2012-08-09 20:50:04 +00:00
|
|
|
CScript* GetRunScript();
|
|
|
|
CBotVar* GetBotVar();
|
|
|
|
CPhysics* GetPhysics();
|
|
|
|
CBrain* GetBrain();
|
|
|
|
CMotion* GetMotion();
|
|
|
|
CAuto* GetAuto();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetAuto(CAuto* automat);
|
|
|
|
|
|
|
|
void SetDefRank(int rank);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetDefRank();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
2013-12-02 23:11:26 +00:00
|
|
|
bool GetTooltipName(std::string& name);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void AddDeselList(CObject* pObj);
|
|
|
|
CObject* SubDeselList();
|
|
|
|
void DeleteDeselList(CObject* pObj);
|
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
bool CreateShadowCircle(float radius, float intensity, Gfx::EngineShadowType type = Gfx::ENG_SHADOW_NORM);
|
|
|
|
bool CreateShadowLight(float height, Gfx::Color color);
|
|
|
|
bool CreateEffectLight(float height, Gfx::Color color);
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
void FlatParent();
|
|
|
|
|
2012-08-09 20:50:04 +00:00
|
|
|
bool GetTraceDown();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetTraceDown(bool bDown);
|
2012-08-09 20:50:04 +00:00
|
|
|
int GetTraceColor();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetTraceColor(int color);
|
2012-08-09 20:50:04 +00:00
|
|
|
float GetTraceWidth();
|
2012-06-26 20:23:05 +00:00
|
|
|
void SetTraceWidth(float width);
|
|
|
|
|
2012-09-22 12:40:13 +00:00
|
|
|
std::string GetModelDirName();
|
2013-12-29 14:03:21 +00:00
|
|
|
|
|
|
|
static DriveType GetDriveFromObject(ObjectType type);
|
|
|
|
static ToolType GetToolFromObject(ObjectType type);
|
2012-09-22 12:40:13 +00:00
|
|
|
|
2012-06-26 20:23:05 +00:00
|
|
|
protected:
|
|
|
|
bool EventFrame(const Event &event);
|
|
|
|
void VirusFrame(float rTime);
|
|
|
|
void PartiFrame(float rTime);
|
|
|
|
void CreateOtherObject(ObjectType type);
|
|
|
|
void InitPart(int part);
|
|
|
|
void UpdateTotalPart();
|
|
|
|
int SearchDescendant(int parent, int n);
|
|
|
|
void UpdateEnergyMapping();
|
|
|
|
bool UpdateTransformObject(int part, bool bForceUpdate);
|
|
|
|
bool UpdateTransformObject();
|
2012-09-10 21:29:38 +00:00
|
|
|
void UpdateSelectParticle();
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
protected:
|
2012-09-22 12:40:13 +00:00
|
|
|
CApplication* m_app;
|
2012-09-10 21:29:38 +00:00
|
|
|
Gfx::CEngine* m_engine;
|
|
|
|
Gfx::CLightManager* m_lightMan;
|
|
|
|
Gfx::CTerrain* m_terrain;
|
|
|
|
Gfx::CWater* m_water;
|
|
|
|
Gfx::CCamera* m_camera;
|
|
|
|
Gfx::CParticle* m_particle;
|
|
|
|
CPhysics* m_physics;
|
|
|
|
CBrain* m_brain;
|
|
|
|
CMotion* m_motion;
|
|
|
|
CAuto* m_auto;
|
|
|
|
CRobotMain* m_main;
|
|
|
|
CSoundInterface* m_sound;
|
|
|
|
CBotVar* m_botVar;
|
|
|
|
CScript* m_runScript;
|
2012-06-26 20:23:05 +00:00
|
|
|
|
|
|
|
ObjectType m_type; // OBJECT_*
|
|
|
|
int m_id; // unique identifier
|
|
|
|
char m_name[50]; // name of the object
|
|
|
|
Character m_character; // characteristic
|
|
|
|
int m_option; // option
|
|
|
|
int m_partiReactor; // number of the particle of the reactor
|
|
|
|
int m_shadowLight; // number of light from the shadows
|
|
|
|
float m_shadowHeight; // height of light from the shadows
|
|
|
|
int m_effectLight; // number of light effects
|
|
|
|
float m_effectHeight; // height of light effects
|
|
|
|
Math::Vector m_linVibration; // linear vibration
|
|
|
|
Math::Vector m_cirVibration; // circular vibration
|
|
|
|
Math::Vector m_inclinaison; // tilt
|
|
|
|
CObject* m_power; // battery used by the vehicle
|
|
|
|
CObject* m_fret; // object transported
|
|
|
|
CObject* m_truck; // object with the latter
|
|
|
|
int m_truckLink; // part
|
|
|
|
float m_energy; // energy contained (if battery)
|
|
|
|
float m_lastEnergy;
|
|
|
|
float m_capacity; // capacity (if battery)
|
|
|
|
float m_shield; // shield
|
|
|
|
float m_range; // flight range
|
|
|
|
float m_transparency; // transparency (0..1)
|
|
|
|
int m_material; // matter(0..n)
|
|
|
|
float m_aTime;
|
|
|
|
float m_shotTime; // time since last shot
|
|
|
|
bool m_bVirusMode; // virus activated/triggered
|
|
|
|
float m_virusTime; // lifetime of the virus
|
2012-09-10 21:29:38 +00:00
|
|
|
float m_lastVirusParticle;
|
|
|
|
float m_lastParticle;
|
2012-06-26 20:23:05 +00:00
|
|
|
bool m_bHilite;
|
|
|
|
bool m_bSelect; // object selected
|
|
|
|
bool m_bSelectable; // selectable object
|
|
|
|
bool m_bCheckToken; // object with audited tokens
|
|
|
|
bool m_bVisible; // object active but undetectable
|
|
|
|
bool m_bEnable; // dead object
|
|
|
|
bool m_bProxyActivate; // active object so close
|
|
|
|
bool m_bGadget; // object nonessential
|
|
|
|
bool m_bLock;
|
|
|
|
bool m_bExplo;
|
|
|
|
bool m_bCargo;
|
|
|
|
bool m_bBurn;
|
|
|
|
bool m_bDead;
|
|
|
|
bool m_bFlat;
|
|
|
|
bool m_bTrainer; // drive vehicle (without remote)
|
|
|
|
bool m_bToy; // toy key
|
|
|
|
bool m_bManual; // manual control (Scribbler)
|
|
|
|
bool m_bFixed;
|
|
|
|
bool m_bClip;
|
|
|
|
bool m_bShowLimit;
|
|
|
|
float m_showLimitRadius;
|
|
|
|
float m_gunGoalV;
|
|
|
|
float m_gunGoalH;
|
2012-08-09 20:50:04 +00:00
|
|
|
Gfx::CameraType m_cameraType;
|
2012-06-26 20:23:05 +00:00
|
|
|
float m_cameraDist;
|
|
|
|
bool m_bCameraLock;
|
|
|
|
int m_defRank;
|
|
|
|
float m_magnifyDamage;
|
|
|
|
float m_proxyDistance;
|
|
|
|
float m_param;
|
|
|
|
|
|
|
|
int m_crashSphereUsed; // number of spheres used
|
|
|
|
Math::Vector m_crashSpherePos[MAXCRASHSPHERE];
|
|
|
|
float m_crashSphereRadius[MAXCRASHSPHERE];
|
|
|
|
float m_crashSphereHardness[MAXCRASHSPHERE];
|
|
|
|
Sound m_crashSphereSound[MAXCRASHSPHERE];
|
|
|
|
Math::Vector m_globalSpherePos;
|
|
|
|
float m_globalSphereRadius;
|
|
|
|
Math::Vector m_jotlerSpherePos;
|
|
|
|
float m_jotlerSphereRadius;
|
|
|
|
float m_shieldRadius;
|
|
|
|
|
|
|
|
int m_totalPart;
|
|
|
|
ObjectPart m_objectPart[OBJECTMAXPART];
|
|
|
|
|
|
|
|
int m_totalDesectList;
|
|
|
|
CObject* m_objectDeselectList[OBJECTMAXDESELLIST];
|
|
|
|
|
|
|
|
int m_partiSel[4];
|
|
|
|
|
|
|
|
ResetCap m_resetCap;
|
|
|
|
bool m_bResetBusy;
|
|
|
|
Math::Vector m_resetPosition;
|
|
|
|
Math::Vector m_resetAngle;
|
|
|
|
int m_resetRun;
|
|
|
|
|
|
|
|
int m_infoTotal;
|
|
|
|
Info m_info[OBJECTMAXINFO];
|
2012-09-10 21:29:38 +00:00
|
|
|
float m_infoReturn;
|
2012-06-26 20:23:05 +00:00
|
|
|
bool m_bInfoUpdate;
|
|
|
|
|
|
|
|
float m_cmdLine[OBJECTMAXCMDLINE];
|
|
|
|
};
|
|
|
|
|