Pages: 1 ... 4 5 [6] 7
  Print  
Author Topic: 0.8.8 Bugs  (Read 168156 times)
Graion Dilach
Member


Cakes 12
Posts: 403



« Reply #125 on: May 22, 2012, 07:11:34 AM »

I can think of corrupted/missing AAS too, tho I never had an OA server.

If we'd know which map triggered it, would be easier to figure out the cause.
Logged

One shall remind what have he left behind... to actually realize that it's still cool.
RMF
Member


Cakes 12
Posts: 694



« Reply #126 on: May 23, 2012, 12:09:47 AM »

I'm not sure if I get it right, but you're saying maps without bot support will crash the server when you try to add bots? Preventable by testing or not, this wouldn't be nice.
Logged
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #127 on: May 23, 2012, 01:01:41 AM »

It seems to me that a missing aas file prevents you from adding bots, but does not crash the game. At least when playing locally... I (we?) should check in dedicated mode. And I (we?) should check if one loads a map with bot support, adds them, then switches to a map that does not support them.

Some other tries may include using a wrong aas file (compiled with a previous version of the map), or a damaged aas file (e.g. with some parts of it deleted with a text editor).
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
grey matter
Member


Cakes 8
Posts: 381

>9k


« Reply #128 on: May 23, 2012, 01:57:42 PM »

Quote
Bots still cause Server Shutdown (Server crashed: netchan queue is not properly initialized in SV_Netchan_TransmitNextFragment) - AAS shutdown on dedicated servers?
Afaik this happened in old ioquake3 builds when e.g. "/kick allbots" was kicking bots "too fast".
Logged

This space is for rent.
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #129 on: May 23, 2012, 02:52:52 PM »

Uhm... maybe that guy simply asked a question, to know if that old bug was fixed?
The sentence ended with a question mark, and it was posted in the section of the page called "other - these are old bugs that may or may not be fixed yet".
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
GrosBedo
Member


Cakes 20
Posts: 710


« Reply #130 on: May 23, 2012, 05:00:20 PM »

From my own experience, this specific bug (with netchan and packets sending) happen when the server tries to send/simulate (for bots) packets to players/bots that are not there anymore.

@RMF: So indeed, a missing bot support would not crash the server, but it will produce warnings.

What could crash the server is a weird and wrong management of players/bots status, or maybe a corrupted AAS file. But mainly I think it's either AAS or a tampered server's binary/mod.
Logged
Coder
Nub


Cakes -14
Posts: 47


Coding(logical)


« Reply #131 on: May 27, 2012, 03:26:34 AM »

One thing i noticed...
I felt having a ffa with bots on wrackdm? (longestyard remake) and i fall off the map but i dont die?
Logged
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #132 on: September 26, 2012, 03:55:17 AM »

@ Coder
Maybe this is a long term bug in wrackdm17, where occasionally the trigger that should kill you fails, but I'm not able to reproduce it exactly (maybe there it some place of the "floor" (in the void) where the trigger is missing?). Someone should take a look to the .map...
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #133 on: September 26, 2012, 05:03:47 AM »

Can we talk a little about the bugs of anaglyph stereo (3D) rendering?
The first one is that the crosshair is missing, and the second one is that the infos in the upper right corner are messed up if you enable both cg_drawfps and cg_drawspeed.

Screenshot here.
They are there since before 0.8.8.

I asked tcpp (author of "cascaded blur" bloom variant) if he could take a look into it, and he ended up with some lines of code that should fix the crosshair. Considering that I am not able to do anything with such lines of code, I copy his reply here:
Quote from: tcpp
Problem solved.

First, the cause of the invisible crosshair is cg_draw.c:CG_DrawCrosshair3D(void). Drawing a visible sprite by calling trap_R_AddRefEntityToScene(ent) requires ent.shaderRGBA to be set, but CG_DrawCrosshair3D doesn't set ent.shaderRGBA.

Therefore, CG_DrawCrosshair3D should say:

static void CG_DrawCrosshair3D(void)
{
   …
   // scale the crosshair so it appears the same size for all distances
   ent.radius = w / 640 * xmax * trace.fraction * maxdist / zProj;
   ent.customShader = hShader;

   // set color based on health
   if ( cg_crosshairHealth.integer ) {
      vec4_t      hcolor;

      CG_ColorForHealth( hcolor );
      ent.shaderRGBA[0]=(byte)(hcolor[0]*255.f);
      ent.shaderRGBA[1]=(byte)(hcolor[1]*255.f);
      ent.shaderRGBA[2]=(byte)(hcolor[2]*255.f);
      ent.shaderRGBA[3]=(byte)(hcolor[3]*255.f);
      
   } else {
      ent.shaderRGBA[0]=255;
      ent.shaderRGBA[1]=255;
      ent.shaderRGBA[2]=255;
      ent.shaderRGBA[3]=255;
      
   }

   trap_R_AddRefEntityToScene(&ent);
}


