Decompile map QuakeLive Gtkradiant 1.6.6


(Panda Remix) #1

I was looking for how to decompile a .bsp map and I could do it without problems, but when I am going to edit it, the map is without lighting and with many textures that are out of place. After searching for information, it is assumed that this is normal if one decompiles it in the manner "q3map2 .exe -convert -format map -map … etc.

Is there a way to decompile the map 100% with all its illumination and without its textures?

sorry for my English


(WuTangH) #2

Hi,
No, it’s not possible… Well, for lights it’s definitely not. BSP does not save all information that MAP format does.

Explanation: After you compile the map and load up BSP in the game, you can notice that it does not have lights/shadows at all. That’s because you have to “bake lights” in another compile process, which creates external static lightmaps in your maps/mapname/ folder. These image files are source of lighting in-game…
So to sum it up, BSP file doesn’t include most of lights / light entities, meaning that you won’t get them in the decompilation.
Additional info: It is possible to keep light entities in BSP with -keeplights or something like that… But noone uses it, since it’s useless and adds on file size. It’s also possible to keep lightmap info inside BSP, quite ancient way to compile lighting. But I don’t think it helps to decompile light entities, which are still not present in BSP file.

Textures alignment… I don’t know much about this process. However, converting BSPs to OBJ format used to keep right texture coordinates… Don’t know why decompiling doesn’t do that.


(Panda Remix) #3

It’s a shame … anyway thank you very much!