
Epic GTA2 Map Editor (0.6.6602) Beta
- Cuban-Pete
- Immortal
- Posts: 909
- Joined: 29 Jan 2010, 15:03
- GH nick: Cuban-Pete
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
would it be possible to add this option to zone editor? not in the menu's, but like little hidden feature. so that you can fly around in "real" 3d. I have no idea if you would get sick of it or keep crossed eyes for ever... haha 

"Mmmm, your eyes are so beautiful."
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Zone editor...? why on earth there? i do not understand.
I will add button to switch to Stereogram mode
Im getting quite used to this already, at first 30mins eyes crossed gave some problems in sight, was hard to revert back to normal focus
Edit: lmao, i tried to move my head to see behind a corner when watched that latest stereogram image
THAT realistic it is 
I will add button to switch to Stereogram mode

Im getting quite used to this already, at first 30mins eyes crossed gave some problems in sight, was hard to revert back to normal focus

Edit: lmao, i tried to move my head to see behind a corner when watched that latest stereogram image


My GTA2 related projects:
- Cuban-Pete
- Immortal
- Posts: 909
- Joined: 29 Jan 2010, 15:03
- GH nick: Cuban-Pete
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Thanks.TradeMark wrote:Zone editor...? why on earth there? i do not understand.
I will add button to switch to Stereogram mode
Sorry, I meant to say map editor... I guess I'm starting to see cross eyed already (if you look at title of topic, you can see zone editor in it)

"Mmmm, your eyes are so beautiful."
- Black Phoenix
- Jaywalker
- Posts: 7
- Joined: 15 Mar 2010, 16:23
- GH nick: BlackPhoenix
- Location: Kyiv, Ukraine
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
This map viewer looks great, you did a good job on it. Do you want to add OpenGTA2 map file formats to it? (probably not though, they are slightly different from usual GTA1/GTA2 maps: they come in 64x64 blocks, instead of single 256x256 map). What do you think? (It also uses custom graphics format, which is an already packed texture atlas, full 32-bit RGBA).
-
- Lunatic
- Posts: 456
- Joined: 19 Jul 2008, 14:14
- GH nick: Razor, R
- Location: Poland / Szczecin
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Black Phoenix wrote:This map viewer looks great, you did a good job on it. Do you want to add OpenGTA2 map file formats to it? (probably not though, they are slightly different from usual GTA1/GTA2 maps: they come in 64x64 blocks, instead of single 256x256 map). What do you think? (It also uses custom graphics format, which is an already packed texture atlas, full 32-bit RGBA).
you should add a poll of your opengta2 project ;P
also update gta2 section in your blog
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
I rather not make a support for unreleased/unfinished project map format. Out of curiosity: are you using DDS image format? (since you said its packed).Black Phoenix wrote:Do you want to add OpenGTA2 map file formats to it? (probably not though, they are slightly different from usual GTA1/GTA2 maps: they come in 64x64 blocks, instead of single 256x256 map). What do you think? (It also uses custom graphics format, which is an already packed texture atlas, full 32-bit RGBA).
My GTA2 related projects:
- Black Phoenix
- Jaywalker
- Posts: 7
- Joined: 15 Mar 2010, 16:23
- GH nick: BlackPhoenix
- Location: Kyiv, Ukraine
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Currently it only supports uncompressed data, it's packed as in a texture atlasTradeMark wrote:I rather not make a support for unreleased/unfinished project map format. Out of curiosity: are you using DDS image format? (since you said its packed).Black Phoenix wrote:Do you want to add OpenGTA2 map file formats to it? (probably not though, they are slightly different from usual GTA1/GTA2 maps: they come in 64x64 blocks, instead of single 256x256 map). What do you think? (It also uses custom graphics format, which is an already packed texture atlas, full 32-bit RGBA).
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Oh... well thats really bad way of doing it. To make it work best on each card type, you have to split it again to X size texture atlases. 256x256 blocks is easy to move to bigger texture sizes, so i think GTA2 method is really good, at least for these limitations (textures cant be larger than 128x128 etc.)
Im thinking to use 256x256 atlas blocks in future too (or max 1024x1024 depends how large textures it will support), since you dont have to recalculate whole atlas if you edit one small atlas, and they will fit any size of texture.
Im thinking to use 256x256 atlas blocks in future too (or max 1024x1024 depends how large textures it will support), since you dont have to recalculate whole atlas if you edit one small atlas, and they will fit any size of texture.
My GTA2 related projects:
- Black Phoenix
- Jaywalker
- Posts: 7
- Joined: 15 Mar 2010, 16:23
- GH nick: BlackPhoenix
- Location: Kyiv, Ukraine
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
It can use more atlases, there is no limit on size or amount of tiles in it, or size of tiles (the only difference it makes is that it will have to use more vertex buffers for each visible atlas, instead of just 1..4 when you can fit all tiles into single texture); there is no runtime splitting of the atlases though.TradeMark wrote:Oh... well thats really bad way of doing it. To make it work best on each card type, you have to split it again to X size texture atlases. 256x256 blocks is easy to move to bigger texture sizes, so i think GTA2 method is really good, at least for these limitations (textures cant be larger than 128x128 etc.)
Im thinking to use 256x256 atlas blocks in future too (or max 1024x1024 depends how large textures it will support), since you dont have to recalculate whole atlas if you edit one small atlas, and they will fit any size of texture.
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
i was talking about the sprite atlases though
But yeah 1 tile at a time in the data is best way... then you just rebuild it into atlas (i call them tilemaps since their texture positions are calculated by x / y and the size of tile is same).
Edit: oh wait, did you mean you are using 1 texture for 1 tile ? no tilemap at all?
that'll be hell slow on some cards.

