Author Topic: Annoying problem  (Read 3499 times)

0 Members and 1 Guest are viewing this topic.

Offline CP5670

  • Dr. Evil
  • Global Moderator
  • 212
I've run out of ideas here. Can any of you think of a reason why this:

Code: [Select]
   ( explosion-effect
      ( + ( get-object-x "Serket" ) 10 )
      ( + ( get-object-y "Serket" ) 110 )
      ( + ( get-object-z "Serket" ) 40 )
      5
      1000
      60
      25
      90
      0
      1
      7
   )

works fine, but this:

Code: [Select]
   ( explosion-effect
      ( + ( get-object-x "Serket" ) 50 )
      ( + ( get-object-y "Serket" ) 60 )
      ( + ( get-object-z "Serket" ) 20 )
      5
      1000
      60
      25
      90
      0
      1
      7
   )

causes the game to crash with the generic windows error? (put them into a basic test mission if you don't believe me)

I have spent over a hour trying to isolate the problem and it's starting to drive me insane. As you can see, the sexps are identical except for the coordinates. :confused: I have a mission that used to work fine in builds from a few months ago, but now keeps crashing on the second one of these.
« Last Edit: July 19, 2006, 04:17:11 am by CP5670 »

 

Offline Colonol Dekker

  • HLP is my mistress
  • 213
  • Aken Tigh Dekker- you've probably heard me
    • My old squad sub-domain
That boggles the mind, They are the exact same code, bar the co-ords as you say.  :confused: Have you tried asking in the SCP forum as well?
Campaigns I've added my distinctiveness to-
- Blue Planet: Battle Captains
-Battle of Neptune
-Between the Ashes 2
-Blue planet: Age of Aquarius
-FOTG?
-Inferno R1
-Ribos: The aftermath / -Retreat from Deneb
-Sol: A History
-TBP EACW teaser
-Earth Brakiri war
-TBP Fortune Hunters (I think?)
-TBP Relic
-Trancsend (Possibly?)
-Uncharted Territory
-Vassagos Dirge
-War Machine
(Others lost to the mists of time and no discernible audit trail)

Your friendly Orestes tactical controller.

Secret bomb God.
That one time I got permabanned and got to read who was being bitxhy about me :p....
GO GO DEKKER RANGERSSSS!!!!!!!!!!!!!!!!!
President of the Scooby Doo Model Appreciation Society
The only good Zod is a dead Zod
NEWGROUNDS COMEDY GOLD, UPDATED DAILY
http://badges.steamprofile.com/profile/default/steam/76561198011784807.png

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
I'll take a look at it now. For future reference though posting a basic test mission gets results faster. I had 5-10 minutes free earlier to look at the problem but didn't cause of the time it would take to make the mission (even though typing this probably took longer :) )
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline Goober5000

  • HLP Loremaster
  • 214
    • Goober5000 Productions
Also, it might depend on the Serket's coordinates when the sexp is called.

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
Yep. It does. The main suspect really has to be a divide by zero. It would cause exactly the error CP describes but would be virtually impossible to create unless you placed the ship exactly where he did.

Since it was so simple to do I made the mission and it worked flawlessly both times. 

CP can you post your basic test mission and also the first few lines from the last error in the errorlog.txt. If it is a divide by zero it will tell us so there.

EDIT : Interesting. On a hunch I moved the Serket to -50, -60, -20 so that the explosion would happen at 0,0,0 and got this.

Warning: Null vec3d in vec3d normalize.
Trace out of vecmat.cpp and find offending code.

File:D:\C++\Freespace\fs2_open 3.6.9\code\Math\VecMat.cpp
Line: 797
[This filename points to the location of a file on the computer that built this executable]

Call stack:
------------------------------------------------------------------
    sexp_explosion_effect()    eval_sexp()    eval_when()    eval_sexp()    mission_process_event()    mission_eval_goals()    game_simulation_frame()    game_frame()    game_do_frame()    game_do_state()    gameseq_process_events()    game_main()    WinMain()    WinMainCRTStartup()    kernel32.dll 7c816d4f()
------------------------------------------------------------------

