View previous topic :: View next topic |
Author |
Message |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Thu Aug 05, 2010 3:44 am Post subject: Sprite Monsters Like Duke Nukem --- How? |
|
|
How can someone make sprite monsters for Quake that are purely 2D with different animation frames?
The answer can DarkPlaces specific.
Sprite monsters would cut down on the skill level required to make monsters substantially. I'm curious ...
The Duke Nukem action is so awesome in eDuke32 I don't even care that they are sprites even though it is obvious. Which got me thinking about this ...
What file format? etc ... _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
leileilol

Joined: 15 Oct 2004 Posts: 1321
|
Posted: Thu Aug 05, 2010 5:16 am Post subject: Re: Sprite Monsters Like Duke Nukem --- How? |
|
|
Baker wrote: | Sprite monsters would cut down on the skill level required to make monsters substantially. |
wrong _________________
 |
|
Back to top |
|
 |
gnounc

Joined: 06 Apr 2009 Posts: 120
|
Posted: Thu Aug 05, 2010 6:53 am Post subject: |
|
|
Yeah, I'd imagine convincing sprites are just as difficult to make as a 3d model. Theres a lot of frames and angles and variations (with weapon, without weapon etc) to iterate through, unless you're using a 3d model as a source...in which case you have to be skilled at modeling anyways. |
|
Back to top |
|
 |
frag.machine

Joined: 25 Nov 2006 Posts: 728
|
Posted: Thu Aug 05, 2010 1:31 pm Post subject: |
|
|
Doom/Doom 2 (and I believe that's was the case for Duke3D, too) used real miniature models as the base for all monsters, obviously with lots of manual post-retouch. So yes, using this technique, a US$10 GI JOE action figure, a digital camera and Photoshop/GIMP one could create a new character from scratch without much effort (maybe a day or two of work in total). _________________ frag.machine - Q2K4 Project
http://fragmachine.quakedev.com/ |
|
Back to top |
|
 |
Baker

Joined: 14 Mar 2006 Posts: 1538
|
Posted: Thu Aug 05, 2010 2:22 pm Post subject: |
|
|
frag.machine wrote: | So yes, using this technique, a US$10 GI JOE action figure, a digital camera and Photoshop/GIMP one could create a new character from scratch without much effort (maybe a day or two of work in total). |
---
I guess part of what I ask, is there even a good file format that, say, DarkPlaces supports to do this?
I guess Quake sprites have multiple frames. I haven't looked into DarkPlaces sprite32s or whatever. It would require a 2D format with multiple frames for sure. _________________ Tomorrow Never Dies. I feel this Tomorrow knocking on the door ... |
|
Back to top |
|
 |
Dr. Shadowborg Inside3D Staff

Joined: 16 Oct 2004 Posts: 726
|
Posted: Thu Aug 05, 2010 4:17 pm Post subject: |
|
|
Baker wrote: |
I guess Quake sprites have multiple frames. I haven't looked into DarkPlaces sprite32s or whatever. It would require a 2D format with multiple frames for sure. |
Looking for a high-tech solution to this is pointless (unless you really want to for the exercise) when you can do this with even the normal vanilla quake .spr files.
Just do it the same way you would do .mdl frames, only with different perspectives. (i.e. front, back, diagonal, etc.) _________________ "Roboto suggests Plasma Bazooka." |
|
Back to top |
|
 |
frag.machine

Joined: 25 Nov 2006 Posts: 728
|
Posted: Thu Aug 05, 2010 4:45 pm Post subject: |
|
|
Baker wrote: | frag.machine wrote: | So yes, using this technique, a US$10 GI JOE action figure, a digital camera and Photoshop/GIMP one could create a new character from scratch without much effort (maybe a day or two of work in total). |
---
I guess part of what I ask, is there even a good file format that, say, DarkPlaces supports to do this? |
I was just rebating the statement that creating sprite-based avatars requires the same effort as creating a full 3D model. Sorry if I created some confusion, of course I understand your question is different.
Baker wrote: | [I guess Quake sprites have multiple frames. I haven't looked into DarkPlaces sprite32s or whatever. It would require a 2D format with multiple frames for sure. |
AFAIK .spr32 is funcionally equivalent to the vanilla .spr format, the main difference being the color depth. Both support single frames and group frames, pretty much like the alias models. _________________ frag.machine - Q2K4 Project
http://fragmachine.quakedev.com/ |
|
Back to top |
|
 |
Spike
Joined: 05 Nov 2004 Posts: 944 Location: UK
|
Posted: Thu Aug 05, 2010 5:39 pm Post subject: |
|
|
quake's sprites don't support directions, so you need extensions.
customizeentityforclient would allow you to change the frame based upon angle.
and yes, spr32 = spr, the only difference is that the frame data is 4 times as big, and doesn't use a palette - oh, and the typical extension+version number too. _________________ What's a signature? |
|
Back to top |
|
 |
leileilol

Joined: 15 Oct 2004 Posts: 1321
|
Posted: Thu Aug 05, 2010 6:34 pm Post subject: |
|
|
as an artist i find it 7x more difficult making sprite monsters as opposed to model monsters
lower technologic approach != easier. The only time that holds true is in creation of basic (sector-based) maps.
Lordhavoc told me once the spr directions could be pulled off with csqc with lots of tracelines iirc _________________
 |
|
Back to top |
|
 |
Spike
Joined: 05 Nov 2004 Posts: 944 Location: UK
|
Posted: Thu Aug 05, 2010 8:09 pm Post subject: |
|
|
why tracelines? csqc or customizeentityforclient will both do the job the same way - and no tracelines in sight. _________________ What's a signature? |
|
Back to top |
|
 |
|