Forum

What are you working on?

Discuss anything not covered by any of the other categories.

Moderator: InsideQC Admins

Postby ceriux » Thu Mar 24, 2011 4:55 am

it might be. i was looking up some model related information yesterday and it seems when it comes to the code side, its pretty common for someone to have issues with rotation origins. (? i think it is.)
User avatar
ceriux
 
Posts: 2223
Joined: Sat Sep 06, 2008 3:30 pm
Location: Indiana, USA

Postby Dr. Shadowborg » Fri Mar 25, 2011 1:10 am

Not quake related but, I downloaded devkitARM and PALib in order to hammer some C/C++ into my head.

I've been making some sprites for this unnamed DS project...

http://tlb.quakedev.com/PICS/misc/DST_SRS_spr.png

These are 16x16, I bet most kids these days can't guess what this will be for... :D
User avatar
Dr. Shadowborg
InsideQC Staff
 
Posts: 1110
Joined: Sat Oct 16, 2004 3:34 pm

Postby Downsider » Fri Mar 25, 2011 1:11 am

Galaga clone?
User avatar
Downsider
 
Posts: 621
Joined: Tue Sep 16, 2008 1:35 am

Postby mh » Fri Mar 25, 2011 1:35 am

Hardware instancing for MDLs. It's good. :D 8)
We had the power, we had the space, we had a sense of time and place
We knew the words, we knew the score, we knew what we were fighting for
User avatar
mh
 
Posts: 2292
Joined: Sat Jan 12, 2008 1:38 am

Postby leileilol » Fri Mar 25, 2011 2:04 am

Dr. Shadowborg wrote:These are 16x16, I bet most kids these days can't guess what this will be for... :D


Indeed. SRS = short range scan = OMG TEH CLASSIC GAEM OF STAR TREK ON TEH DS!

crap i've spoiled it. but the DS would be perfect for it with the srs on top screen


I had the weird idea of implementing the same game within QuakeC once. but in a virtual bridge, with loads of entities representing visuals
i should not be here
leileilol
 
Posts: 2783
Joined: Fri Oct 15, 2004 3:23 am

Postby ajay » Fri Mar 25, 2011 8:50 am

This weekend I will be re-sizing road textures for eQ, a not altogether difficult task, though the bends will be tricky. I've known it's been needed for some time, but making videos last weekend just hammered it home to me. The yellow lines and drains etc are far too large, just running round the map isn't too much of a problem, but as soon as you put enemies in it's obvious as they look ludicrously small in comparison.
Another job to do, again one I've known that's needed to be done, is to replace the placeholder lamppost with something both thinner, more realistic and less blocky.
Once they're both done, it's time to open the 'east' of the map and see just how big I can make it...
User avatar
ajay
 
Posts: 559
Joined: Fri Oct 29, 2004 6:44 am
Location: Swindon, UK

Postby Dr. Shadowborg » Sat Mar 26, 2011 1:06 am

Downsider wrote:Galaga clone?


Good guess but no. Neither sprite really looks like something from Galaga, and only the Enterprise sprite bears a passing resemblance to the ship from Galaxian.

leileilol wrote:
Dr. Shadowborg wrote:These are 16x16, I bet most kids these days can't guess what this will be for... :D


Indeed. SRS = short range scan = OMG TEH CLASSIC GAEM OF STAR TREK ON TEH DS!

crap i've spoiled it. but the DS would be perfect for it with the srs on top screen

I had the weird idea of implementing the same game within QuakeC once. but in a virtual bridge, with loads of entities representing visuals


Spot on target here.

Dammit, your good. :D

I'll probably start with doing a "classic" version incorporating most of the features from EGATrek and a few from Visual Star Trek (VGATrek). After that the "enhanced" version with freelancer mode and multiple playable ship types gets brought out...
User avatar
Dr. Shadowborg
InsideQC Staff
 
Posts: 1110
Joined: Sat Oct 16, 2004 3:34 pm

Postby Wazat » Wed Mar 30, 2011 12:27 am

I've just written a gibbable corpses tutorial that allows for semisolid corpses in vanilla quake -- shouldn't require any special engine support. The player can shoot the corpses normally, but his movement is not impeded by them at all. I still have two bugs to fix, though.

Speaking of which... does anyone know if player frames (i.e. player_axe3) are run between PlayerPreThink and PlayerPostThink? That's the only reasonable way I can explain why the axe doesn't hit corpses and the lightning gun only hits when its attack first starts (not while holding down the button).