I'll look into this one a bit further.

EDIT 2 : Goober fancies a look too so here's the mission.




[attachment deleted by admin]
« Last Edit: July 19, 2006, 10:18:14 am by karajorma »
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline CP5670

  • Dr. Evil
  • Global Moderator
  • 212
Well, this is quite confusing. On closer examination, it turns out that it's only happening on one of my computers. The build is the same in both cases (3.6.9 RC5), so I can only guess that it may have something to do with the command lines I'm using. I'll see if I can narrow this down more.

Quote
Yep. It does. The main suspect really has to be a divide by zero. It would cause exactly the error CP describes but would be virtually impossible to create unless you placed the ship exactly where he did.

Since it was so simple to do I made the mission and it worked flawlessly both times.

CP can you post your basic test mission and also the first few lines from the last error in the errorlog.txt. If it is a divide by zero it will tell us so there.

That was my thinking too, but I made a simple test mission with a different ship position (and ship class, for that matter) but still got the crashes. I'll post the errorlog in a few minutes.

[edit] It looks like you're getting some error now too. Is that with a release or debug build?

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
I only got it with the debug build but it's possible that the same error was being caused in your release versions but having a slightly different effect.

I only got the error when the explosion occured at exactly the same point as a ship. Is that the situation you have set up in that mission?
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline CP5670

  • Dr. Evil
  • Global Moderator
  • 212
I think the explosion may be intersecting the ship's model in the original mission (it's a Sobek), but I used a Zeus in the test mission, where there shouldn't be any problem with this. I have attached the mission if it helps any, but I can only get it to crash on one machine as I said.

Here is the latest errorlog entry:

Code: [Select]
fs2_open_r caused an Access Violation in module fs2_open_r.exe at 001b:005524a3.
Exception handler called in FreeSpace 2 Main Thread.
Error occurred at 7/19/2006 10:57:28.
C:\Games\FS2\fs2_open_r.exe, run by CP.
2 processor(s), type 586.
2047 MBytes physical memory.
Read from location 0000000c caused an access violation.

