diff -r f26422ef0333 -r 93e16240f178 hedgewars/hwengine.pas --- a/hedgewars/hwengine.pas Sat Nov 17 09:03:47 2012 -0500 +++ b/hedgewars/hwengine.pas Sun Nov 18 01:00:26 2012 +0400 @@ -29,9 +29,10 @@ program hwengine; {$ENDIF} -uses SDLh, uMisc, uConsole, uGame, uConsts, uLand, uAmmos, uVisualGears, uGears, uStore, uWorld, uInputHandler, - uSound, uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uAILandMarks, uLandTexture, uCollisions, - SysUtils, uTypes, uVariables, uCommands, uUtils, uCaptions, uDebug, uCommandHandlers, uLandPainted +uses SDLh, uMisc, uConsole, uGame, uConsts, uLand, uAmmos, uVisualGears, uGears, uStore, uWorld, uInputHandler + , uSound, uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uAILandMarks, uLandTexture, uCollisions + , SysUtils, uTypes, uVariables, uCommands, uUtils, uCaptions, uDebug, uCommandHandlers, uLandPainted + , uPhysFSLayer {$IFDEF USE_VIDEO_RECORDING}, uVideoRec {$ENDIF} {$IFDEF USE_TOUCH_INTERFACE}, uTouch {$ENDIF} {$IFDEF ANDROID}, GLUnit{$ENDIF} @@ -343,16 +344,6 @@ for i:= 0 to ParamCount do AddFileLog(inttostr(i) + ': ' + ParamStr(i)); - for p:= Succ(Low(TPathType)) to High(TPathType) do - if (p <> ptMapCurrent) and (p <> ptData) then - UserPathz[p]:= UserPathPrefix + '/Data/' + Pathz[p]; - - UserPathz[ptData]:= UserPathPrefix + '/Data'; - - for p:= Succ(Low(TPathType)) to High(TPathType) do - if p <> ptMapCurrent then - Pathz[p]:= PathPrefix + '/' + Pathz[p]; - WriteToConsole('Init SDL... '); if not cOnlyStats then SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_NOPARACHUTE) >= 0, true); WriteLnToConsole(msgOK); @@ -381,18 +372,15 @@ InitKbdKeyTable(); AddProgress(); - LoadLocale(UserPathz[ptLocale] + '/en.txt'); // Do an initial load with english - LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english + LoadLocale(cPathz[ptLocale] + '/en.txt'); // Do an initial load with english if cLocaleFName <> 'en.txt' then begin // Try two letter locale first before trying specific locale overrides - if (Length(cLocale) > 3) and (Copy(cLocale,1,2) <> 'en') then + if (Length(cLocale) > 3) and (Copy(cLocale, 1, 2) <> 'en') then begin - LoadLocale(UserPathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt'); - LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt') + LoadLocale(cPathz[ptLocale] + '/' + Copy(cLocale, 1, 2) + '.txt') end; - LoadLocale(UserPathz[ptLocale] + '/' + cLocaleFName); - LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName) + LoadLocale(cPathz[ptLocale] + '/' + cLocaleFName) end else cLocale := 'en'; @@ -459,6 +447,7 @@ if complete then begin + uPhysFSLayer.initModule; {$IFDEF ANDROID}GLUnit.initModule;{$ENDIF} {$IFDEF USE_TOUCH_INTERFACE}uTouch.initModule;{$ENDIF} {$IFDEF USE_VIDEO_RECORDING}uVideoRec.initModule;{$ENDIF} //stub @@ -510,6 +499,7 @@ {$IFDEF USE_VIDEO_RECORDING}uVideoRec.freeModule;{$ENDIF} {$IFDEF USE_TOUCH_INTERFACE}uTouch.freeModule;{$ENDIF} //stub {$IFDEF ANDROID}GLUnit.freeModule;{$ENDIF} + uPhysFSLayer.freeModule; end; uIO.freeModule;