Second, poor performance in 3D anaglyph mode is caused by an combination of r_bloom and r_greyscale. When r_greyscale>=1, bloom screen textures are created with GL_LUMINANCE internal format, but GL back buffer's internal format remains GL_RGB. As a result, qglCopyTexSubImage2D called by R_Bloom_BackupScreen involves conversion of internal format from GL_RGB to GL_LUMINANCE, which is extremely slow, since it cannot be done in some GPU.

The solution for this problem is forcing tr_image.c:Upload32 to use GL_RGB internal format during the creation of bloom screen textures.

Although performance can be improved by the solution I've mention above, there is still another problem: strange behavior of bloom effect in 3D anaglyph mode, for example, bloom effect is applied only for red channel. There are some work-arounds for this problem, but resolving this problem without any overhead might require somewhat larger modification of ioquake3 code.

So, he also noticed there are some some problems with bloom and anaglyph mode together. I don't know what we should do with that.. maybe trying to fix them or disable bloom when in anaglyph mode? Well, for the problem that r_greyscale is slow with bloom on, I suppose we may simply suggest users do to not enable both things at once (if one has got good hardware, he may want it anyway). UPDATE: I've written in the wiki about enabling both bloom and greyscale brings a drastic framerate drop, advising do to not use both of them at the same time.

For the sake of completion, there have been some changes in anaglyph colors in the last year. I write the next lines in a "quote" just to separe them from the rest, and it's not so important.
Quote
About the anaglyph color combinations:
In the OA wiki
(DO NOT LINK) h t t p s : / / openarena . wikia . com/wiki/Manual/Graphic_options#Stereoscopic_view
we have the the color codes I found in ioquake3 wiki
http://wiki.ioquake3.org/Stereo_Rendering
Quote
* 1: red-cyan
* 2: red-blue
* 3: red-green
* 4: cyan-red
* 5: blue-red
* 6: green-red
But maybe recent ioquake3 changes.. changed it:
at the moment, ioquake3 README in their SVN
http://svn.icculus.org/*checkout*/quake3/trunk/README
says
Quote
r_anaglyphmode - Enable rendering of anaglyph images
                                      red-cyan glasses:    1
                                      red-blue:            2
                                      red-green:           3
                                      green-magenta:       4
                                      To swap the colors for left and right eye
                                      just add 4 to the value for the wanted
                                      color combination. For red-blue and
                                      red-green you probably want to enable
                                      r_greyscale
... this due to a change they did in their README file in november 2011:
http://svn.icculus.org/quake3/trunk/README?r1=2191&r2=2198
I don't know when they did that in the engine. Anyway probably the old version is still the official, considering that the binary download from ioquake3 site tells its from 1.36 branch (that, AFAIK, is some years old... does someone know when ioquake3 1.37 will be officially released?).
OpenArena 0.8.8 binaries do not have the "green-magenta" support, while "new" OA 0.8.x version 30 test binaries do have.

Doing that research, I noticed this other ioquake3 improvement, that is more recent than OA version 30 binaries and so we don't have it yet (however, it is not related with anaglyph mode or 0.8.8 bugs at all, sorry for the OT)
« Last Edit: September 26, 2012, 07:57:48 AM by Gig » Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
grey matter
Member


Cakes 8
Posts: 381

>9k


« Reply #134 on: September 27, 2012, 01:28:08 PM »

Can we talk a little about the bugs of anaglyph stereo (3D) rendering?
The first one is that the crosshair is missing, and the second one is that the infos in the upper right corner are messed up if you enable both cg_drawfps and cg_drawspeed.

I asked tcpp (author of "cascaded blur" bloom variant) if he could take a look into it, and he ended up with some lines of code that should fix the crosshair. Considering that I am not able to do anything with such lines of code, I copy his reply here:
Quote from: tcpp
Problem solved.

First, the cause of the invisible crosshair is cg_draw.c:CG_DrawCrosshair3D(void). Drawing a visible sprite by calling trap_R_AddRefEntityToScene(ent) requires ent.shaderRGBA to be set, but CG_DrawCrosshair3D doesn't set ent.shaderRGBA.

This sounds like a bug. Please also report this upstream.
Logged

This space is for rent.
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #135 on: September 27, 2012, 02:37:37 PM »

This sounds like a bug. Please also report this upstream.

But in ioquake3, in anaglyph mode, a crosshair is drawn. I checked with ioquake3 1.36, and it is shown there.
I don't know what is exactly the problem they mention here (and to which ioquake3 versions it refers), but anyway it seems it's not the same problem we have in OpenArena anaglyph mode (may be somehow related).
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #136 on: November 09, 2012, 12:52:51 PM »

