SFML community forums

Help => General => Topic started by: vovik_0_1 on April 29, 2014, 10:00:24 pm

Title: Custom Properties
Post by: vovik_0_1 on April 29, 2014, 10:00:24 pm
Hey. I'm creating a game for SFML in VS 11 and connect Box2d.
Loading map using https://github.com/fallahn/sfml-tmxloader
Map created in the program Tiled Map Editor.
Tell me how you can consider the option "Custom Properties" object, for example variable "Te".

(http://anrobot.ucoz.ru/zastavka/tx.png)
Title: Re: Custom Properties
Post by: vovik_0_1 on June 06, 2014, 08:10:56 pm
Help please!
Title: Re: Custom Properties
Post by: zsbzsb on June 06, 2014, 08:41:34 pm
I am not sure anyone (myself included) understands what you are asking. You should probably clarify what you want and then maybe we would be able to help you.  ;)
Title: Re: Custom Properties
Post by: vovik_0_1 on June 06, 2014, 08:55:47 pm
I need to get the parameter "Texture". For example:
const std::vector<tmx::MapLayer>& layers = ml.GetLayers();
        for (const auto& l : layers)
        {
                 if (l.name == "Din")
                {      
                        for (const auto& o : l.objects)
                        {                      
                            if(o.GetName() == "Block") //  
                                {
                                        std::string tex  = o.GetNameTexture();    Get parameter "Texture"
                                       dimen = tmx::BodyCreator::Add(o, world, false , b2BodyType::b2_dynamicBody);
                                        Block.Create(dimen);

                                    Blocks.push_back(Block);
                                }                      
                       
                        }
                }
        }
In the variable "tex" should be "Block.png"
(http://anrobot.ucoz.ru/zastavka/tx.png)