Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 17, 2009, 4:37:10 PM (15 years ago)
Author:
rgrieder
Message:
  • Implemented file management via resource manager and loading of resource locations via XML. Changes made:
    • SoundManager loads via memory stream rather than via file
    • Loader uses LuaState::includeFile() to load an XML file and passes the lua tag remover function to its LuaState.
    • ConfigFileManager still loads with hard paths because the files are required before Ogre gets created
  • Renamed LuaBind to LuaState, deSingletonised it and added new features:
    • doFile(), doString(), includeFile(), includeString() where include will preparse the string with a function provided with LuaState::setIncludeParser
    • Moved lua tags replace function to Loader (since it's actually an XML related task)
    • Using data_path/lua/LuaInitScript.lua to provide the following functions
      • logMessage(level, message)
      • doFile, dofile, include (all working with relative paths but within the same resource group)
  • Modified Script class to work with LuaState and fixed its XML Loader
  • Adjusted all level and include files (both "include" and "dofile" lua commands)
Location:
code/branches/resource2/data/levels/old
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • code/branches/resource2/data/levels/old/CuboidSpaceStation.oxw

    r5528 r5654  
    11<?lua
    2         include("overlay/hudtemplates3.oxo")
     2        include("hudtemplates3.oxo")
    33?>
    44
    55<?lua
    6         include("levels/templates/spaceship_assff.oxt")
     6        include("templates/spaceship_assff.oxt")
    77?>
    88
     
    2020<!-------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
    2121<?lua
    22         dofile("../../media/levels/includes/CuboidSpaceStation.lua")
     22        dofile("includes/CuboidSpaceStation.lua")
    2323?>
    2424
  • code/branches/resource2/data/levels/old/physicstest2.oxw

    r5528 r5654  
    11<?lua
    2   include("levels/old/spaceshiptemplates_physics.oxw")
     2  include("spaceshiptemplates_physics.oxw")
    33?>
    44<?lua
    5   include("overlay/hudtemplates3.oxo")
     5  include("hudtemplates3.oxo")
    66?>
    77
  • code/branches/resource2/data/levels/old/planettest.oxw

    r5528 r5654  
    11<?lua
    2   include("overlay/hudtemplates3.oxo")
     2  include("hudtemplates3.oxo")
    33?>
    44
    55<?lua
    6   include("levels/templates/spaceship_assff.oxt")
     6  include("templates/spaceship_assff.oxt")
    77?>
    88
  • code/branches/resource2/data/levels/old/presentation_physics.oxw

    r5528 r5654  
    11<?lua
    2   include("overlay/hudtemplates3.oxo")
    3   include("overlay/stats.oxo")
    4   include("levels/templates/spaceship_assff.oxt")
     2  include("hudtemplates3.oxo")
     3  include("stats.oxo")
     4  include("templates/spaceship_assff.oxt")
    55  math.randomseed(344)
    66?>
  • code/branches/resource2/data/levels/old/princessaeryn.oxw

    r5528 r5654  
    11<?lua
    2   include("overlay/hudtemplates3.oxo")
    3   include("overlay/stats.oxo")
    4   include("levels/templates/spaceship_assff.oxt")
     2  include("hudtemplates3.oxo")
     3  include("stats.oxo")
     4  include("templates/spaceship_assff.oxt")
    55?>
    66
    77<?lua
    8         dofile("../../media/levels/includes/CuboidSpaceStation.lua")
     8        dofile("includes/CuboidSpaceStation.lua")
    99?>
    1010
  • code/branches/resource2/data/levels/old/questsystem.oxw

    r5528 r5654  
    11<?lua
    2   include("overlay/hudtemplates3.oxo")
    3   include("overlay/stats.oxo")
    4   include("levels/templates/spaceship_assff.oxt")
     2  include("hudtemplates3.oxo")
     3  include("stats.oxo")
     4  include("templates/spaceship_assff.oxt")
    55?>
    66
  • code/branches/resource2/data/levels/old/sample4.oxw

    r5528 r5654  
    11<?lua
    2   include("overlay/hudtemplates3.oxo")
     2  include("hudtemplates3.oxo")
    33?>
    44
    55<?lua
    6   include("levels/templates/spaceship_assff.oxt")
     6  include("templates/spaceship_assff.oxt")
    77?>
    88
Note: See TracChangeset for help on using the changeset viewer.