hello , I am creating a map format for a game I'm making and I'm hoping to use xml. Can anyone tell me how to access elements using tinyxml ? or at least how create some sort of pain text parser ?

Thanks in advance !
A Novice C++ Programmer

hello , I am creating a map format for a game I'm making and I'm hoping to use xml. Can anyone tell me how to access elements using tinyxml ? or at least how create some sort of pain text parser ?

Thanks in advance !
A Novice C++ Programmer

You can write your own XML writing and reading classes.
You can use fstream.

There are some existing parsers.Just google for them.

How do you plan to store your data?

I gave up on xml and made a good text one in 2 hours

Example.wwsm

//== White Waters Software Map file [WWSM] ==\\

// ~4 = standard object input OXYZ
// ~7 = teleport object input OXYZXYZ

Battle // map name
Fight Etc ... // description 
Jason White // creator

//== map attributes ==\\

5         // sizex * 128
5         // sizey * 128
black     // background col

-1        // soundtrack
NULL      // path to soundtrack in ./data/

////data   input flag;object,x,y,z

~4;player,10,10,0
~4;dog,0,0,0
~4;sword,30,443,10
~7;teleport,10,10,0,30,30,0
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.