-
Ok, now i made a functional tilemap, but i foud a limit... cus VertexArray is a std::vector<Vertex> i can't make a 3900x3900 tile map (60 milion of vertex)
Due to private member i can't know m_vertices.max_size()
For the moment i can generate and build a 32x32*256px tilemap in some microseconds and draw it in 10 microseconds :)
My question, how can i know the max size of m_vertices?
For the moment i get crash at this line:
myMap.resize(nrows*ncols*4);
EDIT:
Ok i see that i will get some FPS crash with 350x350 map. So i suppose to set max map size to 300x300 which is the last stable FPS map size!
-
You'll need to know the memory footprint of a tile and the limit will probably be your available amout of RAM.
Also I'd say the question is just wrong to ask (except if you're doing a benchmark or something) but if you need 60 million vertecies then you're design is kind of flawed. (Okay maybe you're doing some uber cool game but for a 'normal' tilemap you won't need that many...
-
Dude, your map has 1 million x 1 million pixels ???
I think this is crazy. Even if this is really necessary, you should at least split that in chunks and do visibility tests, so that you don't draw the whole thing all the time.
-
Yes, it is crazy to make 3900x3900 xD
300x300 is alredy too big and take too much to "walk" all around. So probably i will limit the map size to 300x300
1000x1000 (and 3900x3900) are just tests, if i could draw 1000x1000 map without FPS crash it will be very usefull, so i can draw all size below 1000x1000 with an high framerate :)
So now, my question is: to manage chunks, will i need to split vertexarray map in n small vertexarray? Or there is a better and coolest way to do it?
-
There's no "automatic" way, you have to split your world into vertex arrays of an optimal size. The cool thing is that with some simple visibility tests, you can draw only 4 chunks (vertex arrays) at any time.
-
Ok, i will make some tests to reach this goal :P
-
I think using wrapping is more logical.
You only have enough vertices to cover the screen. As the player moves and tiles go out of view, you move them to the opposite side (obviously changing the texture to the appropriate one) and record the offset.
Making 3900x3900x4 verteces for the whole tilemap is just idiotic. Holding them all in memory and manipulating them is very unefficient (I'm not even talking about rendering). Use some sort of dynamic map/chunk loading.
-
Ok i'm testing for chunks, but i get some errors.
I put in my TileMap class a std::vector<sf::VertexArray> mapChunks
For my test i want to draw only a 2x2 section of my map that start from (0, 0) coordinates.
So i build a function that store in a vertexarray the right vertex and then store the vertexarray inside the vector.
Then i call draw
window.draw(mapChunks[0],&tilesTexture);
It draws nothing :(
I used the same algorith to build and draw the normal huge map (it draws well), but this tme it wil lbe limited only to a 2x2 matrix.
I checked memory with debugging and vertexarray inside the vector has the same vertexs of normal big map vertexarray.
Why it doesn't draw my small tilemap? What is my mistake?
EDIT: Error found, i forgot to set primitive type xD Now it draws well 2x2 map :)
-
There is a way to rotate 90° a texture that normally is not rotated in tileset? Or have i to draw the same texture rotated and put it in tile set?
-
There is a way to rotate 90° a texture that normally is not rotated in tileset?
Rotate the texture coordinates of the quad.
-
There is a way to rotate 90° a texture that normally is not rotated in tileset?
Rotate the texture coordinates of the quad.
Nice! :D
Now i want to see how much memory (in bytes) each item uses. I read aroud about _msize for VS10, but i get a debug error wich say that the poiter i use is invalid or something like that:
std::cout << "The Matrix size allocated is " << _msize(mapMatrix) << " bytes!"<<std::endl;
std::cout << "The MyMap size allocated is " << _msize(&myMap) << " bytes!"<<std::endl;
std::cout << "The MyMapChunk size allocated is " << _msize(&myMapChunk) << " bytes!"<<std::endl;
mapMatrix is a sf:Uint16 pointer
myMap is sf::VertexArray
myMapChunk is a std::vector<sf::VertexArray>
The error appear at _msize(&myMap).
There is a better way to know how much bytes each item uses?
-
_msize() doesn't work like that. You should read the documentation of unknown functions before using them:
The _msize function returns the size, in bytes, of the memory block allocated by a call to calloc, malloc, or realloc.
There is no portable way to find out how much bytes are totally allocated by an arbitrary object.
-
_msize() doesn't work like that. You should read the documentation of unknown functions before using them:
The _msize function returns the size, in bytes, of the memory block allocated by a call to calloc, malloc, or realloc.
There is no portable way to find out how much bytes are totally allocated by an arbitrary object.
Oh yes xD Sorry! I read only some forum posts taht said it used to know bytes and i used it :P
Ok, thx for fast reply :)
-
I'm getting crazy with update and draw chunks :( I don't know how to code it.
I've a matrix wich represent my tilemap and where i can build tiles.
Chunk size is 8x8 tile
Chunks are std::vector<sf::VertexArray> (maybe i've to code a Chunk class, so i can manage something more than the tilemap)
How can i code a fast and good chunks system? :S
I was thinking about using a IntRect > windowView and calculate tiles coordinates in tile (x*256,y*256) and tehn build and draw chunks taht cover all points inside IntRect... its a good way or there is a more flexible way to manage them?