Bug 3420 - VM_Call with NULL vm in missionpack single player
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: GIT MASTER
Hardware: PC Linux
: P3 normal
Assignee: Tim Angus
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2007-11-11 18:45 EST by Robert Isaac
Modified: 2007-11-22 19:50:26 EST
0 users

See Also:


Attachments
proposed fix for ui/ui_main.c to prevent this (850 bytes, patch)
2007-11-17 04:58 EST, Robert Isaac

Description Robert Isaac 2007-11-11 18:45:10 EST
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
Comment 1 Tim Angus 2007-11-11 18:57:35 EST
x86_64?
Comment 2 Robert Isaac 2007-11-11 20:32:59 EST
(In reply to comment #1)
> x86_64?
> 

x86 + x86_64
Comment 3 Tim Angus 2007-11-12 15:46:27 EST
I can't reproduce this here. Could you provide more specific reproduction steps? If possible, stick to baseq3.
Comment 4 Robert Isaac 2007-11-12 17:23:37 EST
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.

Comment 5 Robert Isaac 2007-11-16 00:41:03 EST
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


 

Comment 6 Robert Isaac 2007-11-17 04:58:42 EST
Created attachment 1585 [details]
proposed fix for ui/ui_main.c to prevent this
Comment 7 Ludwig Nussel 2007-11-17 13:25:28 EST
those sv_killserver where introduced in r1135 due to
bug 3054
Comment 8 Robert Isaac 2007-11-18 05:16:22 EST
(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.
Comment 9 Tim Angus 2007-11-18 07:24:52 EST
Don't worry... I'll look into it at some point.
Comment 10 Ludwig Nussel 2007-11-18 07:41:25 EST
Ok, reassigning to tim
Comment 11 Tim Angus 2007-11-22 19:50:26 EST
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.