After I solve these bugs (or perhaps before), I'm going to test if this semisolid method works for solid bsp objects. If so, that will allow for the creation of team-friendly walls that let allies pass but block enemies.

Imagine a game of Mutant where the mutants can pass through certain walls but the humans cannot. That would be cool. :) Other examples are TF and CTF. No more problems with enemies getting through team doors.
When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work.
Wazat
 
Posts: 771
Joined: Fri Oct 15, 2004 9:50 pm
Location: Middle 'o the desert, USA

Postby ooppee » Wed Mar 30, 2011 3:28 am

Great work on that tut for the gibbable corpses would be perfect once you fix the bugs you mentioned (that non-solid walls becomes a big one lol).
As I don't have a full understanding of the engine, I always thought if one made the height "hit box" of the corpse very small it would allow the player to step on and over - like a stair. Like on E1M2 those steps at the start they don't slow you down. However does the engine "stop" a player regardless of him hitting a hitbox?
ooppee
 
Posts: 70
Joined: Thu Oct 28, 2010 2:57 am

Postby Wazat » Wed Mar 30, 2011 5:29 am

Well the func_wall bug only affects walls with the semisolid feature. Shouldn't hurt other walls.

As for stepping on bodies, there's a few options. One involves adding the FL_ONGROUND flag when the player touches the corpse, which if I remember right allows him to step onto it. However, this allows bodies to block doorways and my have other issues. Another is to simply make bodies gib when touched by a player (kicking corpses), so they're never in the way.

I'm sure I can get my system fixed though... :)
When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work.
Wazat
 
Posts: 771
Joined: Fri Oct 15, 2004 9:50 pm
Location: Middle 'o the desert, USA

Postby s87 » Wed Mar 30, 2011 9:45 am

Working on a Crysis 2 parody... more infos to follow soon. Since I'm new in the board I'm wondering where project ideas/project progress infos can be posted?

EDIT: What I mean is where can you present your project if you are looking for possible new members.

Anyway, great forum you have here and nice tutorials on the main page :)
Quake based Crysis 2 Parody: YouTube
CryEngine 2 project: open Outcast
Waiting for CryEngine 3 SDK...
s87
 
Posts: 8
Joined: Wed Mar 30, 2011 7:47 am
Location: Germany

Postby frag.machine » Thu Mar 31, 2011 12:01 am

s87 wrote:Working on a Crysis 2 parody... more infos to follow soon. Since I'm new in the board I'm wondering where project ideas/project progress infos can be posted?

EDIT: What I mean is where can you present your project if you are looking for possible new members.

Anyway, great forum you have here and nice tutorials on the main page :)


Welcome aboard. :)

I think it's okay to show up a screenshot or two of your current work right here, unless you have enough stuff that justify to pull a new thread. But that's what I think, not a strict rule.
I know FrikaC made a cgi-bin version of the quakec interpreter once and wrote part of his website in QuakeC :) (LordHavoc)
User avatar
frag.machine
 
Posts: 2090
Joined: Sat Nov 25, 2006 1:49 pm

Postby ceriux » Thu Mar 31, 2011 8:00 am

s87 wrote:Working on a Crysis 2 parody... more infos to follow soon. Since I'm new in the board I'm wondering where project ideas/project progress infos can be posted?

EDIT: What I mean is where can you present your project if you are looking for possible new members.

Anyway, great forum you have here and nice tutorials on the main page :)


Gameplay and Design ?

What are you working on? ?
User avatar
ceriux
 
Posts: 2223
Joined: Sat Sep 06, 2008 3:30 pm
Location: Indiana, USA

Postby s87 » Fri Apr 01, 2011 3:24 pm

Created some video showing the current stage of development and opened a new thread discussing the goals/design and recruiting options :)
Quake based Crysis 2 Parody: YouTube
CryEngine 2 project: open Outcast
Waiting for CryEngine 3 SDK...
s87
 
Posts: 8
Joined: Wed Mar 30, 2011 7:47 am
Location: Germany

Postby leileilol » Fri Apr 01, 2011 7:26 pm

i don't think recruiting will be effective here. for one thing, all we're ever experienced with is a engine that is 15 years old

though on the rare exception here i have wider experience (darkstar, build, doom, unreal1/2/3, idt3) but it doesn't really matter for cryengine3
i should not be here
leileilol
 
Posts: 2783
Joined: Fri Oct 15, 2004 3:23 am

PreviousNext

Return to General Discussion

Who is online

Users browsing this forum: No registered users and 1 guest