I don't remember if this has been said before...
Anyway, I was checking a thing in 0.8.8 unified package, and noticed that there are some "readme-like" files (README, CREDITS, COPYING, CHANGES) without extension. This is not a problem for Linux users, probably, but is not friendly for Windows users. I think future releases should add .txt extension to all these files (like readme_085.txt and readme_088.txt already are).
More, che "CHANGES" file there arrives up to 0.8.1... I suppose it should contain the main changes also of later patches.
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
jackoverfull
Member


Cakes 14
Posts: 384


Member


WWW
« Reply #137 on: November 09, 2012, 06:45:03 PM »

I'm afraid that's some sort of stardan for open source unix projects.

yes, the CHANGES file should definitively be up-to-date.
Logged
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #138 on: January 31, 2013, 05:07:39 AM »

About 0.8.8 bugs...
- If cg_leiEnhancements is set to 1, then your cg_oldplasma value is ignored (you always see like with cg_oldplasma 1).
- Are we sure cg_leiSuperGoreyAwesome works as expected? It seems to me it's not the blood bath one would expect.

These seem to have been pointed out before...
http://openarena.ws/board/index.php?topic=3386.msg28429#msg28429
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
fromhell
Administrator
GET A LIFE!
**********

Cakes 35
Posts: 14520



WWW
« Reply #139 on: January 31, 2013, 07:21:43 PM »

supergoreyawesome jsut adds a few more splats and I think IIRC splat noises. I used to have excessive blood with it but it hit the temporary entity limits too much. To have a true supergoreyawesome would mean a particle system based in the renderer (which has been done before in Quake3MME which had its source released under my pressure Wink )
« Last Edit: January 31, 2013, 07:30:53 PM by fromhell » Logged

asking when OA3 will be done won't get OA3 done.
Progress of OA3 currently occurs behind closed doors alone

I do not provide technical support either.

new code development on github
capodecima
Nub


Cakes 0
Posts: 23



« Reply #140 on: March 27, 2013, 06:55:22 AM »


I have this errors on every map, its always sounds errros or music errors, i would ignore it but it always drop fps which is not nice. I heard this is some bug which will repair in next version. Or can i solve this now ? Download some missing files somewhere?
Logged
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #141 on: March 27, 2013, 07:31:49 AM »

I have this errors on every map, its always sounds errros or music errors, i would ignore it but it always drop fps which is not nice. I heard this is some bug which will repair in next version. Or can i solve this now ? Download some missing files somewhere?
About the "music error that drops fps", do you mean that yellow warning that says the music "format is not 22khz stereo" (not seen in your screenshot)?
That message is shown on-screen everytime the music sound track ends and starts again, and I can guess it's displayed because OA music has got an higher sound quality than the one designed for the original Q3 soundtrack.

I hope that message could be fixed by changing it to "format is not 22khz or 44khz stereo" (accordingly adjusting the check that triggers it).
Or, if that fix is not possible, a (worse) fix could be to show it only in "verbose" console output (with "developer 1").
I don't know if such changes would also fix the fps drop when music re-starts or not.

Those error messages that are in your screenshot, instead, only appear in console just after map loading, right?
« Last Edit: March 27, 2013, 07:47:01 AM by Gig » Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
capodecima
Nub


Cakes 0
Posts: 23



« Reply #142 on: March 27, 2013, 09:25:45 AM »

i got this errors during game also yes i got error with 22khz, so is possible it fix ?
Logged
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #143 on: April 08, 2013, 05:28:46 AM »

@Capodecima:
Not sure, but I fear just sliding music volume to the minimum may not prevent the game from "playing" the music. Did you already try?

Maybe you could fool the game by creating a .pk3 containing an empty file with the same path and name of the music file that runs. You may call the pk3 something like "z_nomusic.pk3". I suppose that may stop the music from playing, when playing locally. But that would not work when playing on internet, on any "pure" server. UPDATE: easier workaround found in the next posts.
« Last Edit: April 08, 2013, 06:42:34 AM by Gig » Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
Neon_Knight
In the year 3000
***

Cakes 49
Posts: 3775


Trickster God.


« Reply #144 on: April 08, 2013, 06:14:18 AM »

There is a console command for disabling music, isn't it?
Logged


"Detailed" is nice, but if it gets in the way of clarity, it ceases being a nice addition and becomes a problem. - TVT
Want to contribute? Read this.
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #145 on: April 08, 2013, 06:40:49 AM »

The music volume "slider" in the GUI controls s_musicvolume variable (1.0=max volume, 0=no music, default=0.25). I don't know if setting it to 0 prevents the game from internally executing the file or not. It would be interesting to know. (UPDATE: considering capodecima's post below this one, it does. Good. Smiley)

