New Build (2011-02-15)

Moderators: GSH, Ultraken

User avatar
Ultraken
Patch Creator
Posts: 373
Joined: Fri Feb 18, 2011 6:06 pm
Contact:

Re: New Build (2011-02-15)

Post by Ultraken »

A fancy new renderer would need fancy new game assets to take advantage of it and a new asset pipeline to load them. At some point, it would be easier to start over from scratch...
User avatar
Red Devil
Recycler
Posts: 4398
Joined: Fri Feb 18, 2011 5:10 pm
Location: High in the Rocky Mountains

Re: New Build (2011-02-15)

Post by Red Devil »

i think you've done excellent and incredible work, Ken. 8-)
User avatar
Zax
Attila
Posts: 1388
Joined: Sat Feb 19, 2011 6:56 am

Re: New Build (2011-02-15)

Post by Zax »

Ultraken wrote:A fancy new renderer would need fancy new game assets to take advantage of it and a new asset pipeline to load them. At some point, it would be easier to start over from scratch...
BZ3
Commando
Flying Mauler
Posts: 2176
Joined: Fri Feb 18, 2011 6:41 pm

Re: New Build (2011-02-15)

Post by Commando »

Good luck with that one.
User avatar
Zenophas
Bull Dog
Posts: 971
Joined: Fri Aug 19, 2011 2:42 pm
Location: The Dark Hole In The Corner Of Your Dreams.

Re: New Build (2011-02-15)

Post by Zenophas »

Red Devil wrote:i think you've done excellent and incredible work, Ken. 8-)
^This.
Apollo
Sabre
Posts: 456
Joined: Sat Feb 19, 2011 9:51 pm

Re: New Build (2011-02-15)

Post by Apollo »

Battlezone doesn't need all the fancy shaders of modern game engines, it just needs to work well at what it does and allow a little room for growth. Such things as 32bit color, png support, MPI, lighting, mod switching, a better sound and gamespy api. Maybe even long name support.

If you wanted better shadows, make a custom shadow per object and assign it via odf.
User avatar
Zenophas
Bull Dog
Posts: 971
Joined: Fri Aug 19, 2011 2:42 pm
Location: The Dark Hole In The Corner Of Your Dreams.

Re: New Build (2011-02-15)

Post by Zenophas »

Apollo wrote:Battlezone doesn't need all the fancy shaders of modern game engines, it just needs to work well at what it does and allow a little room for growth. Such things as 32bit color, png support, MPI, lighting, mod switching, a better sound and gamespy api. Maybe even long name support.

If you wanted better shadows, make a custom shadow per object and assign it via odf.
I agree with this. By PNG, do you mean that as an alternative to MAP textures? Cause' MAPS really awful.
Apollo
Sabre
Posts: 456
Joined: Sat Feb 19, 2011 9:51 pm

Re: New Build (2011-02-15)

Post by Apollo »

Png is compressed and can use an alpha channel, which would be good for new assets for the game.
Map format has better size for 512x512, larger textures png is far smaller and larger map files cause the game to pause for loading.
User avatar
Ultraken
Patch Creator
Posts: 373
Joined: Fri Feb 18, 2011 6:06 pm
Contact:

Re: New Build (2011-02-15)

Post by Ultraken »

MAP files are basically raw binary data with a relatively simple format:
  • width (16 bits)
  • type (16 bits)
  • height (32 bits)
  • data (varies)
Width and height describbe the width and height of the texture and should be the same.
If type is 0, data contains width * height 8-bit color indices.
If type is 1, data contains width * height 16-bit color values in A4R4G4B4 format.

MAP files didn't need compression because ZFS already did that for it. That doesn't help so much for mods, though...
Apollo
Sabre
Posts: 456
Joined: Sat Feb 19, 2011 9:51 pm

Re: New Build (2011-02-15)

Post by Apollo »

12bit tanks skins are far better but i would rather see map format replaced, along with any palettes. (guess that's a 1.6 thing)

Would you make a rally point for objects created from the recycler and factory?
User avatar
Ultraken
Patch Creator
Posts: 373
Joined: Fri Feb 18, 2011 6:06 pm
Contact:

Re: New Build (2011-02-15)

Post by Ultraken »

I'd need the original art assets to build a full set of 16-bit or 32-bit textures, and those may well be lost forever. I wish I had burned them onto a CD or something back when I had access...
Apollo
Sabre
Posts: 456
Joined: Sat Feb 19, 2011 9:51 pm

Re: New Build (2011-02-15)

Post by Apollo »

Well we can use the 8bit planet textures for a while converted to 24bit and later gets an artist to remake them.
User avatar
Ultraken
Patch Creator
Posts: 373
Joined: Fri Feb 18, 2011 6:06 pm
Contact:

Re: New Build (2011-02-15)

Post by Ultraken »

That would improve things slightly since palette values are currently crushed down to 16 bit (R5G6B5).
Post Reply