But yeah 1 tile at a time in the data is best way... then you just rebuild it into atlas (i call them tilemaps since their texture positions are calculated by x / y and the size of tile is same).
Edit: oh wait, did you mean you are using 1 texture for 1 tile ? no tilemap at all?

My GTA2 related projects:
- Black Phoenix
- Jaywalker
- Posts: 7
- Joined: 15 Mar 2010, 16:23
- GH nick: BlackPhoenix
- Location: Kyiv, Ukraine
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
TradeMark wrote:i was talking about the sprite atlases though![]()
But yeah 1 tile at a time in the data is best way... then you just rebuild it into atlas (i call them tilemaps since their texture positions are calculated by x / y and the size of tile is same).
Edit: oh wait, did you mean you are using 1 texture for 1 tile ? no tilemap at all?that'll be hell slow on some cards.

(it's a thumbnail)
Sprite data is converted once from original data, right now it generates same size texture and puts everything there. It is a tool limitation (I'm lazy to add sane way to pick atlas size). It doesn't have nice way of graphics load-on-demand right now, so for developement time it's neater to have it all in one place (my machines, and my testers machines support 1024x1024 textures)
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
My tilemap looks almost same, using the 256x256 blocks in 2048x2048 image 

My GTA2 related projects:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
My GTA2 related projects:
-
- Lunatic
- Posts: 456
- Joined: 19 Jul 2008, 14:14
- GH nick: Razor, R
- Location: Poland / Szczecin
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
nice! if sth is under the ground should be more transparent
- Black Phoenix
- Jaywalker
- Posts: 7
- Joined: 15 Mar 2010, 16:23
- GH nick: BlackPhoenix
- Location: Kyiv, Ukraine
- Contact:
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
That screenshot looks cool! I think you should try out making screenshots in that isometric sim-city like camera mode
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Yeah i was thinking same, i'll see what i can do.Razor wrote:nice! if sth is under the ground should be more transparent
i dont think i can, at least they wont be perfect / seamlessBlack Phoenix wrote:I think you should try out making screenshots in that isometric sim-city like camera mode

My GTA2 related projects:
- Cuban-Pete
- Immortal
- Posts: 909
- Joined: 29 Jan 2010, 15:03
- GH nick: Cuban-Pete
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
looks pretty cool that screenshot maker. perhaps add option to adjust items (like power up) size (make larger) so it is visible when you make 800x600 maps (as example, or a bit larger).
do I make sense?

do I make sense?


"Mmmm, your eyes are so beautiful."
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)
Yes, i will add size adjusting 
Edit: LOL:


Edit: LOL:

My GTA2 related projects:
- Cuban-Pete
- Immortal
- Posts: 909
- Joined: 29 Jan 2010, 15:03
- GH nick: Cuban-Pete
Re: TradeMark's GTA2 Map Editor (only Zone Editor currently)

if you make the cars smaller, I think it will be perfect.

"Mmmm, your eyes are so beautiful."