pioneer/src/SpaceStation.cpp

882 lines
25 KiB
C++
Raw Normal View History

2012-12-31 17:36:52 -08:00
// Copyright © 2008-2013 Pioneer Developers. See AUTHORS.txt for details
2012-09-15 17:59:15 -07:00
// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
2012-09-12 04:38:30 -07:00
#include "SpaceStation.h"
#include "CityOnPlanet.h"
#include "FileSystem.h"
#include "Frame.h"
#include "Game.h"
#include "gameconsts.h"
#include "Lang.h"
#include "LuaEvent.h"
#include "LuaVector.h"
#include "Pi.h"
#include "Planet.h"
#include "Player.h"
#include "Polit.h"
#include "Polit.h"
#include "Serializer.h"
#include "Ship.h"
#include "Space.h"
#include "StringF.h"
#include "galaxy/StarSystem.h"
#include "graphics/Graphics.h"
#include <algorithm>
void SpaceStation::Init()
2013-01-06 05:47:38 -08:00
{
SpaceStationType::Init();
}
2011-10-08 21:05:09 -07:00
void SpaceStation::Uninit()
{
SpaceStationType::Uninit();
2011-10-08 21:05:09 -07:00
}
void SpaceStation::Save(Serializer::Writer &wr, Space *space)
{
ModelBody::Save(wr, space);
MarketAgent::Save(wr);
wr.Int32(Equip::TYPE_MAX);
for (int i=0; i<Equip::TYPE_MAX; i++) {
2011-05-10 17:57:37 -07:00
wr.Int32(int(m_equipmentStock[i]));
}
// save shipyard
wr.Int32(m_shipsOnSale.size());
for (std::vector<ShipOnSale>::iterator i = m_shipsOnSale.begin();
i != m_shipsOnSale.end(); ++i) {
wr.String((*i).id);
wr.String((*i).regId);
2013-02-13 14:40:05 -08:00
(*i).skin.Save(wr);
}
wr.Int32(m_shipDocking.size());
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
wr.Int32(space->GetIndexForBody(m_shipDocking[i].ship));
wr.Int32(m_shipDocking[i].stage);
2011-05-10 17:57:37 -07:00
wr.Float(float(m_shipDocking[i].stagePos));
wr.Vector3d(m_shipDocking[i].fromPos);
wr.WrQuaternionf(m_shipDocking[i].fromRot);
}
2013-02-03 05:03:52 -08:00
// store each of the bay groupings
wr.Int32(mBayGroups.size());
for (Uint32 i=0; i<mBayGroups.size(); i++) {
2013-02-03 05:03:52 -08:00
wr.Int32(mBayGroups[i].minShipSize);
wr.Int32(mBayGroups[i].maxShipSize);
wr.Bool(mBayGroups[i].inUse);
wr.Int32(mBayGroups[i].bayIDs.size());
for (Uint32 j=0; j<mBayGroups[i].bayIDs.size(); j++) {
2013-02-03 05:03:52 -08:00
wr.Int32(mBayGroups[i].bayIDs[j]);
}
}
2012-11-18 21:25:00 -08:00
wr.Bool(m_bbCreated);
wr.Double(m_lastUpdatedShipyard);
2012-04-17 18:53:53 -07:00
wr.Int32(space->GetIndexForSystemBody(m_sbody));
wr.Int32(m_numPoliceDocked);
2013-02-16 18:09:36 -08:00
wr.Double(m_doorAnimationStep);
wr.Double(m_doorAnimationState);
2013-02-16 18:09:36 -08:00
m_navLights->Save(wr);
}
void SpaceStation::Load(Serializer::Reader &rd, Space *space)
{
ModelBody::Load(rd, space);
MarketAgent::Load(rd);
int num = rd.Int32();
if (num > Equip::TYPE_MAX) throw SavedGameCorruptException();
for (int i=0; i<Equip::TYPE_MAX; i++) {
m_equipmentStock[i] = 0;
}
for (int i=0; i<num; i++) {
m_equipmentStock[i] = static_cast<Equip::Type>(rd.Int32());
}
// load shipyard
const Uint32 numShipsForSale = rd.Int32();
for (Uint32 i=0; i<numShipsForSale; i++) {
ShipType::Id id(rd.String());
std::string regId(rd.String());
2013-02-13 14:40:05 -08:00
SceneGraph::ModelSkin skin;
skin.Load(rd);
ShipOnSale sos(id, regId, skin);
m_shipsOnSale.push_back(sos);
}
const Uint32 numShipDocking = rd.Int32();
m_shipDocking.reserve(numShipDocking);
for (Uint32 i=0; i<numShipDocking; i++) {
m_shipDocking.push_back(shipDocking_t());
shipDocking_t &sd = m_shipDocking.back();
sd.shipIndex = rd.Int32();
sd.stage = rd.Int32();
sd.stagePos = rd.Float();
sd.fromPos = rd.Vector3d();
sd.fromRot = rd.RdQuaternionf();
}
2013-02-03 05:03:52 -08:00
// retrieve each of the bay groupings
const Uint32 numBays = rd.Int32();
2013-02-03 05:03:52 -08:00
mBayGroups.reserve(numBays);
for (Uint32 i=0; i<numBays; i++) {
2013-02-03 05:03:52 -08:00
mBayGroups.push_back(SpaceStationType::SBayGroup());
SpaceStationType::SBayGroup &bay = mBayGroups.back();
bay.minShipSize = rd.Int32();
bay.maxShipSize = rd.Int32();
bay.inUse = rd.Bool();
const Uint32 numBayIds = rd.Int32();
2013-02-03 05:03:52 -08:00
bay.bayIDs.reserve(numBayIds);
for (Uint32 j=0; j<numBayIds; j++) {
const Uint32 ID = rd.Int32();
2013-02-03 05:03:52 -08:00
bay.bayIDs.push_back(ID);
}
}
2012-11-18 21:25:00 -08:00
m_bbCreated = rd.Bool();
m_lastUpdatedShipyard = rd.Double();
2012-04-17 18:53:53 -07:00
m_sbody = space->GetSystemBodyByIndex(rd.Int32());
m_numPoliceDocked = rd.Int32();
m_doorAnimationStep = rd.Double();
m_doorAnimationState = rd.Double();
InitStation();
2013-02-16 18:09:36 -08:00
m_navLights->Load(rd);
}
void SpaceStation::PostLoadFixup(Space *space)
{
2012-12-11 19:18:42 -08:00
ModelBody::PostLoadFixup(space);
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
m_shipDocking[i].ship = static_cast<Ship*>(space->GetBodyByIndex(m_shipDocking[i].shipIndex));
}
}
2012-04-17 18:53:53 -07:00
SpaceStation::SpaceStation(const SystemBody *sbody): ModelBody()
{
m_sbody = sbody;
m_lastUpdatedShipyard = 0;
m_numPoliceDocked = Pi::rng.Int32(3,10);
m_bbCreated = false;
m_bbShuffled = false;
m_oldAngDisplacement = 0.0;
m_doorAnimationStep = m_doorAnimationState = 0.0;
SetMoney(1000000000);
InitStation();
}
void SpaceStation::InitStation()
{
m_adjacentCity = 0;
for(int i=0; i<NUM_STATIC_SLOTS; i++) m_staticSlot[i] = false;
Random rand(m_sbody->seed);
2012-11-18 10:13:47 -08:00
bool ground = m_sbody->type == SystemBody::TYPE_STARPORT_ORBITAL ? false : true;
if (ground) {
m_type = &SpaceStationType::surfaceStationTypes[ rand.Int32(SpaceStationType::surfaceStationTypes.size()) ];
} else {
m_type = &SpaceStationType::orbitalStationTypes[ rand.Int32(SpaceStationType::orbitalStationTypes.size()) ];
}
if(m_shipDocking.empty()) {
m_shipDocking.reserve(m_type->numDockingPorts);
for (unsigned int i=0; i<m_type->numDockingPorts; i++) {
m_shipDocking.push_back(shipDocking_t());
}
// only (re)set these if we've not come from the ::Load method
m_doorAnimationStep = m_doorAnimationState = 0.0;
}
assert(m_shipDocking.size() == m_type->numDockingPorts);
2013-02-03 05:03:52 -08:00
// This SpaceStation's bay groups is an instance of...
mBayGroups = m_type->bayGroups;
2012-11-18 10:13:47 -08:00
SetStatic(ground); // orbital stations are dynamic now
// XXX hack. if we loaded a game then ModelBody::Load already restored the
// model and we shouldn't overwrite it
if (!GetModel())
SetModel(m_type->modelName.c_str());
m_navLights.reset(new NavLights(GetModel(), 2.2f));
m_navLights->SetEnabled(true);
2012-11-26 15:40:03 -08:00
if (ground) SetClipRadius(CITY_ON_PLANET_RADIUS); // overrides setmodel
m_doorAnimation = GetModel()->FindAnimation("doors");
}
SpaceStation::~SpaceStation()
{
onBulletinBoardDeleted.emit();
if (m_adjacentCity) delete m_adjacentCity;
}
void SpaceStation::ReplaceShipOnSale(int idx, const ShipOnSale &with)
{
m_shipsOnSale[idx] = with;
onShipsForSaleChanged.emit();
}
// Fill the list of starships on sale. Ships that
// can't fit atmo shields are only available in
// atmosphereless environments
void SpaceStation::UpdateShipyard()
{
bool atmospheric = false;
if (IsGroundStation()) {
Body *planet = GetFrame()->GetBody();
atmospheric = planet->GetSystemBody()->HasAtmosphere();
}
const std::vector<ShipType::Id> &ships = atmospheric ? ShipType::playable_atmospheric_ships : ShipType::player_ships;
unsigned int toAdd = 0, toRemove = 0;
if (m_shipsOnSale.size() == 0)
// fill shipyard
toAdd = Pi::rng.Int32(20);
else if (Pi::rng.Int32(2))
// add one
toAdd = 1;
else if(m_shipsOnSale.size() > 0)
// remove one
toRemove = 1;
else
// nothing happens
return;
for (; toAdd > 0; toAdd--) {
ShipType::Id id = ships[Pi::rng.Int32(ships.size())];
std::string regId = Ship::MakeRandomLabel();
2013-02-13 14:40:05 -08:00
SceneGraph::ModelSkin skin;
skin.SetRandomColors(Pi::rng);
skin.SetPattern(Pi::rng.Int32(0, Pi::FindModel(id)->GetNumPatterns()));
2013-02-13 21:59:15 -08:00
skin.SetLabel(regId);
2013-02-13 14:40:05 -08:00
ShipOnSale sos(id, regId, skin);
m_shipsOnSale.push_back(sos);
}
for (; toRemove > 0; toRemove--) {
int pos = Pi::rng.Int32(m_shipsOnSale.size());
m_shipsOnSale.erase(m_shipsOnSale.begin() + pos);
}
onShipsForSaleChanged.emit();
}
2012-11-18 21:25:00 -08:00
void SpaceStation::NotifyRemoved(const Body* const removedBody)
{
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
2012-11-18 21:25:00 -08:00
if (m_shipDocking[i].ship == removedBody) {
m_shipDocking[i].ship = 0;
}
}
}
int SpaceStation::GetMyDockingPort(const Ship *s) const
{
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
2012-11-18 21:25:00 -08:00
if (s == m_shipDocking[i].ship) return i;
}
return -1;
}
int SpaceStation::NumShipsDocked() const
{
Sint32 numShipsDocked = 0;
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
if (NULL != m_shipDocking[i].ship)
++numShipsDocked;
}
return numShipsDocked;
}
int SpaceStation::GetFreeDockingPort(const Ship *s) const
2012-11-18 21:25:00 -08:00
{
2013-03-11 13:53:03 -07:00
for (unsigned int i=0; i<m_type->numDockingPorts; i++) {
2012-11-18 21:25:00 -08:00
if (m_shipDocking[i].ship == 0) {
if(s) {
// fwing
// initial unoccupied check
if (m_shipDocking[i].ship != 0) continue;
// size-of-ship vs size-of-bay check
const SpaceStationType::SBayGroup *const pBayGroup = m_type->FindGroupByBay(i);
if( !pBayGroup ) continue;
const Aabb &bbox = s->GetAabb();
const double bboxRad = bbox.GetRadius();
if( pBayGroup->minShipSize < bboxRad && bboxRad < pBayGroup->maxShipSize ) {
return i;
}
} else {
return i;
}
2012-11-18 21:25:00 -08:00
}
}
return -1;
}
void SpaceStation::SetDocked(Ship *ship, int port)
{
m_shipDocking[port].ship = ship;
m_shipDocking[port].stage = m_type->numDockingStages+1;
// have to do this crap again in case it was called directly (Ship::SetDockWith())
ship->SetFlightState(Ship::DOCKED);
ship->SetVelocity(vector3d(0.0));
ship->SetAngVelocity(vector3d(0.0));
ship->ClearThrusterState();
2012-12-15 16:22:24 -08:00
PositionDockedShip(ship, port);
2012-11-18 21:25:00 -08:00
}
void SpaceStation::SwapDockedShipsPort(Ship *ship, const int oldPort, const int newPort)
{
if( oldPort == newPort )
return;
// set new location
//SetDocked(ship, newPort);
ship->SetDockedWith(this, newPort);
m_shipDocking[oldPort].ship = 0;
m_shipDocking[oldPort].stage = 0;
}
2012-11-18 21:25:00 -08:00
bool SpaceStation::LaunchShip(Ship *ship, int port)
{
shipDocking_t &sd = m_shipDocking[port];
if (sd.stage < 0) return true; // already launching
2013-02-03 05:03:52 -08:00
if (IsPortLocked(port)) return false; // another ship docking
LockPort(port, true);
2012-11-18 21:25:00 -08:00
sd.ship = ship;
sd.stage = -1;
sd.stagePos = 0.0;
2012-11-18 21:25:00 -08:00
m_doorAnimationStep = 0.3; // open door
const Aabb& aabb = ship->GetAabb();
const matrix3x3d mt = ship->GetOrient();
const vector3d up = mt.VectorY().Normalized() * aabb.min.y;
sd.fromPos = (ship->GetPosition() - GetPosition() + up) * GetOrient(); // station space
sd.fromRot = Quaterniond::FromMatrix3x3(GetOrient().Transpose() * mt);
2012-11-18 21:25:00 -08:00
ship->SetFlightState(Ship::DOCKING);
2012-11-18 21:25:00 -08:00
return true;
}
bool SpaceStation::GetDockingClearance(Ship *s, std::string &outMsg)
{
assert(m_shipDocking.size() == m_type->numDockingPorts);
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
if (m_shipDocking[i].ship == s) {
2012-11-18 21:25:00 -08:00
outMsg = stringf(Lang::CLEARANCE_ALREADY_GRANTED_BAY_N, formatarg("bay", i+1));
return (m_shipDocking[i].stage > 0); // grant docking only if the ship is not already docked/undocking
2012-11-18 21:25:00 -08:00
}
}
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
// initial unoccupied check
2012-11-18 21:25:00 -08:00
if (m_shipDocking[i].ship != 0) continue;
// size-of-ship vs size-of-bay check
const SpaceStationType::SBayGroup *const pBayGroup = m_type->FindGroupByBay(i);
if( !pBayGroup ) continue;
const Aabb &bbox = s->GetAabb();
const double bboxRad = bbox.GetRadius();
if( pBayGroup->minShipSize < bboxRad && bboxRad < pBayGroup->maxShipSize ) {
shipDocking_t &sd = m_shipDocking[i];
sd.ship = s;
sd.stage = 1;
sd.stagePos = 0;
outMsg = stringf(Lang::CLEARANCE_GRANTED_BAY_N, formatarg("bay", i+1));
return true;
}
2012-11-18 21:25:00 -08:00
}
outMsg = Lang::CLEARANCE_DENIED_NO_BAYS;
return false;
}
bool SpaceStation::OnCollision(Object *b, Uint32 flags, double relVel)
{
if ((flags & 0x10) && (b->IsType(Object::SHIP))) {
Ship *s = static_cast<Ship*>(b);
int port = -1;
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
2012-11-18 21:25:00 -08:00
if (m_shipDocking[i].ship == s) { port = i; break; }
}
if (port == -1) return false; // no permission
2013-03-12 12:15:51 -07:00
if (IsPortLocked(port)) {
return false;
2012-11-18 21:25:00 -08:00
}
if (m_shipDocking[port].stage != 1) return false; // already docking?
SpaceStationType::positionOrient_t dport;
// why stage 2? Because stage 1 is permission to dock
// granted, stage 2 is start of docking animation.
PiVerify(m_type->GetDockAnimPositionOrient(port, 2, 0.0, vector3d(0.0), dport, s));
// must be oriented sensibly and have wheels down
if (IsGroundStation()) {
vector3d dockingNormal = GetOrient()*dport.yaxis;
const double dot = s->GetOrient().VectorY().Dot(dockingNormal);
if ((dot < 0.99) || (s->GetWheelState() < 1.0)) return false; // <0.99 harsh?
if (s->GetVelocity().Length() > MAX_LANDING_SPEED) return false;
}
// if there is more docking port anim to do, don't set docked yet
if (m_type->numDockingStages >= 2) {
shipDocking_t &sd = m_shipDocking[port];
sd.ship = s;
sd.stage = 2;
sd.stagePos = 0;
sd.fromPos = (s->GetPosition() - GetPosition()) * GetOrient(); // station space
sd.fromRot = Quaterniond::FromMatrix3x3(GetOrient().Transpose() * s->GetOrient());
2013-02-03 05:03:52 -08:00
LockPort(port, true);
2012-11-18 21:25:00 -08:00
s->SetFlightState(Ship::DOCKING);
s->SetVelocity(vector3d(0.0));
s->SetAngVelocity(vector3d(0.0));
s->ClearThrusterState();
} else {
s->SetDockedWith(this, port); // bounces back to SS::SetDocked()
LuaEvent::Queue("onShipDocked", s, this);
}
return false;
} else {
return true;
}
}
// XXX SGModel door animation. We have one station (hoop_spacestation) with a
// door, so this is pretty much based on how it does things. This all needs
// rewriting to handle triggering animations at waypoints.
//
// Docking:
// Stage 1 (clearance granted): open
// (clearance expired): close
// Docked: close
//
// Undocking:
// Stage -1 (LaunchShip): open
// Post-launch: close
//
2012-11-18 21:25:00 -08:00
void SpaceStation::DockingUpdate(const double timeStep)
{
vector3d p1, p2, zaxis;
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
shipDocking_t &dt = m_shipDocking[i];
if (!dt.ship) continue;
2012-11-18 21:25:00 -08:00
// docked stage is m_type->numDockingPorts + 1 => ship docked
if (dt.stage > m_type->numDockingStages) continue;
double stageDuration = (dt.stage > 0 ?
m_type->GetDockAnimStageDuration(dt.stage-1) :
m_type->GetUndockAnimStageDuration(abs(dt.stage)-1));
dt.stagePos += timeStep / stageDuration;
if (dt.stage == 1) {
2012-11-18 21:25:00 -08:00
// SPECIAL stage! Docking granted but waiting for ship to dock
m_doorAnimationStep = 0.3; // open door
if (dt.stagePos >= 1.0) {
2011-05-10 17:57:37 -07:00
if (dt.ship == static_cast<Ship*>(Pi::player)) Pi::onDockingClearanceExpired.emit(this);
dt.ship = 0;
dt.stage = 0;
m_doorAnimationStep = -0.3; // close door
}
continue;
}
if (dt.stagePos > 1.0) {
// use end position of last segment for start position of new segment
SpaceStationType::positionOrient_t dport;
PiVerify(m_type->GetDockAnimPositionOrient(i, dt.stage, 1.0f, dt.fromPos, dport, dt.ship));
matrix3x3d fromRot = matrix3x3d::FromVectors(dport.xaxis, dport.yaxis, dport.zaxis);
dt.fromRot = Quaterniond::FromMatrix3x3(fromRot);
dt.fromPos = dport.pos;
2012-11-18 21:25:00 -08:00
// transition between docking stages
dt.stagePos = 0;
if (dt.stage >= 0) dt.stage++;
else dt.stage--;
}
2012-11-23 13:49:47 -08:00
if (dt.stage < -m_type->shipLaunchStage && dt.ship->GetFlightState() != Ship::FLYING) {
2012-11-18 21:25:00 -08:00
// launch ship
dt.ship->SetFlightState(Ship::FLYING);
dt.ship->SetAngVelocity(GetAngVelocity());
2012-11-18 21:25:00 -08:00
if (m_type->dockMethod == SpaceStationType::SURFACE) {
dt.ship->SetThrusterState(1, 1.0); // up
} else {
2012-11-18 21:25:00 -08:00
dt.ship->SetThrusterState(2, -1.0); // forward
}
2012-11-18 21:25:00 -08:00
LuaEvent::Queue("onShipUndocked", dt.ship, this);
}
2012-11-18 21:25:00 -08:00
if (dt.stage < -m_type->numUndockStages) {
// undock animation finished, clear port
dt.stage = 0;
dt.ship = 0;
2013-02-03 05:03:52 -08:00
LockPort(i, false);
m_doorAnimationStep = -0.3; // close door
2012-11-18 21:25:00 -08:00
}
else if (dt.stage > m_type->numDockingStages) {
// set docked
dt.ship->SetDockedWith(this, i);
LuaEvent::Queue("onShipDocked", dt.ship, this);
2013-02-03 05:03:52 -08:00
LockPort(i, false);
m_doorAnimationStep = -0.3; // close door
}
}
m_doorAnimationState = Clamp(m_doorAnimationState + m_doorAnimationStep*timeStep, 0.0, 1.0);
if (m_doorAnimation)
m_doorAnimation->SetProgress(m_doorAnimationState);
}
2012-11-18 21:25:00 -08:00
void SpaceStation::PositionDockedShip(Ship *ship, int port) const
{
2012-11-18 21:25:00 -08:00
const shipDocking_t &dt = m_shipDocking[port];
SpaceStationType::positionOrient_t dport;
PiVerify(m_type->GetDockAnimPositionOrient(port, dt.stage, dt.stagePos, dt.fromPos, dport, ship));
assert(dt.ship == ship);
ship->SetPosition(GetPosition() + GetOrient()*dport.pos);
2012-11-18 21:25:00 -08:00
// Still in docking animation process?
if (dt.stage <= m_type->numDockingStages) {
matrix3x3d wantRot = matrix3x3d::FromVectors(dport.xaxis, dport.yaxis, dport.zaxis);
2012-11-18 21:25:00 -08:00
// use quaternion spherical linear interpolation to do
// rotation smoothly
Quaterniond wantQuat = Quaterniond::FromMatrix3x3(wantRot);
Quaterniond q = Quaterniond::Nlerp(dt.fromRot, wantQuat, dt.stagePos);
wantRot = q.ToMatrix3x3<double>();
ship->SetOrient(GetOrient() * wantRot);
} else {
2012-12-27 16:16:57 -08:00
// Note: ship bounding box is used to generate dport.pos
ship->SetOrient(GetOrient() * matrix3x3d::FromVectors(dport.xaxis, dport.yaxis, dport.zaxis));
}
}
2012-11-18 10:13:47 -08:00
void SpaceStation::StaticUpdate(const float timeStep)
{
bool update = false;
// if there's no BB and there are ships here, make one
if (!m_bbCreated && NumShipsDocked() > 0) {
CreateBB();
update = true;
}
// if there is and it hasn't had an update for a while, update it
else if (Pi::game->GetTime() > m_lastUpdatedShipyard) {
LuaEvent::Queue("onUpdateBB", this);
update = true;
}
if (update) {
UpdateShipyard();
// update again in an hour or two
2011-11-21 13:33:03 -08:00
m_lastUpdatedShipyard = Pi::game->GetTime() + 3600.0 + 3600.0*Pi::rng.Double();
}
DoLawAndOrder(timeStep);
2012-11-18 21:25:00 -08:00
DockingUpdate(timeStep);
m_navLights->Update(timeStep);
}
2012-11-18 10:13:47 -08:00
void SpaceStation::TimeStepUpdate(const float timeStep)
{
// rotate the thing
double len = m_type->angVel * timeStep;
if (!is_zero_exact(len)) {
matrix3x3d r = matrix3x3d::RotateY(-len); // RotateY is backwards
2012-11-18 10:13:47 -08:00
SetOrient(r * GetOrient());
}
m_oldAngDisplacement = len;
2012-11-18 10:13:47 -08:00
2012-11-18 21:25:00 -08:00
// reposition the ships that are docked or docking here
2013-03-11 13:53:03 -07:00
for (unsigned int i=0; i<m_type->numDockingPorts; i++) {
2012-11-18 21:25:00 -08:00
const shipDocking_t &dt = m_shipDocking[i];
if (!dt.ship) { //free
m_navLights->SetColor(i+1, NavLights::NAVLIGHT_GREEN);
continue;
}
if (dt.stage == 1) {//reserved
m_navLights->SetColor(i+1, NavLights::NAVLIGHT_YELLOW);
continue;
}
if (dt.ship->GetFlightState() == Ship::FLYING)
continue;
2012-11-18 21:25:00 -08:00
PositionDockedShip(dt.ship, i);
m_navLights->SetColor(i+1, NavLights::NAVLIGHT_RED); //docked
}
ModelBody::TimeStepUpdate(timeStep);
}
void SpaceStation::UpdateInterpTransform(double alpha)
{
double len = m_oldAngDisplacement * (1.0-alpha);
if (!is_zero_exact(len)) {
matrix3x3d rot = matrix3x3d::RotateY(len); // RotateY is backwards
m_interpOrient = rot * GetOrient();
}
else m_interpOrient = GetOrient();
m_interpPos = GetPosition();
}
2012-11-18 21:25:00 -08:00
bool SpaceStation::IsGroundStation() const
{
2012-11-18 21:25:00 -08:00
return (m_type->dockMethod == SpaceStationType::SURFACE);
}
/* MarketAgent shite */
void SpaceStation::Bought(Equip::Type t) {
2011-05-10 17:57:37 -07:00
m_equipmentStock[int(t)]++;
}
void SpaceStation::Sold(Equip::Type t) {
2011-05-10 17:57:37 -07:00
m_equipmentStock[int(t)]--;
}
bool SpaceStation::CanBuy(Equip::Type t, bool verbose) const {
return true;
}
bool SpaceStation::CanSell(Equip::Type t, bool verbose) const {
2011-05-10 17:57:37 -07:00
bool result = (m_equipmentStock[int(t)] > 0);
if (verbose && !result) {
Pi::Message(Lang::ITEM_IS_OUT_OF_STOCK);
}
return result;
}
bool SpaceStation::DoesSell(Equip::Type t) const {
return Polit::IsCommodityLegal(Pi::game->GetSpace()->GetStarSystem().Get(), t);
}
Sint64 SpaceStation::GetPrice(Equip::Type t) const {
Sint64 mul = 100 + Pi::game->GetSpace()->GetStarSystem()->GetCommodityBasePriceModPercent(t);
return (mul * Sint64(Equip::types[t].basePrice)) / 100;
}
// Renders space station and adjacent city if applicable
// For orbital starports: renders as normal
// For surface starports:
// Lighting: Calculates available light for model and splits light between directly and ambiently lit
// Lighting is done by manipulating global lights or setting uniforms in atmospheric models shader
static const double SQRMAXCITYDIST = 1e5 * 1e5;
void SpaceStation::Render(Graphics::Renderer *r, const Camera *camera, const vector3d &viewCoords, const matrix4x4d &viewTransform)
{
Body *b = GetFrame()->GetBody();
2012-07-28 15:11:23 -07:00
assert(b);
if (!b->IsType(Object::PLANET)) {
// orbital spaceport -- don't make city turds or change lighting based on atmosphere
RenderModel(r, camera, viewCoords, viewTransform);
} else {
// don't render city if too far away
if (viewCoords.LengthSqr() >= SQRMAXCITYDIST) {
return;
}
std::vector<Graphics::Light> oldLights;
Color oldAmbient;
SetLighting(r, camera, oldLights, oldAmbient);
2012-07-28 15:11:23 -07:00
Planet *planet = static_cast<Planet*>(b);
if (!m_adjacentCity) {
m_adjacentCity = new CityOnPlanet(planet, this, m_sbody->seed);
}
m_adjacentCity->Render(r, camera, this, viewCoords, viewTransform);
2012-07-09 06:47:47 -07:00
RenderModel(r, camera, viewCoords, viewTransform, false);
ResetLighting(r, oldLights, oldAmbient);
}
}
// find an empty position for a static ship and mark it as used. these aren't
// saved and are only needed to help modules place bulk ships. this isn't a
// great place for this, but its gotta be tracked somewhere
bool SpaceStation::AllocateStaticSlot(int& slot)
{
2012-12-31 00:18:58 -08:00
// no slots at ground stations
if (IsGroundStation())
return false;
for (int i=0; i<NUM_STATIC_SLOTS; i++) {
if (!m_staticSlot[i]) {
m_staticSlot[i] = true;
slot = i;
return true;
}
}
return false;
}
2011-04-26 21:44:07 -07:00
void SpaceStation::CreateBB()
{
if (m_bbCreated) return;
// fill the shipyard equipment shop with all kinds of things
// XXX should probably be moved out to a MarketAgent/CommodityWidget type
// thing, or just lua
for (int i=1; i<Equip::TYPE_MAX; i++) {
if (Equip::types[i].slot == Equip::SLOT_CARGO) {
m_equipmentStock[i] = Pi::rng.Int32(0,100) * Pi::rng.Int32(1,100);
} else {
2012-03-30 22:36:37 -07:00
m_equipmentStock[i] = Pi::rng.Int32(0,100);
}
}
LuaEvent::Queue("onCreateBB", this);
m_bbCreated = true;
}
2011-04-26 21:44:07 -07:00
static int next_ref = 0;
int SpaceStation::AddBBAdvert(std::string description, AdvertFormBuilder builder)
2011-04-26 21:44:07 -07:00
{
int ref = ++next_ref;
assert(ref);
BBAdvert ad;
ad.ref = ref;
ad.description = description;
ad.builder = builder;
m_bbAdverts.push_back(ad);
onBulletinBoardChanged.emit();
2011-04-26 21:44:07 -07:00
return ref;
}
const BBAdvert *SpaceStation::GetBBAdvert(int ref)
{
for (std::vector<BBAdvert>::const_iterator i = m_bbAdverts.begin(); i != m_bbAdverts.end(); ++i)
2011-04-26 21:44:07 -07:00
if (i->ref == ref)
return &(*i);
return 0;
2011-04-26 21:44:07 -07:00
}
bool SpaceStation::RemoveBBAdvert(int ref)
{
for (std::vector<BBAdvert>::iterator i = m_bbAdverts.begin(); i != m_bbAdverts.end(); ++i)
2011-04-26 21:44:07 -07:00
if (i->ref == ref) {
BBAdvert ad = (*i);
2011-04-26 21:44:07 -07:00
m_bbAdverts.erase(i);
onBulletinBoardAdvertDeleted.emit(ad);
2011-04-26 21:44:07 -07:00
return true;
}
return false;
}
const std::list<const BBAdvert*> SpaceStation::GetBBAdverts()
{
2011-04-26 21:59:07 -07:00
if (!m_bbShuffled) {
std::random_shuffle(m_bbAdverts.begin(), m_bbAdverts.end());
m_bbShuffled = true;
}
2011-04-26 21:44:07 -07:00
std::list<const BBAdvert*> ads;
for (std::vector<BBAdvert>::const_iterator i = m_bbAdverts.begin(); i != m_bbAdverts.end(); ++i)
2011-04-26 21:44:07 -07:00
ads.push_back(&(*i));
return ads;
}
vector3d SpaceStation::GetTargetIndicatorPosition(const Frame *relTo) const
{
// return the next waypoint if permission has been granted for player,
// and the docking point's position once the docking anim starts
for (Uint32 i=0; i<m_shipDocking.size(); i++) {
if (i >= m_type->numDockingPorts) break;
if ((m_shipDocking[i].ship == Pi::player) && (m_shipDocking[i].stage > 0)) {
SpaceStationType::positionOrient_t dport;
if (!m_type->GetShipApproachWaypoints(i, m_shipDocking[i].stage+1, dport))
PiVerify(m_type->GetDockAnimPositionOrient(i, m_type->numDockingStages,
1.0f, vector3d(0.0), dport, m_shipDocking[i].ship));
vector3d v = GetInterpPositionRelTo(relTo);
return v + GetInterpOrientRelTo(relTo) * dport.pos;
}
}
return GetInterpPositionRelTo(relTo);
}
2012-11-18 21:25:00 -08:00
// XXX this whole thing should be done by Lua
void SpaceStation::DoLawAndOrder(const double timeStep)
2012-11-18 21:25:00 -08:00
{
Sint64 fine, crimeBitset;
Polit::GetCrime(&crimeBitset, &fine);
if (Pi::player->GetFlightState() != Ship::DOCKED
&& m_numPoliceDocked
&& (fine > 1000)
&& (GetPositionRelTo(Pi::player).Length() < 100000.0)) {
Ship *ship = new Ship(ShipType::POLICE);
int port = GetFreeDockingPort(ship);
// at 60 Hz updates (ie, 1x time acceleration),
// this spawns a police ship with probability ~0.83% each frame
// This makes it unlikely (but not impossible) that police will spawn on top of each other
// the expected number of game-time seconds between spawns: 120 (2*60 Hz)
// variance is quite high though
if (port != -1 && 2.0*Pi::rng.Double() < timeStep) {
2012-11-18 21:25:00 -08:00
m_numPoliceDocked--;
// Make police ship intent on killing the player
ship->AIKill(Pi::player);
ship->SetFrame(GetFrame());
ship->SetDockedWith(this, port);
Pi::game->GetSpace()->AddBody(ship);
ship->SetLabel(Lang::POLICE_SHIP_REGISTRATION);
2012-11-18 21:25:00 -08:00
ship->m_equipment.Set(Equip::SLOT_LASER, 0, Equip::PULSECANNON_DUAL_1MW);
ship->m_equipment.Add(Equip::LASER_COOLING_BOOSTER);
ship->m_equipment.Add(Equip::ATMOSPHERIC_SHIELDING);
ship->UpdateStats();
} else {
delete ship;
2012-11-18 21:25:00 -08:00
}
}
}
2013-02-03 05:03:52 -08:00
bool SpaceStation::IsPortLocked(const int bay) const
{
SpaceStationType::TBayGroups::const_iterator bayIter = mBayGroups.begin();
for ( ; bayIter!=mBayGroups.end() ; ++bayIter ) {
std::vector<int>::const_iterator idIter = (*bayIter).bayIDs.begin();
for ( ; idIter!=(*bayIter).bayIDs.end() ; ++idIter ) {
if ((*idIter)==bay) {
return (*bayIter).inUse;
}
}
}
// is it safer to return that the is loacked?
2013-02-03 05:03:52 -08:00
return true;
}
void SpaceStation::LockPort(const int bay, const bool lockIt)
{
SpaceStationType::TBayGroups::iterator bayIter = mBayGroups.begin();
for ( ; bayIter!=mBayGroups.end() ; ++bayIter ) {
std::vector<int>::iterator idIter = (*bayIter).bayIDs.begin();
for ( ; idIter!=(*bayIter).bayIDs.end() ; ++idIter ) {
if ((*idIter)==bay) {
(*bayIter).inUse = lockIt;
return;
2013-02-03 05:03:52 -08:00
}
}
}
}