WZ crashes on multiple devices

Do you need help? Ask here!

Bug reporting belongs here: http://developer.wz2100.net/newticket
Vincent
Trained
Trained
Posts: 103
Joined: 06 Aug 2016, 17:24

Re: WZ crashes on multiple devices

Post by Vincent »

Actually debug Tools don't help with crash, they often use classic GL introspection functions so that they will provide the same reports as arb debug output. Tools from IHV only give access to the performance counters of their hardware while frame capture is vendor agnostic as far as I know.

On the other hand they're really useful to debug visual glitches as they record framebuffer content after every draw call which allows to detect which call is not correctly working and see all the state parameters (blend, depth text, constants...).
Cyp
Evitcani
Evitcani
Posts: 784
Joined: 17 Jan 2010, 23:35

Re: WZ crashes on multiple devices

Post by Cyp »

Is e114b97c…9c261297 a step in the right direction?
Cyp
Evitcani
Evitcani
Posts: 784
Joined: 17 Jan 2010, 23:35

Re: WZ crashes on multiple devices

Post by Cyp »

#4414 wrote:friend can not play with this game version unless compile by vs2013 then he have no crashes.
the problem is broken compiler.
Vincent wrote:Can confirm it crashes on Intel igpu. Unfortunatly Intel OpenGL drivers doesn't support fixed functions very well (and mixing fixed function and shaders is even worse) ; however they correctly support core context, they're even able to run the latest Doom game which relies on GL 4.3.
Was that using the standard cross-compiled .exe, or a version you compiled with MSVC?
Vincent
Trained
Trained
Posts: 103
Joined: 06 Aug 2016, 17:24

Re: WZ crashes on multiple devices

Post by Vincent »

using the cross compiled exe
Vincent
Trained
Trained
Posts: 103
Joined: 06 Aug 2016, 17:24

Re: WZ crashes on multiple devices

Post by Vincent »

I tested with msvc 2K15 build, it still crashes (in piedraw.cpp:555)
Per
Warzone 2100 Team Member
Warzone 2100 Team Member
Posts: 3780
Joined: 03 Aug 2006, 19:39

Re: WZ crashes on multiple devices

Post by Per »

Seems it crashes in the glDrawElements() call inside pie_Draw3DShape2() function.

Can you try the attached patch, and post the last few debug log calls that are output before it crashes?
Attachments
debug_crash.diff
(1.75 KiB) Downloaded 185 times
Vincent
Trained
Trained
Posts: 103
Joined: 06 Aug 2016, 17:24

Re: WZ crashes on multiple devices

Post by Vincent »

Code: Select all

--- Starting log [C:\Users\vljno\Documents\Warzone 2100 master\logs\WZlog-0901_211845.txt]---
info    |09:18:45: [realmain:1140] Using C:\Users\vljno\Documents\Warzone 2100 master\logs\WZlog-0901_211845.txt debug file
error   |09:18:45: [`anonymous-namespace'::initializeGLC:496] Failed to select font family DejaVu Sans as regular font
warning |09:18:45: [`anonymous-namespace'::initializeGLC:505] Failed to select the "Book" font face of font family DejaVu Sans (**Further warnings of this type are suppressed.)
error   |09:18:45: [`anonymous-namespace'::initializeGLC:514] iV_initializeGLC: Failed to select font family DejaVu Sans for the bold font
warning |09:18:45: [`anonymous-namespace'::initializeGLC:523] Failed to select the "Bold" font face of font family ÀqŒ (**Further warnings of this type are suppressed.)
info    |09:18:50: [seq_Play:510] unable to open 'sequences/cam1/c001.ogg' for playback
warning |09:19:14: [buildFeature:216] Feature not aligned. position (5422,4658), size (1,1) (**Further warnings of this type are suppressed.)
warning |09:19:14: [buildFeature:216] Feature not aligned. position (5068,4689), size (1,1) (**Further warnings of this type are suppressed.)
warning |09:19:14: [buildFeature:216] Feature not aligned. position (5323,4676), size (1,1) (**Further warnings of this type are suppressed.)
warning |09:19:14: [buildFeature:216] Feature not aligned. position (1908,1923), size (1,1) (**Further warnings of this type are suppressed.)
warning |09:19:14: [buildFeature:216] Feature not aligned. position (5474,6205), size (1,1) (**Further warnings of this type are suppressed.)
error   |09:19:17: [pie_Draw3DShape2:248] glDrawElements(GL_TRIANGLES, 20 * 3, GL_UNSIGNED_SHORT, BUFFER_OFFSET(0 * 20 * 3 * sizeof(uint16_t)) from features.json with 16 points and 20 polygons
error   |09:19:17: [khr_callback:140] GL::API(Performance:Medium) : API_ID_RECOMPILE_FRAGMENT_SHADER performance warning has been generated. Fragment shader recompiled due to state change.
The glc errors are probably not related to the crashes btw I get them on another computer which run wz fine.
Vincent
Trained
Trained
Posts: 103
Joined: 06 Aug 2016, 17:24

Re: WZ crashes on multiple devices

Post by Vincent »

I narrowed down what cause the errors, in piedraw.cpp at line 211 :

Code: Select all

		glEnable(GL_ALPHA_TEST);
		glAlphaFunc(GL_GREATER, 0.001f);
Commenting the functions makes wz 2100 work (at least the alpha campaign first mission).
Vincent
Trained
Trained
Posts: 103
Joined: 06 Aug 2016, 17:24

Re: WZ crashes on multiple devices

Post by Vincent »

Wz2100 works with latest commit (with MSVC build, didn't test with cross compiled one)
nooneisback
Greenhorn
Posts: 10
Joined: 02 Jul 2014, 13:36

Re: WZ crashes on multiple devices

Post by nooneisback »

Can someone please explain me why this thing didn't work for me 4 weeks ago (Crashed after saying "Power resource"), then when I come back, everything works perfectly fine. No upgrading or anything.
Cyp
Evitcani
Evitcani
Posts: 784
Joined: 17 Jan 2010, 23:35

Re: WZ crashes on multiple devices

Post by Cyp »

Don't know. Windows autoupdate? The phase of the moon?
nooneisback
Greenhorn
Posts: 10
Joined: 02 Jul 2014, 13:36

Re: WZ crashes on multiple devices

Post by nooneisback »

Didn't update since I came back, it just started randomly working...
William
Trained
Trained
Posts: 165
Joined: 02 Sep 2015, 22:39

Re: WZ crashes on multiple devices

Post by William »

I got that error Too!

Code: Select all

error   |07:27:08: [khr_callback:140] GL::API(Performance:Medium) : API_ID_RECOMPILE_FRAGMENT_SHADER performance warning has been generated. Fragment shader recompiled due to state change.
I believe this is a problem with the cpu? :stressed: :x :augh:
Too bad i aint getting anymore cpu upgrades :stare:
Post Reply