wip: train build support
Dieser Commit ist enthalten in:
Ursprung
35b0b18053
Commit
e27f7e85dd
140
server/src/core/trainproperty.cpp
Normale Datei
140
server/src/core/trainproperty.cpp
Normale Datei
@ -0,0 +1,140 @@
|
||||
/**
|
||||
* server/src/core/trainproperty.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
* Copyright (C) 2019-2020 Reinder Feenstra
|
||||
*
|
||||
* 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 2
|
||||
* 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, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "trainproperty.hpp"
|
||||
#include "../train/train.hpp"
|
||||
|
||||
using T = Train;
|
||||
|
||||
TrainProperty::TrainProperty(Object* object, const std::string& name, const std::shared_ptr<T>& value, PropertyFlags flags) :
|
||||
AbstractObjectProperty(object, name, flags),
|
||||
m_value{value}
|
||||
{
|
||||
}
|
||||
|
||||
TrainProperty::TrainProperty(Object* object, const std::string& name, nullptr_t, PropertyFlags flags) :
|
||||
TrainProperty(object, name, std::shared_ptr<T>(), flags)
|
||||
{
|
||||
}
|
||||
|
||||
TrainProperty::TrainProperty(Object* object, const std::string& name, const std::shared_ptr<T>& value, PropertyFlags flags, OnSet onSet) :
|
||||
TrainProperty(object, name, value, flags)
|
||||
{
|
||||
m_onSet = onSet;
|
||||
}
|
||||
|
||||
TrainProperty::TrainProperty(Object* object, const std::string& name, nullptr_t, PropertyFlags flags, OnSet onSet) :
|
||||
TrainProperty(object, name, std::shared_ptr<T>(), flags, onSet)
|
||||
{
|
||||
}
|
||||
|
||||
const std::shared_ptr<T>& TrainProperty::value() const
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
void TrainProperty::setValue(const std::shared_ptr<T>& value)
|
||||
{
|
||||
assert(isWriteable());
|
||||
if(m_value == value)
|
||||
return;
|
||||
else if(!isWriteable())
|
||||
throw not_writable_error();
|
||||
else if(!m_onSet || m_onSet(value))
|
||||
{
|
||||
m_value = value;
|
||||
changed();
|
||||
}
|
||||
else
|
||||
throw invalid_value_error();
|
||||
}
|
||||
|
||||
void TrainProperty::setValueInternal(const std::shared_ptr<T>& value)
|
||||
{
|
||||
if(m_value != value)
|
||||
{
|
||||
m_value = value;
|
||||
changed();
|
||||
}
|
||||
}
|
||||
|
||||
const T* TrainProperty::operator ->() const
|
||||
{
|
||||
return m_value.get();
|
||||
}
|
||||
|
||||
T* TrainProperty::operator ->()
|
||||
{
|
||||
return m_value.get();
|
||||
}
|
||||
|
||||
const T& TrainProperty::operator *() const
|
||||
{
|
||||
return *m_value;
|
||||
}
|
||||
|
||||
T& TrainProperty::operator *()
|
||||
{
|
||||
return *m_value;
|
||||
}
|
||||
|
||||
TrainProperty::operator bool()
|
||||
{
|
||||
return m_value.operator bool();
|
||||
}
|
||||
|
||||
TrainProperty& TrainProperty::operator =(const std::shared_ptr<T>& value)
|
||||
{
|
||||
setValue(value);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ObjectPtr TrainProperty::toObject() const
|
||||
{
|
||||
return std::dynamic_pointer_cast<Object>(m_value);
|
||||
}
|
||||
|
||||
void TrainProperty::fromObject(const ObjectPtr& value)
|
||||
{
|
||||
if(value)
|
||||
{
|
||||
if(std::shared_ptr<T> v = std::dynamic_pointer_cast<T>(value))
|
||||
setValue(v);
|
||||
else
|
||||
throw conversion_error();
|
||||
}
|
||||
else
|
||||
setValue(nullptr);
|
||||
}
|
||||
|
||||
void TrainProperty::load(const ObjectPtr& value)
|
||||
{
|
||||
if(value)
|
||||
{
|
||||
if(std::shared_ptr<T> v = std::dynamic_pointer_cast<T>(value))
|
||||
m_value = v;
|
||||
else
|
||||
throw conversion_error();
|
||||
}
|
||||
else
|
||||
m_value.reset();
|
||||
}
|
||||
68
server/src/core/trainproperty.hpp
Normale Datei
68
server/src/core/trainproperty.hpp
Normale Datei
@ -0,0 +1,68 @@
|
||||
/**
|
||||
* server/src/core/trainproperty.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
* Copyright (C) 2019-2020 Reinder Feenstra
|
||||
*
|
||||
* 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 2
|
||||
* 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, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_CORE_TRAINPROPERTY_HPP
|
||||
#define TRAINTASTIC_SERVER_CORE_TRAINPROPERTY_HPP
|
||||
|
||||
#include "abstractobjectproperty.hpp"
|
||||
#include <functional>
|
||||
|
||||
class Train;
|
||||
|
||||
//! workaround for ObjectProperty<Train>
|
||||
class TrainProperty : public AbstractObjectProperty
|
||||
{
|
||||
public:
|
||||
using OnSet = std::function<bool(const std::shared_ptr<Train>& value)>;
|
||||
|
||||
protected:
|
||||
std::shared_ptr<Train> m_value;
|
||||
OnSet m_onSet;
|
||||
|
||||
public:
|
||||
TrainProperty(Object* object, const std::string& name, const std::shared_ptr<Train>& value, PropertyFlags flags);
|
||||
TrainProperty(Object* object, const std::string& name, nullptr_t, PropertyFlags flags);
|
||||
TrainProperty(Object* object, const std::string& name, const std::shared_ptr<Train>& value, PropertyFlags flags, OnSet onSet);
|
||||
TrainProperty(Object* object, const std::string& name, nullptr_t, PropertyFlags flags, OnSet onSet);
|
||||
|
||||
const std::shared_ptr<Train>& value() const;
|
||||
|
||||
void setValue(const std::shared_ptr<Train>& value);
|
||||
void setValueInternal(const std::shared_ptr<Train>& value);
|
||||
|
||||
const Train* operator ->() const;
|
||||
Train* operator ->();
|
||||
|
||||
const Train& operator *() const;
|
||||
Train& operator *();
|
||||
|
||||
operator bool();
|
||||
|
||||
TrainProperty& operator =(const std::shared_ptr<Train>& value);
|
||||
|
||||
ObjectPtr toObject() const final;
|
||||
void fromObject(const ObjectPtr& value) final;
|
||||
|
||||
void load(const ObjectPtr& value) final;
|
||||
};
|
||||
|
||||
#endif
|
||||
@ -34,8 +34,11 @@ Train::Train(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
speedMax{*this, "speed_max", 120, SpeedUnit::KiloMeterPerHour, PropertyFlags::ReadWrite | PropertyFlags::Store},
|
||||
throttleSpeed{*this, "throttle_speed", 0, SpeedUnit::KiloMeterPerHour, PropertyFlags::ReadWrite | PropertyFlags::StoreState},
|
||||
weight{*this, "weight", 0, WeightUnit::Ton, PropertyFlags::ReadOnly | PropertyFlags::Store},
|
||||
vehicles{this, "vehicles", nullptr, PropertyFlags::ReadOnly | PropertyFlags::Store | PropertyFlags::SubObject},
|
||||
notes{this, "notes", "", PropertyFlags::ReadWrite | PropertyFlags::Store}
|
||||
{
|
||||
vehicles.setValueInternal(std::make_shared<RailVehicleList>(*this, vehicles.name()));
|
||||
|
||||
auto w = world.lock();
|
||||
const bool editable = w && contains(w->state.value(), WorldState::Edit);
|
||||
|
||||
@ -43,12 +46,16 @@ Train::Train(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
m_interfaceItems.add(name);
|
||||
m_interfaceItems.add(lob);
|
||||
Attributes::addValues(direction, DirectionValues);
|
||||
Attributes::addObjectEditor(direction, false);
|
||||
m_interfaceItems.add(direction);
|
||||
Attributes::addObjectEditor(speed, false);
|
||||
m_interfaceItems.add(speed);
|
||||
Attributes::addEnabled(speedMax, editable);
|
||||
m_interfaceItems.add(speedMax);
|
||||
Attributes::addObjectEditor(throttleSpeed, false);
|
||||
m_interfaceItems.add(throttleSpeed);
|
||||
m_interfaceItems.add(weight);
|
||||
m_interfaceItems.add(vehicles);
|
||||
m_interfaceItems.add(notes);
|
||||
}
|
||||
|
||||
|
||||
@ -28,6 +28,7 @@
|
||||
#include "../core/speedproperty.hpp"
|
||||
#include "../core/weightproperty.hpp"
|
||||
#include "../enum/direction.hpp"
|
||||
#include "../vehicle/rail/railvehiclelist.hpp"
|
||||
|
||||
class Train : public IdObject
|
||||
{
|
||||
@ -46,6 +47,7 @@ class Train : public IdObject
|
||||
SpeedProperty speedMax;
|
||||
SpeedProperty throttleSpeed;
|
||||
WeightProperty weight;
|
||||
ObjectProperty<RailVehicleList> vehicles;
|
||||
Property<std::string> notes;
|
||||
|
||||
Train(const std::weak_ptr<World>& world, std::string_view _id);
|
||||
|
||||
@ -28,6 +28,7 @@
|
||||
RailVehicle::RailVehicle(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
Vehicle(world, _id),
|
||||
decoder{this, "decoder", nullptr, PropertyFlags::ReadWrite | PropertyFlags::Store},
|
||||
train{this, "train", nullptr, PropertyFlags::ReadOnly | PropertyFlags::Store},
|
||||
lob{*this, "lob", 0, LengthUnit::MilliMeter, PropertyFlags::ReadWrite | PropertyFlags::Store},
|
||||
speedMax{*this, "speed_max", 0, SpeedUnit::KiloMeterPerHour, PropertyFlags::ReadWrite | PropertyFlags::Store},
|
||||
weight{*this, "weight", 0, WeightUnit::Ton, PropertyFlags::ReadWrite | PropertyFlags::Store, [this](double, WeightUnit){ updateTotalWeight(); }},
|
||||
@ -38,6 +39,7 @@ RailVehicle::RailVehicle(const std::weak_ptr<World>& world, std::string_view _id
|
||||
|
||||
Attributes::addEnabled(decoder, editable);
|
||||
m_interfaceItems.insertBefore(decoder, notes);
|
||||
m_interfaceItems.insertBefore(train, notes);
|
||||
Attributes::addEnabled(lob, editable);
|
||||
m_interfaceItems.insertBefore(lob, notes);
|
||||
Attributes::addEnabled(speedMax, editable);
|
||||
|
||||
@ -24,6 +24,7 @@
|
||||
#define TRAINTASTIC_SERVER_VEHICLE_RAIL_RAILVEHICLE_HPP
|
||||
|
||||
#include "../vehicle.hpp"
|
||||
#include "../../core/trainproperty.hpp"
|
||||
#include "../../core/lengthproperty.hpp"
|
||||
#include "../../core/speedproperty.hpp"
|
||||
#include "../../core/weightproperty.hpp"
|
||||
@ -42,6 +43,7 @@ class RailVehicle : public Vehicle
|
||||
|
||||
public:
|
||||
ObjectProperty<Decoder> decoder;
|
||||
TrainProperty train;
|
||||
LengthProperty lob;
|
||||
SpeedProperty speedMax;
|
||||
WeightProperty weight;
|
||||
|
||||
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren