Announcement
Collapse
No announcement yet.
DirectEngines
Collapse
X
-
Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
-
Originally posted by mhquake View PostCool.
You mind if I put this on my site (with full credit given), just to keep them all together?
Note: I actually included the DirectX 8.1 SDK includes and lib folders. That way you don't have to seek out and install the 120 MB behemoth Microsoft DirectX SDK 8.1 EXEQuakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
Comment
-
The only error DirectR00k gives me is VID_Restart: wglMakeCurrent failed with error 0. It works starting up without a cfg but vid_restart is creating this error after the second boot. Much like alt-tab.
Comment
-
DirectFUH?! woooooo Fuhquake was the catalyst for my reintroduction to quake!
schweeeeeeeeeeet.
libpng.dll not found : (
Comment
-
You need to download the full FuhQuake installer pack from somewhere like Quaddicted first.
That DirectRook I sent is very incomplete, by the way. You should be seeing a DirectFitz over the next few days which shows the proper way to do a vid_restart. QRack is going to require a little bit more work.IT LIVES! http://directq.blogspot.com/
Comment
-
DirectTonik (Zquake) seems to be a failure at least at this point.
Get an all white screen? If you press ESC you can hear the menu.
The nice feature of ZQuake is the actually fully working NetQuake progs compatbility. It is very well written and allows you to play virtually anything NQ in Quakeworld. And ZQuake is a conservative QW engine but underneath isn't (vwep support, for instance).
May make a second run at it sometime, but for now I'm going to put that at the bottom of my long queue of projects. DamnQuakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
Comment
-
Lemme have a look at what I can do.
_________________
Sorted.
I should have given you a heads-up about that bindTexFunc thing. You need to #ifndef the whole CheckTextureExtensions function, then use something like this in GL_Bind:Code:void GL_Bind (int texnum) { extern int char_textures[1]; if (gl_nobind.value) texnum = char_textures[0]; if (currenttexture == texnum) return; currenttexture = texnum; #ifdef _WIN32 #ifdef USEFAKEGL glBindTexture (GL_TEXTURE_2D, texnum); #else bindTexFunc (GL_TEXTURE_2D, texnum); #endif #else glBindTexture (GL_TEXTURE_2D, texnum); #endif }
Last edited by MH; 12-17-2009, 02:05 PM.IT LIVES! http://directq.blogspot.com/
Comment
-
-
Originally posted by mhquake View PostLemme have a look at what I can do.
_________________
Sorted.
I should have given you a heads-up about that bindTexFunc thing. You need to #ifndef the whole CheckTextureExtensions function, then use something like this in GL_Bind:Code:void GL_Bind (int texnum) { extern int char_textures[1]; if (gl_nobind.value) texnum = char_textures[0]; if (currenttexture == texnum) return; currenttexture = texnum; #ifdef _WIN32 #ifdef USEFAKEGL glBindTexture (GL_TEXTURE_2D, texnum); #else bindTexFunc (GL_TEXTURE_2D, texnum); #endif #else glBindTexture (GL_TEXTURE_2D, texnum); #endif }
Anyway, awesome!Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
Comment
-
DirectFitz has just been released. There's also an updated version of the D3D wrapper available: this one will create a stencil buffer if you request it via your pixel format (I haven't done full-on stencil buffer support yet).IT LIVES! http://directq.blogspot.com/
Comment
Comment