Moved signal and turnout tiles to seperate folders
Dieser Commit ist enthalten in:
Ursprung
18e000843b
Commit
93a387181d
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/signal2aspectrailtile.cpp
|
||||
* server/src/board/tile/rail/signal/signal2aspectrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "signal2aspectrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
Signal2AspectRailTile::Signal2AspectRailTile(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
SignalRailTile(world, _id, TileId::RailSignal2Aspect)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/signal2aspectrailtile.hpp
|
||||
* server/src/board/tile/rail/signal/signal2aspectrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL2ASPECTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL2ASPECTRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL_SIGNAL2ASPECTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL_SIGNAL2ASPECTRAILTILE_HPP
|
||||
|
||||
#include "signalrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/signal3aspectrailtile.cpp
|
||||
* server/src/board/tile/rail/signal/signal3aspectrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "signal3aspectrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
Signal3AspectRailTile::Signal3AspectRailTile(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
SignalRailTile(world, _id, TileId::RailSignal3Aspect)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/signal3aspectrailtile.hpp
|
||||
* server/src/board/tile/rail/signal/signal3aspectrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL3ASPECTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL3ASPECTRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL_SIGNAL3ASPECTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL_SIGNAL3ASPECTRAILTILE_HPP
|
||||
|
||||
#include "signalrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/signalrailtile.cpp
|
||||
* server/src/board/tile/rail/signal/signalrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "signalrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../world/getworld.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../world/getworld.hpp"
|
||||
|
||||
SignalRailTile::SignalRailTile(const std::weak_ptr<World>& world, std::string_view _id, TileId tileId) :
|
||||
StraightRailTile(world, _id, tileId),
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/signalrailtile.hpp
|
||||
* server/src/board/tile/rail/signal/signalrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,14 +20,14 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNALRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNALRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL_SIGNALRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_SIGNAL_SIGNALRAILTILE_HPP
|
||||
|
||||
#include "straightrailtile.hpp"
|
||||
#include "../../../core/method.hpp"
|
||||
#include "../../../enum/signalaspect.hpp"
|
||||
#include "../../../core/objectproperty.hpp"
|
||||
#include "../../../hardware/output/map/signaloutputmap.hpp"
|
||||
#include "../straightrailtile.hpp"
|
||||
#include "../../../../core/method.hpp"
|
||||
#include "../../../../enum/signalaspect.hpp"
|
||||
#include "../../../../core/objectproperty.hpp"
|
||||
#include "../../../../hardware/output/map/signaloutputmap.hpp"
|
||||
|
||||
class SignalRailTile : public StraightRailTile
|
||||
{
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnout3wayrailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnout3wayrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnout3wayrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
Turnout3WayRailTile::Turnout3WayRailTile(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
TurnoutRailTile(world, _id, TileId::RailTurnout3Way)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnout3wayrailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnout3wayrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT3WAYRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT3WAYRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUT3WAYRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUT3WAYRAILTILE_HPP
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutdoublesliprailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutdoublesliprailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnoutdoublesliprailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
TurnoutDoubleSlipRailTile::TurnoutDoubleSlipRailTile(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
TurnoutRailTile(world, _id, TileId::RailTurnoutDoubleSlip)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutdoublesliprailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutdoublesliprailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTDOUBLESLIPRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTDOUBLESLIPRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTDOUBLESLIPRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTDOUBLESLIPRAILTILE_HPP
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleft45railtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleft45railtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleft45railtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleft45railtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFT45RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFT45RAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFT45RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFT45RAILTILE_HPP
|
||||
|
||||
#include "turnoutleftrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleft90railtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleft90railtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleft90railtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleft90railtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFT90RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFT90RAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFT90RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFT90RAILTILE_HPP
|
||||
|
||||
#include "turnoutleftrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleftcurvedrailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleftcurvedrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleftcurvedrailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleftcurvedrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFTCURVEDRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFTCURVEDRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFTCURVEDRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFTCURVEDRAILTILE_HPP
|
||||
|
||||
#include "turnoutleftrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleftrailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleftrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnoutleftrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
TurnoutLeftRailTile::TurnoutLeftRailTile(const std::weak_ptr<World>& world, std::string_view _id, TileId tileId) :
|
||||
TurnoutRailTile(world, _id, tileId)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutleftrailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutleftrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTLEFTRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTLEFTRAILTILE_HPP
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutrailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../world/world.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../world/world.hpp"
|
||||
|
||||
TurnoutRailTile::TurnoutRailTile(const std::weak_ptr<World>& world, std::string_view _id, TileId tileId) :
|
||||
RailTile(world, _id, tileId),
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutrailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,14 +20,14 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRAILTILE_HPP
|
||||
|
||||
#include "railtile.hpp"
|
||||
#include "../../../core/objectproperty.hpp"
|
||||
#include "../../../core/method.hpp"
|
||||
#include "../../../enum/turnoutposition.hpp"
|
||||
#include "../../../hardware/output/map/turnoutoutputmap.hpp"
|
||||
#include "../railtile.hpp"
|
||||
#include "../../../../core/objectproperty.hpp"
|
||||
#include "../../../../core/method.hpp"
|
||||
#include "../../../../enum/turnoutposition.hpp"
|
||||
#include "../../../../hardware/output/map/turnoutoutputmap.hpp"
|
||||
|
||||
class TurnoutRailTile : public RailTile
|
||||
{
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutright45railtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutright45railtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutright45railtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutright45railtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHT45RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHT45RAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHT45RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHT45RAILTILE_HPP
|
||||
|
||||
#include "turnoutrightrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutright90railtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutright90railtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutright90railtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutright90railtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHT90RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHT90RAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHT90RAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHT90RAILTILE_HPP
|
||||
|
||||
#include "turnoutrightrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutrightcurvedrailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutrightcurvedrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutrightcurvedrailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutrightcurvedrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHTCURVEDRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHTCURVEDRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHTCURVEDRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHTCURVEDRAILTILE_HPP
|
||||
|
||||
#include "turnoutrightrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutrightrailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutrightrailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnoutrightrailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
TurnoutRightRailTile::TurnoutRightRailTile(const std::weak_ptr<World>& world, std::string_view _id, TileId tileId) :
|
||||
TurnoutRailTile(world, _id, tileId)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutrightrailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutrightrailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTRIGHTRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHTRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTRIGHTRAILTILE_HPP
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutsinglesliprailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutsinglesliprailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnoutsinglesliprailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
TurnoutSingleSlipRailTile::TurnoutSingleSlipRailTile(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
TurnoutRailTile(world, _id, TileId::RailTurnoutSingleSlip)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutsinglesliprailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutsinglesliprailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTSINGLESLIPRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTSINGLESLIPRAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTSINGLESLIPRAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTSINGLESLIPRAILTILE_HPP
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutwyerailtile.cpp
|
||||
* server/src/board/tile/rail/turnout/turnoutwyerailtile.cpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
#include "turnoutwyerailtile.hpp"
|
||||
#include "../../../core/attributes.hpp"
|
||||
#include "../../../utils/makearray.hpp"
|
||||
#include "../../../../core/attributes.hpp"
|
||||
#include "../../../../utils/makearray.hpp"
|
||||
|
||||
TurnoutWyeRailTile::TurnoutWyeRailTile(const std::weak_ptr<World>& world, std::string_view _id) :
|
||||
TurnoutRailTile(world, _id, TileId::RailTurnoutWye)
|
||||
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* server/src/board/tile/rail/turnoutwyerailtile.hpp
|
||||
* server/src/board/tile/rail/turnout/turnoutwyerailtile.hpp
|
||||
*
|
||||
* This file is part of the traintastic source code.
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTWYERAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUTWYERAILTILE_HPP
|
||||
#ifndef TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTWYERAILTILE_HPP
|
||||
#define TRAINTASTIC_SERVER_BOARD_TILE_RAIL_TURNOUT_TURNOUTWYERAILTILE_HPP
|
||||
|
||||
#include "turnoutrailtile.hpp"
|
||||
|
||||
@ -30,18 +30,18 @@
|
||||
#include "rail/curve90railtile.hpp"
|
||||
#include "rail/cross45railtile.hpp"
|
||||
#include "rail/cross90railtile.hpp"
|
||||
#include "rail/turnoutleft45railtile.hpp"
|
||||
#include "rail/turnoutleft90railtile.hpp"
|
||||
#include "rail/turnoutleftcurvedrailtile.hpp"
|
||||
#include "rail/turnoutright45railtile.hpp"
|
||||
#include "rail/turnoutright90railtile.hpp"
|
||||
#include "rail/turnoutrightcurvedrailtile.hpp"
|
||||
#include "rail/turnoutwyerailtile.hpp"
|
||||
#include "rail/turnout3wayrailtile.hpp"
|
||||
#include "rail/turnoutsinglesliprailtile.hpp"
|
||||
#include "rail/turnoutdoublesliprailtile.hpp"
|
||||
#include "rail/signal2aspectrailtile.hpp"
|
||||
#include "rail/signal3aspectrailtile.hpp"
|
||||
#include "rail/turnout/turnoutleft45railtile.hpp"
|
||||
#include "rail/turnout/turnoutleft90railtile.hpp"
|
||||
#include "rail/turnout/turnoutleftcurvedrailtile.hpp"
|
||||
#include "rail/turnout/turnoutright45railtile.hpp"
|
||||
#include "rail/turnout/turnoutright90railtile.hpp"
|
||||
#include "rail/turnout/turnoutrightcurvedrailtile.hpp"
|
||||
#include "rail/turnout/turnoutwyerailtile.hpp"
|
||||
#include "rail/turnout/turnout3wayrailtile.hpp"
|
||||
#include "rail/turnout/turnoutsinglesliprailtile.hpp"
|
||||
#include "rail/turnout/turnoutdoublesliprailtile.hpp"
|
||||
#include "rail/signal/signal2aspectrailtile.hpp"
|
||||
#include "rail/signal/signal3aspectrailtile.hpp"
|
||||
#include "rail/bufferstoprailtile.hpp"
|
||||
#include "rail/sensorrailtile.hpp"
|
||||
#include "rail/blockrailtile.hpp"
|
||||
|
||||
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren