Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19

Thread: Current Status

  1. #11
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    It doesn't matter if you do this from Linux or Windows. I described how to get the basic Windows setup if you'd like to use it on Windows.

  2. #12
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    Things to do:

    1. Extend state files with additional states
    2. Add all known fixes to statefiles
    3. Include all other known fixes

    We need this to start writing the framework. Today I've added strings.scr, files.scr and maths.scr modified by Sor. They need tweaking, but the files are already in the repo.

  3. #13
    Banned
    Join Date
    May 2010
    Location
    fuck off?
    Posts
    1,145

    Default

    Today! after several weeks, months> I have got my internet back!

    Where is our list of known fixes apart from what I wrote in admin pro docs?

  4. #14
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    We don't have it but you're welcome to create a thread and gather everything we need. Some of them were mentioned in other threads over here.

  5. #15
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    I've created a simple compiler batch script that will work under Windows.

    You have to run it from Windows cmd.

    Usage:
    Code:
    compile.bat <pakname>
    It will place everything from src/ directory into .zip and .pk3 file and move them to build/ directory.

    I've also added empty reborn_loader.scr file and updated our repo with files from current Reborn.pk3 file we use.

  6. #16
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    I've edited strings.scr and hud.scr, now they are called strings.scrlib and hud.scrlib.

    This is a standarized Script Library File.

    Mod loader will look for .scrlib files, and will load them. Each .scrlib file has to have 2 functions: _libname, which returns a library name, and _libinit, which initializes script library.
    Thanks to this, library doesn't have to know in which directory it is located. You can download separate libs and drop them wherever you want.

    Additionaly, Script Libraries doesn't have to be located inside .pk3 files, and will be loaded from "main" folder and its subdirectories as well.

    ----------------------------

    EDIT:

    I'm changing the concept a little bit.
    There will be 2 functions but _libname is changed to _libinfo

    It has to return an array with Libs name, title, version, and author.

    If user will have more than 2 copies of given lib, loader will check its version, and load only newer one. If both copies have the same version, it will be loaded only once.

  7. #17
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    I've added few additional batch scripts to aid with creating new libs and mods and building them.

    For Reborn .pk3 use build.bat to build it now.

    Code:
    > build.bat

  8. #18
    Developer Sor's Avatar
    Join Date
    Aug 2010
    Location
    The Medieval City of Bruges
    Posts
    747

    Default

    Sounds good, Razo, but can't the file extension be a bit shorter? Like .lib or .slib or something?

  9. #19
    Über Prodigy & Developer Razo[R]apiD's Avatar
    Join Date
    May 2010
    Location
    Poland, Lublin
    Posts
    3,257

    Default

    We can change it to .slib yes. It was my first idea too.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •