Coder Social home page Coder Social logo

rafiki's Introduction

RAFIKI - Riot Archive File extractor & packer

Build Status

Python API for reading and writing to a raf format used by RIOT's game Leauge of Legends. Tested on Mac and Windows (for platform's native version of the game).

*** This is low-level API exclusively for dealign with RAF files. If you're after multi-screen/ultrawide resolution support mod, see: lol-eyefinity-surround-fixhud.

Helper/Example Scripts

Extract all files containing hud string in its path. This will create a new folder extracted wher relevant files will be placed (under their full RAF path):

python bin/rafiki.py extract -s full/path/to/lol -f "hud/elements" -o extracted

Find all files containing string hud, then search for file overrides in a folder named extracted and if an override exists, replace the file before packing everything back into archives. A new folder overrides will be created where relevant raf archives will be placed. You need to copy these files manually to actually include overrides in the game.

python bin/rafiki.py pack -s full/path/to/lol -f "hud/elements" -r extracted -o overrides

Note: Running on Windows

All above should run ok on Windows. Bear in mind you need to change all "/" to "". Obviously you need to install Python for Windows

You will most likely need a 64 bit version of python (and 64 bit version of Windows) as 32 bit version tends to come up with a Memory Error on writing raf files. Patches welcome.

rafiki's People

Contributors

tnajdek avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

rafiki's Issues

Cannot extract using Windows (Python 64bit)

My lol path is C:\Riot\lol .. did i do something wrong?

C:\Riot>python rafiki.py extract -s lol -f "hud/elements" -o extracted
Traceback (most recent call last):
File "rafiki.py", line 75, in
collection = RafCollection(source_path)
File "C:\Riot\raf.py", line 143, in init
self.index[item] = RafArchive(os.path.join(path, item, filename))
File "C:\Riot\raf.py", line 71, in init
path = path.strip('\x00')
TypeError: Type str doesn't support the buffer API

C:\Riot>

Extract raf files in right order

when extracting all files,
raf.py #148:

for item,raf in self.index.iteritems():

will follow python dict order which is not correct order
so sometimes old files will overwrite new files

dict order :
hash of string .. seems pretty random
right order :
0.0.0.old -> 0.0.0.new

solution :

sortlist = [(key,value) for key,value in self.index.iteritems() ]
sortlist.sort(key = lambda i:(len(i[0]),i[0]))
for item,raf in sortlist:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.