Registers:
EAX=00000000 CS=001b EIP=005524a3 EFLGS=00010246
EBX=447a0000 SS=0023 ESP=0012ad2c EBP=0012b6f4
ECX=0141eaa0 DS=0023 ESI=0110543c FS=003b
EDX=0141eaa0 ES=0023 EDI=01105460 GS=0000
Bytes at CS:EIP:
0f be 48 0c 83 f9 0a 75 1a 8b 55 0c 8b 42 1c 69
Stack dump:
0012ad2c: 00000000 00000028 00000000 096163fc 03ab4978 00000004 00000000 00000000
0012ad4c: 00000000 00636c19 409f9151 41cd7830 ffffffff 00000000 03ab3220 43f8992f
0012ad6c: 41c99314 44020bb2 0141e908 0141eaa0 00000000 ffffffff 00636c19 0960efec
0012ad8c: 03ab3220 03ab4978 00000000 00000000 0960ef74 03ab3220 03ab4978 00000003
0012adac: 00000170 00000058 00000168 00636cc6 03ab3220 03ab4978 00000000 00000000
0012adcc: 03ab3220 00000000 0960eec4 03ab4978 00000003 00000158 00000058 00000150
0012adec: 00636c19 0960eec4 03ab3220 03ab4978 00000000 00000000 0960ee4c 03ab3220
0012ae0c: 03ab4978 000001b8 00000240 00000058 00000238 00636cc6 03ab3220 03ab4978
0012ae2c: 00000000 00000000 00000000 0960edf4 03ab3220 03ab4978 000000d0 00000328
0012ae4c: 00000058 00000320 00636cc6 03ab3220 03ab4978 00000000 00000000 03ab3220
0012ae6c: 00000000 0960eb84 03ab4978 00000004 000005ec 00000058 000005e4 00636c19
0012ae8c: 0960eb84 03ab3220 03ab4978 00000000 03ab3220 00000000 0960eaa8 03ab4978
0012aeac: 00000004 000002a5 0137a181 007510e0 0000295d 01379bd0 0000028b 03ab4978
0012aecc: 000002a5 0137a181 0000028b 0000011b 007510e0 01379bd0 0045a985 0045a9a2
0012aeec: 0000011b 007510e0 0000011b 01379bd0 0000028b 00000005 00009418 00000011
0012af0c: 0000000b 0000028b 0000011b 00000007 000011b0 000002ac 00636cc6 03ab3220
0012af2c: 03ab4978 00000000 00000000 00000000 0960e980 03ab3220 03ab4978 00000314
0012af4c: 00002484 00000058 0000247c 00636cc6 03ab3220 03ab4978 00000000 00000000
0012af6c: 00000000 0960e928 03ab3220 03ab4978 000024e4 00003a6c 00000058 00003a64
0012af8c: 00636cc6 03ab3220 03ab4978 00000000 00000000 00000000 0960e8d0 03ab3220
0012afac: 03ab4978 00003acc 000065f8 00000058 000065f0 00636cc6 00000020 00000001
0012afcc: 00000034 00000000 dfffffff 00000040 006a0c2b 02917bc0 00000000 0069aa9b
0012afec: 00000009 007a1e90 00000009 00000001 03ab3220 0069aa5b 00000034 00000000
0012b00c: 03ab3220 00000000 00000000 004e058b 037f0050 00773068 00000004 00000001
0012b02c: 03ab33dc 00000000 03ab3220 004e0375 03ab3220 03ab3220 00000000 0470d578
0012b04c: 007d64e8 007d64e8 0012b1e0 007d64e8 4120b33e 41d21dbd 00000008 00002a0c
0012b06c: 0000000d 00000007 00002a0c 72626564 33307369 7365642d 796f7274 72006465
0012b08c: 6465796f 00000000 00000000 00000000 00000000 000002a6 0000000b 00000002
0012b0ac: 0000028b 00000000 00000000 00000000 0000028b 0045a87a ffffffff 00000003
0012b0cc: 00000001 0012b2d0 00000000 00000000 00000289 00000000 00000002 00000003
0012b0ec: 00009450 00000002 00000002 00000289 00000079 ffffffff 00000790 00000001
0012b10c: 0000000c 0141eaa0 0012b14c 00499d20 0141e908 007d64e8 00000000 00000000
0012b12c: 007d64e8 00000140 007d64e8 fffffffd 00000150 006a0c2b 007d64e8 0141e908
0012b14c: 007d64e8 0012b174 004a9872 0141eaa0 00000003 00000000 004a990b 00000003
0012b16c: 0141f344 0012b1e0 0062fc70 0012b1e0 007d64e8 007d64e8 007d64e8 004a0335
0012b18c: 0141eaa0 007d64e8 007d64e8 037f1ca0 00000000 00000000 00000000 00000000
0012b1ac: 00000000 00000001 00000000 007d64ef 007d64ef 00000001 00000000 027f0e7f
0012b1cc: 0012b1e4 005532d5 00000001 ffffffff 017266c0 0141e908 00000000 00000000
0012b1ec: 00000000 00000034 00000034 ffbfffff 00000040 0000003f 00000000 037f1070
0012b20c: 00000034 00000000 037a313c 006a0c2b 02917bc0 0012b26c 0069aa1b 00000009
0012b22c: 037a1e90 00000005 00000fa0 00416fd8 037f1070 00000002 02354a98 037f1070
0012b24c: 02354acc 00000004 ffffffcc 006046ea 023549c8 00000005 00000003 006045e2
0012b26c: 0012b2a4 006048d6 00000001 02354878 00000000 00000000 00412df8 00000001
0012b28c: 01105220 006073d2 0141caf0 01105220 0141caf0 00000000 00000002 0060678f
0012b2ac: 01105220 000001f4 00412211 ffffffff 00000000 00000000 007d1208 ffffffff
0012b2cc: 00000000 000002a5 0012b31f 7fffffe7 0012b308 00000042 00000000 00000000
0012b2ec: 00000000 00000000 0012e3fc 00508524 0012b308 0077bc10 0012d310 66757453
0012b30c: 20646566 69727473 3d20676e 44445b20 000a5d53 00000000 00000000 00000000
0012b32c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b34c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b36c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b38c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b3ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b3cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b3ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b40c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b42c: 00000000 0012b464 03b00000 7c910732 00000003 03b00718 03b00000 03b02388
0012b44c: 0012b43c 00000000 0012b680 7c90ee18 7c910738 047ad000 047ad000 06a6df40
0012b46c: 7c9106eb 06a6df40 00000000 7c9105d4 00000000 00000000 00000000 00000000
0012b48c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b4ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b4cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b4ec: 00000000 00000000 00000001 00000003 00000003 0000037f 0000027f 691686a4
0012b50c: 4b7fffff 047abbb8 00ffffff 691f6fc9 ffffffff 691f7277 06a2e30c 00000000
0012b52c: 047ad000 04144cd0 0003e097 691f6fc9 00ffffff 04144cd0 00a2e384 00000600
0012b54c: 00000600 ffffffe0 00003000 00000800 00000000 00000000 69162665 00000000
0012b56c: 047ad000 00000000 00000000 69162bb5 00000000 00000008 047ad000 047e5f14
0012b58c: 04041a16 047abbb8 00000000 047ad000 00000000 00000000 047ad000 00000000
0012b5ac: 00000000 00000001 691c0e12 047ad000 047ad000 0012b670 00000000 00000000
0012b5cc: 00000000 047ad000 047ad000 0012b68c 00000001 00000000 00000000 00000000
0012b5ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b60c: 00000000 00000018 00000000 00000000 00000000 00000000 00000000 00000000
0012b62c: 691f7908 00000001 00000000 00000000 047ad000 0012b66c 00000000 00000000
0012b64c: 00000000 00000100 00000001 047abbb8 00000085 047ad000 047ad000 01000004
0012b66c: 00000100 69230b30 00000000 047ad000 01000004 00000000 047abbb8 69230a06
0012b68c: 00000100 00000001 0000011f 00000000 027f0e7f 00000100 0061153b 013144b0
0012b6ac: 01314618 00000001 00000000 42f00000 00000100 0044ea06 00000100 0012b718
0012b6cc: 42f00000 0012b708 0012b704 0044ead8 7f7fffff 00000492 43feee9c 423596e6
0012b6ec: 440305d9 3f1b1776 0012b780 005554c4 0110543c 00000000 0012b7b4 3f1b1776
0012b70c: 0012b754 006239ff 0469f440 429d4f5b 436fe0ee 43ffba5b 4493af46 43cbe64e
0012b72c: 3b0022dc 00000000 bf800000 011058fc 0042b163 011058fc 0012b7ac 0074d054
0012b74c: 3f1b1776 00000000 00000001 027f0e7f 00000000 0044e5c0 00000003 00000000
0012b76c: 00000000 0141e908 00000000 017266c0 3f1b1776 0012b7cc 00555b3e 0110543c
0012b78c: 00000000 0012b7b4 3f1b1776 00000000 00000000 426fb178 418048d2 41857fcc
0012b7ac: bf289245 00000000 43feee9c 423596e6 440305d9 41648f40 418a90bc 40b4f380
0012b7cc: 00000000 00465a16 0110543c 00000000 0012b814 3f1b1776 7f8e6d9c 00000273
0012b7ec: 0000295d 00000000 00000000 3f1b1776 00000019 0000005a 42f254a9 000003e8
0012b80c: 00000000 00000005 44084000 42b00000 44068000 447a0000 00000000 00000000
0012b82c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b84c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b86c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b88c: 00000000 00000000 00000000 00000000 ffffffff 00472634 00000273 0000026d
0012b8ac: 00768f3c 000087d8 00008dc0 00000a00 000087d8 00000000 00008730 00000000
0012b8cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b8ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b90c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b92c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b94c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b96c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b98c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b9ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b9cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012b9ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ba0c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ba2c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ba4c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ba6c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ba8c: 00000000 00000000 00000000 0012bd20 006a289f 00000030 0012bd38 0012bd0c
0012baac: 0077bc27 fffffff3 00000000 0012bd20 006a22ae 0000000a 0012bd38 0012bd0c
0012bacc: 0012de22 0012de21 010d6a58 00000000 00000000 00000000 00000000 00000000
0012baec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bb0c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bb2c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bb4c: 00000000 00000000 00000000 00000000 0047eff9 013deae4 00000000 00000fa0
0012bb6c: 0000000a 00000001 0141e908 00000000 00000001 00000000 00000000 00000000
0012bb8c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bbac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bbcc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bbec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bc0c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bc2c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bc4c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bc6c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bc8c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bcac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bccc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bcec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0012dd90
0012bd0c: 00000021 0000001e 0000000d 010d6a58 00000000 0012bd58 0069a8c0 0012bd38
0012bd2c: 0077bc2a 0012dd78 0012de21 0012bd8d 7fffffdd 0012bd6c 00000042 00000000
0012bd4c: 00000000 00000000 00000000 046898ed 00508524 0012bd6c 0077bc10 0012dd74
0012bd6c: 66757453 20646566 69727473 3d20676e 54475b20 6c552046 65737379 5d302073
0012bd8c: 0000000a 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bdac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bdcc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bdec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012be0c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012be2c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012be4c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012be6c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012be8c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012beac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012becc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012beec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bf0c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bf2c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bf4c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bf6c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bf8c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bfac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012bfcc: 00000000 00000000 0012c25c 006a289f 0012c264 006a289f 00000065 0012c27c
0012bfec: 0012c250 0077bc27 fffffff6 00000000 0012c264 006a22ae 0000000a 0012c27c
0012c00c: 0012c250 0012e363 0012e362 0012f400 0000000a 0012c294 0012c268 0012e376
0012c02c: 0012e375 03a77c54 00000000 00000000 00000000 00000000 00000000 00000000
0012c04c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c06c: 0012c2f4 006a289f 0000006c 0012c30c 0012c2e0 0077bc27 fffffff9 00000000
0012c08c: 0012c2f4 006a22ae 0000000a 0012c30c 0012c2e0 0012e3f0 0012e3ef 0012f408
0012c0ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c0cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c0ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0012c390
0012c10c: 006a289f 00000074 0012c3a8 0012c37c 0077bc27 fffffffa 00000000 0012c390
0012c12c: 006a22ae 0000000a 0012c3a8 0012c37c 0012e48d 0012e48c 007d64e8 00000000
0012c14c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c16c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c18c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c1ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c1cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c1ec: 00000000 00000000 00000000 00000000 00000000 00000000 0012c248 006a1e48
0012c20c: 00000000 00000013 007690f8 00000001 00000013 0012e350 0012e2cc 00000000
0012c22c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c24c: 0012e2d4 0000001e 0000001e 0000000a 0012f400 00000000 0012c29c 0069a8c0
0012c26c: 0012c27c 0077bc2a 0012e2bc 0012e362 0012c2ce 7fffffe0 0012c2b0 00000042
0012c28c: 00000000 00000000 00000000 00000000 0468a05c 00508524 0012c2b0 0077bc10
0012c2ac: 0012e2b8 66757453 20646566 69727473 3d20676e 79485b20 73726570 65636170
0012c2cc: 00000a5d 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c2ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c30c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c32c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c34c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c36c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c38c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c3ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c3cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c3ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c40c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c42c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c44c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c46c: 00000000 0012c6f8 006a289f 00000065 0012c710 0012c6e4 0077bc27 fffffff6
0012c48c: 00000000 0012c6f8 006a22ae 0000000a 0012c710 0012c6e4 0012e7f7 0012e7f6
0012c4ac: 012fb680 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c4cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c4ec: 00000000 00000000 0012c558 0012cdbc 0689de68 00000002 00000002 00000002
0012c50c: 00000001 00000000 00000000 00000000 00000001 00000000 00000000 00000000
0012c52c: 00000000 00000000 00000000 00000000 6921723e 00000000 00000000 0414cf60
0012c54c: 0012c7b4 000f0003 000b0000 068ac690 00120001 80008000 00030002 00000001
0012c56c: 068ace90 068ade90 00122710 00000000 007d19b0 00000000 00000000 00000000
0012c58c: 00000000 000b0000 00070003 00008000 00008000 00008000 00008000 00002711
0012c5ac: 00002712 00008000 00008000 00000000 00000000 00000000 00000000 00000000
0012c5cc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c5ec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c60c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c62c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c64c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c66c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c68c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c6ac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c6cc: 00000000 00000000 00000000 00000000 00000000 0012e768 0000001e 0000001e
0012c6ec: 0000000a 012fb680 00000000 0012c730 0069a8c0 0012c710 0077bc2a 0012e750
0012c70c: 0012e7f6 0012c762 7fffffe0 0012c744 00000042 00000000 00000000 00000000
0012c72c: 00000000 0468a383 00508524 0012c744 0077bc10 0012e74c 0012c7a8 0012d00c
0012c74c: 0689de68 00000002 00000002 00000002 00000001 00000000 00000000 00000000
0012c76c: 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c78c: 6921723e 00000000 00000000 0414cf60 0000001e 000f0003 000f0000 068ac690
0012c7ac: 007d0001 80008000 00030002 00000001 068ace90 068ade90 00122710 00000000
0012c7cc: 0012c818 00000000 0012c800 00000000 00000000 000f0000 00070003 00008000
0012c7ec: 00008000 00008000 00008000 00002711 00002712 00008000 00008000 00000000
0012c80c: 0012c998 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c82c: 00000000 00000000 00000000 00000000 00000000 00000000 6920a976 00000001
0012c84c: 0012c8bc 068ac7fc 068ac7e0 0012c998 00000000 00000000 00000000 00000000
0012c86c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012c88c: 00000000 6920a976 00000001 0012c908 068ac8a4 068ac834 0012c998 691ff5e7
0012c8ac: 0012c900 00100000 691ff7e0 00000702 0012c900 00000001 00000001 068ac834
0012c8cc: 00000008 00000003 00000001 ffffffac 691ff934 068ac898 068ac888 0012c8f4
0012c8ec: 00000002 0012c998 691ff5fd 0012c978 00000007 691ff7e0 00100000 0012c978
0012c90c: 0012c998 692077db 0012c998 00000002 00000000 0689df88 692080c5 00100000
0012c92c: 068ac85c 0012c96c 00000001 0012c998 00000000 00000000 00000040 000000fb
0012c94c: 068ac74f 000000bd 000002f4 00000001 00000009 00000001 00000002 0689de20
0012c96c: 00000001 00002713 00008000 00002711 00002712 00008000 691ff33f 00000000
0012c98c: 00000000 0012cefc 0414cf60 04868c18 0012cf88 00000000 00000000 00000000
0012c9ac: 00000100 00000200 00000400 00000c00 00000400 00000400 00000100 694a6428
0012c9cc: 00000400 068e0a90 068ac690 00000009 068ac930 068c1690 00000002 00000005
0012c9ec: 00000003 00000000 00000003 00000003 00000002 068c1a90 068c2290 00000002
0012ca0c: 00000000 00000007 00000001 00002714 00000000 00000000 068c2a90 00000009
0012ca2c: 00000000 0000003f 00000000 00000000 068c8a90 00000000 00000000 00000000
0012ca4c: 00000000 0012cab4 068ac7a4 068ac78c 0012cbe8 00000000 00000000 00000000
0012ca6c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ca8c: 00000000 00000000 6920a976 00000001 0012cb0c 068ac7fc 068ac7e0 0012cbe8
0012caac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012cacc: 00000000 00000000 00000000 00000000 00000000 6920a976 00000001 0012cb58
0012caec: 068ac8a4 068ac834 0012cbe8 691ff5e7 0012cb50 00100000 691ff7e0 00000702
0012cb0c: 0012cb50 00000001 00000001 068ac834 00000008 00000003 00000001 ffffffac
0012cb2c: 691ff934 068ac898 068ac888 0012cb44 00000002 0012cbe8 691ff5fd 0012cbc8
0012cb4c: 00000007 691ff7e0 00100000 0012cbc8 0012cbe8 692077db 0012cbe8 00000002
0012cb6c: 00000000 0689df88 692080c5 00100000 068ac85c 0012cbbc 00000001 0012cbe8
0012cb8c: 00000000 00000000 00000040 000000fb 068ac74f 000000bd 000002f4 00000001
0012cbac: 00000009 00000001 00000002 0689de20 00000001 00002713 00008000 00002711
0012cbcc: 00002712 00008000 691ff33f 00000000 00000000 0012d14c 0414cf60 04868c18
0012cbec: 0012d1d8 00000000 00000000 00000000 00000100 00000200 00000400 00000c00
0012cc0c: 00000400 00000400 00000100 694a6428 00000400 068e0a90 068ac690 00000009
0012cc2c: 068ac930 068c1690 00000002 00000005 00000003 00000000 00000003 00000003
0012cc4c: 00000002 068c1a90 068c2290 00000002 00000000 00000007 00000001 00002714
0012cc6c: 00000000 00000000 068c2a90 00000009 00000000 0000003f 00000000 00000000
0012cc8c: 068c8a90 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ccac: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012cccc: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012ccec: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
0012cd0c: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000

