X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibr2c2%2Fvehicletype.h;h=d9afdbce8c00aa60f4e32e224c782176cd239b22;hb=d15ac13f2e170f155b4bbd124df48400c339b644;hp=b97fb921519212f8b74e7d1681514ed3dacd4971;hpb=1ff06c5bc46a677fa389ef86c6b26664368f1653;p=r2c2.git diff --git a/source/libr2c2/vehicletype.h b/source/libr2c2/vehicletype.h index b97fb92..d9afdbc 100644 --- a/source/libr2c2/vehicletype.h +++ b/source/libr2c2/vehicletype.h @@ -1,15 +1,9 @@ -/* $Id$ - -This file is part of R²C² -Copyright © 2010 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - #ifndef LIBR2C2_VEHICLETYPE_H_ #define LIBR2C2_VEHICLETYPE_H_ #include #include "articlenumber.h" +#include "geometry.h" namespace R2C2 { @@ -18,6 +12,9 @@ class VehicleType public: class Loader: public Msp::DataFile::ObjectLoader { + private: + std::map rod_tags; + public: Loader(VehicleType &); private: @@ -26,6 +23,7 @@ public: void function(unsigned, const std::string &); void height(float); void length(float); + void rod(); void width(float); }; @@ -48,6 +46,8 @@ public: Axle(); }; + typedef std::vector AxleArray; + struct Bogie { class Loader: public Msp::DataFile::ObjectLoader @@ -60,23 +60,82 @@ public: }; float position; - std::vector axles; + AxleArray axles; std::string object; bool rotate_object; Bogie(); }; + typedef std::vector BogieArray; + + struct Rod + { + enum Anchor + { + BODY, + AXLE, + BOGIE_AXLE, + ROD + }; + + enum Limit + { + FIXED, + ROTATE, + SLIDE_X + }; + + class Loader: public Msp::DataFile::ObjectLoader + { + private: + const std::map &tags; + std::string tag; + + public: + Loader(Rod &, const std::map &); + const std::string &get_tag() const { return tag; } + private: + void connect(const std::string &, float, float, float, float); + void limit(Limit); + void pivot_body(); + void pivot_axle(unsigned); + void pivot_bogie_axle(unsigned, unsigned); + void pivot_rod(const std::string &); + void position(float, float, float); + void set_tag(const std::string &); + }; + + Anchor pivot; + unsigned pivot_index; + unsigned pivot_index2; + Vector pivot_point; + Limit limit; + int connect_index; + Vector connect_point; + Vector connect_offset; + std::string object; + bool mirror_object; + + Rod(); + }; + + typedef std::vector RodArray; + + typedef std::map FunctionMap; + private: ArticleNumber art_nr; std::string name; bool locomotive; - std::map functions; + FunctionMap functions; + bool swap_direction; float length; float width; float height; - std::vector axles; - std::vector bogies; + AxleArray axles; + BogieArray bogies; + RodArray rods; std::string object; public: @@ -86,12 +145,18 @@ public: const std::string &get_name() const { return name; } bool is_locomotive() const { return locomotive; } unsigned get_max_function() const; - const std::map &get_functions() const { return functions; } + const FunctionMap &get_functions() const { return functions; } + bool get_swap_direction() const { return swap_direction; } float get_length() const { return length; } float get_width() const { return width; } float get_height() const { return height; } - const std::vector &get_axles() const { return axles; } - const std::vector &get_bogies() const { return bogies; } + const AxleArray &get_fixed_axles() const { return axles; } + const Axle &get_fixed_axle(unsigned) const; + const BogieArray &get_bogies() const { return bogies; } + const Bogie &get_bogie(unsigned) const; + const Axle &get_bogie_axle(unsigned, unsigned) const; + const RodArray &get_rods() const { return rods; } + const Rod &get_rod(unsigned) const; float get_front_axle_offset() const; float get_back_axle_offset() const; const std::string &get_object() const { return object; }