Forum

QuakeSrc archive?

Discuss programming topics for the various GPL'd game engine sources.

Moderator: InsideQC Admins

QuakeSrc archive?

Postby ArchAngel » Fri Jun 03, 2011 7:37 pm

Hi all,
Anyone got an archive of the old Engine tuts that were on Quakesrc?
ArchAngel
 
Posts: 37
Joined: Fri Jun 03, 2011 7:33 pm

Postby revelator » Fri Jun 03, 2011 7:49 pm

what could be rescued is here.

viewtopic.php?t=1213

the bits and pieces posted in the general programming forums are sadly lost though.
User avatar
revelator
 
Posts: 2567
Joined: Thu Jan 24, 2008 12:04 pm
Location: inside tha debugger

Postby Chip » Fri Jun 03, 2011 8:17 pm

They're also here - http://www.quakewiki.net/quakesrc/

What are you looking for?
QuakeWiki
getButterfly - WordPress Support Services
Roo Holidays

Fear not the dark, but what the dark hides.
User avatar
Chip
 
Posts: 575
Joined: Wed Jan 21, 2009 9:12 am
Location: Dublin, Ireland

Postby ArchAngel » Fri Jun 03, 2011 9:20 pm

Thanks both.

I wasn't looking for anything in particular, but I've been away from the Quake scene since before Quakesrc died properly the second time and I'm just dipping my toe back in by playing with SharpQuake... problem is I don't think it fixes a lot of the basic stuff we had working. Gonna start with trying to get animation interpolation back in (though I think that came from a QER tut thinking about it :))

Edit:
Might have a chat with Tomaz about how he built the progs QC stuff back into the engine while I'm at it.
ArchAngel
 
Posts: 37
Joined: Fri Jun 03, 2011 7:33 pm

Postby revelator » Fri Jun 03, 2011 9:22 pm

welcome back then :)

and correct about the interpolation allthough quite some polishing has made it in through the years ;)
User avatar
revelator
 
Posts: 2567
Joined: Thu Jan 24, 2008 12:04 pm
Location: inside tha debugger

Postby ArchAngel » Fri Jun 03, 2011 9:30 pm

Ah ok, any pointers to any of the polished info? Last time I looked at it everyone had become bored of stock MDLs and was trying to cram a skeletal system in where ever possible.
ArchAngel
 
Posts: 37
Joined: Fri Jun 03, 2011 7:33 pm

Postby revelator » Sat Jun 04, 2011 12:31 am

should be some posts here somewhere from mh fixing up a few things.

one i remember was in CL_ParseUpdate resetting some interpolation vars.

ah aye.

somewhere after if (model != ent->model)

put this

// if the model has changed we must also reset the interpolation data
// pose1 and pose2 are critical as they might be pointing to invalid frames in the new model!!!
ent->frameStartTime = 0;
ent->frameInterval = 0;
ent->pose1 = ent->pose2 = 0;
ent->translateStartTime = 0;
ent->origin1[0] = ent->origin1[1] = ent->origin1[2] = 0;
ent->origin2[0] = ent->origin2[1] = ent->origin2[2] = 0;
ent->rotateStartTime = 0;
ent->angles1[0] = ent->angles1[1] = ent->angles1[2] = 0;
ent->angles2[0] = ent->angles2[1] = ent->angles2[2] = 0;

i do it right after ent->model = model;

but have alook in the threads plenty of fixes :)
User avatar
revelator
 
Posts: 2567
Joined: Thu Jan 24, 2008 12:04 pm
Location: inside tha debugger


Return to Engine Programming

Who is online

Users browsing this forum: No registered users and 1 guest