[attachment deleted by admin]
« Last Edit: July 19, 2006, 11:41:07 am by karajorma »

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
Tried it. Worked perfectly. Even though the ulysses wasn't in Alpha wing (which I kinda expected to crash the mission).

What do you get with the debug build?
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline CP5670

  • Dr. Evil
  • Global Moderator
  • 212
heh, didn't know that the code tags put the text into a smaller editbox. Thanks for changing that.

The debug build has the same problem and doesn't give any more information. I have the log file it made but don't know where to start looking in it. Should I post the entire thing here?

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
Last 5-6 lines should be the most help really.
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline CP5670

  • Dr. Evil
  • Global Moderator
  • 212
The last couple are the same, so I put in a few more:

Code: [Select]
Player lethality: -1.1, num turrets targeting player: 0
Player lethality: -1.2, num turrets targeting player: 0
Player lethality: -1.3, num turrets targeting player: 0
Player lethality: -1.4, num turrets targeting player: 0
Player lethality: -1.5, num turrets targeting player: 0
Player lethality: -1.6, num turrets targeting player: 0
OpenAL ERROR: "Invalid Operation" in C:\temp\fs2_open_3_6_9.rc3\code\Sound\ds.cpp, line 3087
Player lethality: -1.7, num turrets targeting player: 0
Player lethality: -1.8, num turrets targeting player: 0
Player lethality: -1.9, num turrets targeting player: 0
Player lethality: -2.0, num turrets targeting player: 0
Player lethality: -2.1, num turrets targeting player: 0
Player lethality: -2.1, num turrets targeting player: 0
Player lethality: -2.2, num turrets targeting player: 0
Player lethality: -2.3, num turrets targeting player: 0
Player lethality: -2.4, num turrets targeting player: 0
Player lethality: -2.5, num turrets targeting player: 0
Player lethality: -2.6, num turrets targeting player: 0
Player lethality: -2.7, num turrets targeting player: 0
Player lethality: -2.8, num turrets targeting player: 0
Player lethality: -2.9, num turrets targeting player: 0
Player lethality: -3.0, num turrets targeting player: 0
Player lethality: -3.1, num turrets targeting player: 0
Loading bomber09-01b.dds for the first time.
Loading bomber09-01b.dds (256x512x32)
Player lethality: -3.2, num turrets targeting player: 0
Player lethality: -3.3, num turrets targeting player: 0
Player lethality: -3.4, num turrets targeting player: 0
Player lethality: -3.5, num turrets targeting player: 0
Player lethality: -3.6, num turrets targeting player: 0
Player lethality: -3.7, num turrets targeting player: 0
Player lethality: -3.8, num turrets targeting player: 0
Player lethality: -3.9, num turrets targeting player: 0
Player lethality: -4.0, num turrets targeting player: 0
Player lethality: -4.1, num turrets targeting player: 0

I guess this is a bug of some sort given that it used to work fine, so I'll put it on Mantis.