Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
Moderator: InsideQC Admins
13 posts
• Page 1 of 1
Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
http://quakeone.com/forums/quake-mod-re ... ammer.html
http://quakeone.com/forums/quake-mod-re ... lazer.html
Best call for help I've ever seen(TM). Go help him! Attach your name to a game that looks like it might make quite a nice impact. Get famous and rich!
http://quakeone.com/forums/quake-mod-re ... lazer.html
It started out as a raycast game TC years back for the Mac, but have converted and rebuilt it to a quake TC in Darkplaces. With Quake I believe that you can do some interesting stuff with the fast paced engine, but with the 'locked' raycast style gameplay perspective in Singleplayer.
The game's graphical style is done 100% from scratch. Its reminiscent of your classic 90s style games with a good bit of your classic FPS aesthetics, so I think its something new for those of you who enjoy the classics style games.
Everything is redone, all the textures as well as the GFX, sounds, and Music. the game's visuals are not limited to a single 'floor' like wolf3d, but share some of the blocky grid aesthetics.
Best call for help I've ever seen(TM). Go help him! Attach your name to a game that looks like it might make quite a nice impact. Get famous and rich!
Improve Quaddicted, send me a pull request: https://github.com/SpiritQuaddicted/Quaddicted-reviews
- Spirit
- Posts: 1031
- Joined: Sat Nov 20, 2004 9:00 pm
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
Very very promising work! Weapon models and art in general are fabolous! I wish I could be a programmer! C*O*N*G*G*R*A*T*S!!
EDIT: How is it possible to achieve that cartoon effect on weapons?
EDIT: How is it possible to achieve that cartoon effect on weapons?
Meadow Fun!! - my first commercial game, made with FTEQW game engine
- toneddu2000
- Posts: 1352
- Joined: Tue Feb 24, 2009 4:39 pm
- Location: Italy
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
Looks like sprites. With CSQC you can fake directional sprites in theory, but i'm just giving a csqc hinty bullshit here. but it is possible to have angles calculated from your position in csqc, pick a frame from that, etc. etc.
LOVING THE MAP TEXTURES BTW
LOVING THE MAP TEXTURES BTW
i should not be here
- leileilol
- Posts: 2783
- Joined: Fri Oct 15, 2004 3:23 am
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
Is that Darkplaces? Running with sprites instead of models? How curious!
- JasonX
- Posts: 411
- Joined: Tue Apr 21, 2009 2:08 pm
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
.customizeentityforclient (or whatever its called) can also do the directional sprites without csqc, but its quite messy in its own right, as you need to use .frame to generate .frame values without breaking .frame... Or just use something other than .frame, which means you're using something other than .frame to express .frame... Yeah, messy. 
- Spike
- Posts: 2892
- Joined: Fri Nov 05, 2004 3:12 am
- Location: UK
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
Thanks guys for the comments! Glad you guys enjoy the style!
All most all of the elements are 2d including the weapons, though there are a few mdls for architecture here and there. The entire game is also fullbright, so there actually are no lights, made getting the assets organized take longer, but in the long run making maps is very easy, and the maps render extremely fast.
Currently looking for help in really any aspect, including Interface programming for new HUDs ect.
Thanks guys!
All most all of the elements are 2d including the weapons, though there are a few mdls for architecture here and there. The entire game is also fullbright, so there actually are no lights, made getting the assets organized take longer, but in the long run making maps is very easy, and the maps render extremely fast.
Currently looking for help in really any aspect, including Interface programming for new HUDs ect.
Thanks guys!
- R-Blazer
- Posts: 4
- Joined: Tue Nov 01, 2011 1:47 am
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
I'm dying to know how you made those enemies and weapons using only sprites. Will you open source this? Maybe a tutorial if you don't plan on open-sourcing? (although engine changes should be open sourced anyway due to GPL).
- JasonX
- Posts: 411
- Joined: Tue Apr 21, 2009 2:08 pm
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
toneddu2000 wrote:
EDIT: How is it possible to achieve that cartoon effect on weapons?
you could make a flat plane in your model editor for the v_wep, make a sprite to use as the weapons texture save it as a tga, give it a transparent background and ta-da !
problem then would be animation, since darkplaces or any other quake engine doesnt support self.weaponskin (an equivalent to self.skin but for weapons.) a solution to that would be to have different versions of that v_wep and if self.weaponframe = x change the model to the slightly different version of that v_wep to simulate the sprite animation.
code wise it may be slightly different. but something like it would work.
-

ceriux - Posts: 2223
- Joined: Sat Sep 06, 2008 3:30 pm
- Location: Indiana, USA
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
ceriux wrote: since darkplaces or any other quake engine doesnt support self.weaponskin (an equivalent to self.skin but for weapons.)
it doesn't need that, it's a viewmodelforclient enitty, it can do anything a model can do.
i should not be here
- leileilol
- Posts: 2783
- Joined: Fri Oct 15, 2004 3:23 am
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
leileilol wrote:ceriux wrote: since darkplaces or any other quake engine doesnt support self.weaponskin (an equivalent to self.skin but for weapons.)
it doesn't need that, it's a viewmodelforclient enitty, it can do anything a model can do.
Do you have any examples of this feature? Or documentation? Is it DP specific?
- JasonX
- Posts: 411
- Joined: Tue Apr 21, 2009 2:08 pm
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
read dpextensions.qc, it'll explain it. One of the cool things you can pull of on that method is tags so you could have shells ejecting from where the gun ejects shells rather than dirty approximation though QC, and also muzzleflashes that comes out of..... oh my god..... the gun's muzzle!
i should not be here
- leileilol
- Posts: 2783
- Joined: Fri Oct 15, 2004 3:23 am
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
thanks leilei, i didn't know that. but if you didn't have that extension on the engine my way would work no?
-

ceriux - Posts: 2223
- Joined: Sat Sep 06, 2008 3:30 pm
- Location: Indiana, USA
Re: Darkplaces Standalone/TC "RetroBlazer" needs QuakeC help
or you can think for a second, and realize that the world doesn't revolve around obscure hacked up psp engine features.
besides, the game uses actual sprites, and animates by frames, not skins.
besides, the game uses actual sprites, and animates by frames, not skins.
i should not be here
- leileilol
- Posts: 2783
- Joined: Fri Oct 15, 2004 3:23 am
13 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 1 guest

