After beating any map in any gametype clicking "next" drops the game to desktop.
The tail end of the console output after a harvester match in mpq3ctf4:
Failed to load dll, looking for qvm.
Loading vm file vm/qagame.qvm...
...which has vmMagic VM_MAGIC_VER2
Loading 1120 jump table targets
total 0, hsize 1021, zero 1021, min 0, max 0
total 17116, hsize 1021, zero 0, min 3, max 40
VM file qagame compiled to 5536555 bytes of code (0x2aaab1f1a000 - 0x2aaab2461b2b)
compilation took 2.836943 seconds
qagame loaded in 2795232 bytes on the hunk
------- Game Initialization -------
gamename: baseq3
gamedate: Nov 6 2007
Gametype changed, clearing session data.
0 teams with 0 entities
11 items registered
-----------------------------------
------- BotLib Initialization -------
loaded weapons.c
loaded items.c
loaded syn.c
loaded rnd.c
loaded match.c
loaded rchat.c
------------ Map Loading ------------
trying to load maps/mptourney1.aas
loaded maps/mptourney1.aas
found 30 level items
-------------------------------------
56 bots parsed
126 arenas parsed
AAS initialized.
-----------------------------------
----- Server Shutdown (Server was killed) -----
==== ShutdownGame ====
AAS shutdown.
---------------------------
Unknown command "addbot^7"
----- CL_Shutdown -----
RE_Shutdown( 1 )
-----------------------
Sys_Error: VM_Call with NULL vm
Yeah, sorry for the noise. I had forgotten that I had applied the bloom patch from OpenArena. The problem doesn't happen without that less than spectacular implementation of bloom.
Strangely, it doesn't seem to affect baseq3.
Because someone else has noticed this against a clean svn build:
compress the missionpack vm directory as pak4.pk3
drop it in the missionpack folder
play through a single player game
press next at the endofgame directory
(In reply to comment #7)
> those sv_killserver where introduced in r1135 due to
> bug 3054
>
That effectively kills single player mode in Team Arena.
Games that are affected by 3054 can always add exec "killserver" to their menu system so that the listening server is killed on disconnect, we can't do that with Team Arena.
OK, this is actually quite a complex bug. The /real/ bug here, I think, is that the team arena UI kills the server after a game has finished (with or without the r1135 changes). This causes the client to get the state CA_DISCONNECTED.
Just before the new server is started up, the client sees this change of state and tries to force the UI module back to the main menu while the commands to get to the new map are still in the buffer. This happens via _UI_SetActiveMenu( UIMENU_MAIN );. Now this (correctly) sets sv_killserver which is intended to stop the running server when returning to the main menu. The "map" command kicks in, and the server starts, then stops immediately since sv_killserver is set, and it crashes.
Now, you could blame the fact that _UI_SetActiveMenu( UIMENU_MAIN ) is being called, but it SHOULD be for the client's state, so I think the real bug is that the initial server is killed prematurely. I tried to fix it by not killing the server, but this causes a lot of knock on problems with the Team Areana server start up code. Team Arena was developed under time pressure to get it out before Christmas so you can't criticise too much, but as a general statement the single player code is quite a mess.
So... what I've done instead could be considered a little bit hacky, but it also makes sense. r1216 ignores sv_killserver if there is no server running when its state was changed. This neutralises the server kill in the UIMENU_MAIN case thus preventing the crash. If someone has the time and inclination it could be fixed properly, but I'm not sure it's really worth the effort to be honest.
Created attachment 1585 [details] proposed fix for ui/ui_main.c to prevent this