However, I just found another workaround for capodecima's music problem: it exists the "music" (client-side) command to play a music of your choice, instead of the one pre-set by the map. If you use it with a non-existing file name (e.g. "/music qqq"), you get a file not found (or unknown extension) message, and the music stops.
I suppose this should solve his problem (music format warning with fps drop each time music re-starts), at least until the match ends.  Smiley Of course, renouncing to music.
« Last Edit: April 15, 2013, 04:36:09 AM by Gig » Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
capodecima
Nub


Cakes 0
Posts: 23



« Reply #146 on: April 13, 2013, 05:10:43 PM »

 s_musicvolume 0 solved my problems , i always thought i have turned off music but i had set it to 0.175.
Logged
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #147 on: June 06, 2013, 12:49:10 AM »

Sot sure if this is a bug or not. I thought that DO NOT LINK[/b]) h t t p s : / / openarena . wikia . com/wiki/Videoflags]videoflags "extended lock" also limited players maximum r_gamma value, but it seems that I was wrong. It seems the allowed range of r_gamma is from 0.5 to 3.0, the same if videoflags is enabled or not. Is this intentional? Or should that be limited to a max of 2.0 (the maximum you can set from the sliding control in the GUI) when videoflags "extended lock" is enabled?
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
Gig
In the year 3000
***

Cakes 45
Posts: 4394


WWW
« Reply #148 on: September 26, 2013, 03:30:20 AM »

Another (small) bug:
A problem with a shader: "evil8_fx/e8jumpspawn02red"... that shader is located in pak6-patch088.pk3/scripts/evil8_base.shader
It should be animated, but it's not.
It looks like its "animmap" stage loads various image files, but all those images look the same!

It seems more shaders under evil8_fx folder may have the same problem.... they should be checked (and fixed, if necessary), as well.

For more infos: http://openarena.ws/board/index.php?topic=4679.msg48587#msg48587
Logged

I never want to be aggressive, offensive or ironic with my posts. If you find something offending in my posts, read them again searching for a different mood there. If you still see something bad with them, please ask me infos. I can be wrong at times, but I never want to upset anyone.
Akom74
Member


Cakes 9
Posts: 906


Q3A/OA Mapper


WWW
« Reply #149 on: September 26, 2013, 03:44:20 PM »

Another (small) bug:
A problem with a shader: "evil8_fx/e8jumpspawn02red"... that shader is located in pak6-patch088.pk3/scripts/evil8_base.shader
It should be animated, but it's not.
It looks like its "animmap" stage loads various image files, but all those images look the same!

It seems more shaders under evil8_fx folder may have the same problem.... they should be checked (and fixed, if necessary), as well.

For more infos: http://openarena.ws/board/index.php?topic=4679.msg48587#msg48587

Evillair sometime have shader corrupted or not working, don't know why.

However i have worked on that shader and fight a lot before find the key to win the match  Grin

This is the code from Moixie (Evillair's original i think)
Quote
textures/evil8_fx/e8jumpspawn02red
{
   q3map_lightimage textures/evil8_fx/e8jumpspawn02red_glow.tga
   surfaceparm metalsteps
   q3map_surfacelight 100
   
   {
      map textures/evil8_fx/e8jumpspawn02red
      animmap 10 textures/evil8_fx/e8jumpspawn02red textures/evil8_fx/e8jumpspawn02red-1 textures/evil8_fx/e8jumpspawn02red-2 textures/evil8_fx/e8jumpspawn02red-3 textures/evil8_fx/e8jumpspawn02red-4 textures/evil8_fx/e8jumpspawn02red-5 textures/evil8_fx/e8jumpspawn02red-6
   }
   {
      map $lightmap
      tcGen lightmap
      blendfunc filter
   }

}

This is the code you have to try to make it working:
Quote
textures/evil8_fx/e8jumpspawn02red
{
   q3map_lightimage textures/evil8_fx/e8jumpspawn02red_glow.tga
   surfaceparm metalsteps
   q3map_surfacelight 100
   
{
      map textures/evil8_fx/e8jumpspawn02red
   blendfunc add
animmap 10 textures/evil8_fx/e8jumpspawn02b-1_glow textures/evil8_fx/e8jumpspawn02b-2_glow textures/evil8_fx/e8jumpspawn02b-3_glow textures/evil8_fx/e8jumpspawn02b-4_glow textures/evil8_fx/e8jumpspawn02b-5_glow textures/evil8_fx/e8jumpspawn02b-6_glow
}
   {
      map $lightmap
      tcGen lightmap
      blendfunc filter
   }

}

Tell me if it work now. I've tried it on my personal folder but the code i've inserted above must be correct. Make some try in case.

I've inserted the "blendfunc add" that was missing and added the "_glow" to the animation.

Wink
« Last Edit: September 30, 2013, 12:52:23 PM by Akom74 » Logged

...sorry for my English, i'm Italian... Tongue



Pages: 1 ... 4 5 [6] 7
  Print  
 
Jump to: