Ronny Otto
Ronny Otto
Ein Problem mit Threads und Zugriff auf Objekte des Hauptthreads, waehrend dieser was abfragt... das waere schwer zu reproduzieren (und wuerde vlt eher auf deinem langsamen PC passieren). Aber wenn...
game.player.programmeplan.bmx: ``` Method InformCurrentBroadcast:Int(day:Int, hour:Int, minute:Int) Local obj:TBroadcastMaterial = Null '=== BEGIN OF NEWSSHOW === If minute = 0 ... '=== BEGIN OF PROGRAMME === ElseIf minute = 5 obj...
Weitere Ergaenzung. Beim Setzen der Programme wird `PlayerProgrammePlan.AddObject()` -> `IsModifiableSlot()` -> `IsUseableTimeSlot()` aufgerufen. Meines Erachtens ist die dortige Ueberpruefung korrekt: ```BlitzMax 'check programmes Case TVTBroadcastMaterialType.PROGRAMME If currentMinute >= 5 Then...
No strict need to set this in the difficulty objects. Might as well fit into the map config... Cheap labor costs in certain countries... I understand the idea on being...
Das ist Absicht. Es gibt ja die Eddie Murphy -Filme etc Was man aber machen kann ...ist eben die Chance auf einen Erfolg einer solchen "in Personalunion"-Produktion ein wenig zufaellig...
I thought about some kind of ".meta" file too. It could contain all the params used to compile (maybe even a hash of them in the first line...so only one...
I appended some further debug prints: changes the output of: ``` Method DoBuild(makelib:Int, app_build:Int = False) ... Select m.stage ... Case STAGE_OBJECT ... If processor.BCCVersion() "BlitzMax" Then ... print "m.cc_opts...
Placing a "pre.bmk" next to my untitled1.bmx (aka unsaved file in maxide): ``` addccopt mykey -DSPECIAL_OPTION23 ``` results in ``` Building untitled1 Loading /BlitzMaxNG/bin/custom.bmk TBMKGlobals.AddOption: variable=ld_opts key=static-stdc value=-static-libstdc++ Loading /BlitzMaxNG/tmp/pre.bmk...
setldopt (or addldopt) seems to be ignored somehow ... will investigate and report back (so you can do something else meanwhile). bmk_make.bmx: ``` print "Linking options:" print globals.Get("ld_opts").ToString() LinkApp opt_outfile,...
Saw this in bmk_util.bmx (linkapp - for win32): ``` If usingLD If opts.Find("stdc++") = -1 Then fb.Append(" -lstdc++") End If ``` Wouldn't it then be better to search for "-lstdc++"...