@ptoing
#1216 posted by szo on 2014/09/15 20:07:12
As far as 'game' goes. If you start a new mod without any of those 3 variables does it default to no vanilla quake?
'game xxx' loads the xxx mod on top of bare id1.
Builds Ok And Runs, But
#1217 posted by bogworth on 2014/09/15 21:45:15
gl_texturemode only seems to take effect on the viewmodel. What's up with that?
@bogworth
#1218 posted by szo on 2014/09/15 22:04:10
gl_texturemode only seems to take effect on the viewmodel.
Can't reproduce here: the rubicon rumble pack mod (http://celephais.net/board/view_thread.php?id=61077) has gl_texturemode as GL_NEAREST_MIPMAP_LINEAR by default, changing it to GL_LINEAR_MIPMAP_LINEAR "beautifies" things for me, and going back to its original restores the mod's original setting.
Eric?
Never Seen That Before
#1219 posted by ericw on 2014/09/15 22:36:07
Which OS / GPU / gfx driver are you running?
Found It
#1220 posted by bogworth on 2014/09/15 22:42:43
It's anisotropy. The combination of GL_TEXTURE_MAX_ANISOTROPY_EXT with values greater than 1 and GL_NEAREST appears to have vendor-specific behaviour - in my case, GL_NEAREST is ignored.
Hapless users are unlikely to understand this, so perhaps you should consider some workaround.
Uh, More Detail
#1221 posted by bogworth on 2014/09/15 22:50:02
The problem appears for textures that are mipmapped (eg, not models), when gl_texture_anisotropy is greater than 1 and gl_texturemode is 1, 2 or 3.
I'm on Debian with an Intel 82G965 running the usual Intel driver. (A fallback - the fan on my real card stopped spinning, sigh.)
Ah Thanks For The Info
#1222 posted by ericw on 2014/09/15 23:14:40
Makes sense I guess that anisotropy + no filtering is undefined, We can detect that case and print a warning at least
Gamma
#1223 posted by AAS on 2014/09/18 12:29:46
gamma adjustment doesnt work (nothing happens at all when you change its value) in r1034 (x32 binary) on win 8.1 x65 nvidia gtx 560 @ 340.52 driver.
VBO Version
#1224 posted by mh on 2014/09/19 01:33:12
It's reasonably normal with lower polycounts to get the same, or even a slightly lower, framerate. What's important to realise is that VBOs (and batching) are an optimization for high polycounts. In general you want any optimization to have benefit in that area. Don't sweat the id1 maps; if you see an increase in the big maps then it's doing it's job.
I suggest a move to regular vertex arrays in system memory for MDLs. That will work with any GL 1.1 or better driver (so you don't even need to special-case it) and being able to take each MDL in a single draw call will be of significant benefit. Where you need to multipass you'll also get benefit as you'll only need to do the vertex setup once.
With MDLs and frame interpolation you can't really use VBOs unless you also have vertex shaders (or GL_ARB_vertex_blend which virtually no driver supports) but old-style vertex arrays will work nice.
Be careful that the current colour is undefined after using glColorPointer so you need an explicit glColor3f/4f call for the next immediate mode stuff you're drawing.
Stack Overflow
#1225 posted by dB_Audio on 2014/09/20 02:18:21
in telefragged, shortly after collecting the gold key, i experience a 'stack overflow.' what do i do?!?!
P4 3.4 GHz, 3 GB RAM, Nvidia GT240, vista, quake injector using the required quakespasm engine (quakespasm svn r980), console screenshot, if it works:
https://drive.google.com/file/d/0BwH0NjAbvI9vTzFDSmZzN0FkMUU/edit?usp=sharing
Nothing
#1226 posted by ijed on 2014/09/20 03:20:14
Excessive happens at that time, so it is probably just memory overflow. How much ram have you got?
#1227 posted by Spike on 2014/09/20 04:01:24
that has nothing to do with ram, that's a QC stack overflow.
looks some trigger (trigger once/multiple/secret) triggering itself without any delay (presumably via other similar triggers).
essentually an infinite loop.
New Builds (0.90.0-r1036)
#1228 posted by szo on 2014/09/20 11:27:15
Wrong Thread.
#1229 posted by dB_Audio on 2014/09/20 14:33:33
3GB RAM
command line parameters: -width 1280 -height 720 -bpp 32 -winmem 1024 -heapsize 655360
i'll try the 0.90-r1036 build of the engine.
thanks for the help and info. i meant to post this on the Rubicon Rumble Pack thread. should i repost this over there?
Noclipped
#1230 posted by dB_Audio on 2014/09/20 15:17:37
i used noclip to go over the floor to the gold door without triggering the stairs to continue.
Linux/Unix Homedir Support Should Be Documented Properly
#1231 posted by Pekka on 2014/09/20 15:17:40
The Quakespasm.txt compilation instructions say you can enable home directory support on Linux with the homedir_0.patch. However, a recent change turned this into a Makefile option. The current way to enable the feature can be found here.
http://sourceforge.net/p/quakespasm/code/1013/
You should update Quakespasm.txt section 4.1 to include this information. It is in the Changes section already, but some people might read 4.1 first and wonder where the patch file has gone.
@Pekka
#1232 posted by szo on 2014/09/20 16:00:38
That's Weird
#1233 posted by ijed on 2014/09/20 16:14:59
I must have done something bad in the qc, but never saw the issue myself or from testers. I did see a similar one, but it was just a broken relay as spike says.
It's All Good
#1234 posted by dB_Audio on 2014/09/20 18:44:40
i'm just a grateful fan of the masters who keep quake alive. thank you.
Is This A Known Issue?
#1235 posted by Pekka on 2014/09/28 11:24:26
I noticed a cosmetic visual glitch while playing the Rubicon Rumble Pack's map by Hrimfaxi. In a certain location a lift is not visible from outside a room.
If you are careful, you can catch it a couple of seconds after the timestamp into the VOD by Daz. The lift support pillar is invisible for a small while when he first runs up the steps toward the lift room.
http://www.twitch.tv/tddaz/c/5131707?t=51m10s
I have a save game at this location and a short demo that showcases the glitch. Before packing them up and submitting a bug report, I thought to ask whether this is already a known issue. Should I upload more details for people to look over carefully?
It could be a vis problem instead of an engine issue. It doesn't have any effect on gameplay. The room just looks strange if you happen to backtrack and notice it.
Just Downloaded The Latest Build
#1236 posted by dooomer on 2014/09/28 14:56:19
and was very disappointed to find that it no longer works with my way of launching a mod.
I place my mod files in C:\Quake\Addon\RPP (using Rubicon Rumble Pack as an example), and launch it via a commandline like:
Quakespasm.exe -game addon/rpp
It has worked well for me, as this keeps C:\quake folder tidy without too many mod folders to clutter it.
But it seems that since a few versions back, Quakespasm has introduced some mechanism to prevent using a path as an command line parameter.
Can any one revert its behavior back? Thanks.
Also, is it possible to introduce the capability of using multiple "-game" parameters? In that way, I may even place such folders as quoth into C:\quake\addon, reducing the clutter further.
Re: Is This A Known Issue?
#1237 posted by Barnak on 2014/09/28 15:01:46
I confirm the visual glitch. I noticed before that sometimes, a part could be invisible, then be rendered when the player is close enough.
I firstly noticed this rendering problem on a Cecerello map (jam2).
Pekka
#1238 posted by ericw on 2014/09/28 21:03:19
Thanks for the report.. I can reproduce it. It's the MAX_ENT_LEAFS limit. I just put in a fix to quakespasm as discussed in this i3d thread: http://forums.inside3d.com/viewtopic.php?f=1&t=5554
#1239 posted by Baker on 2014/09/29 12:54:07
Does the Mac version have multisample? If so, how do I enable it?
#1240 posted by szo on 2014/09/29 12:56:43
Does the Mac version have multisample? If so, how do I enable it?
-fsaa x (x == 0, 2, 4, 8)
|