Results 1 to 10 of 10

Thread: How to view Wipeout2097 / XL tracks using Phoboslab viewer (tutorial)

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Mar 2015
    Posts
    58

    Post How to view Wipeout2097 / XL tracks using Phoboslab viewer [TUTORIAL]

    Hi,

    I recently found that the wipeout model viewer is fully compatible with Wipeout2097 game. I did not tried with XL, but it should be compatible as well.

    Since a forum member made a request about me to explain how to proceed, here is the instructions :

    1) go to the github repository, download zip file. extract all files somewhere.

    2) insert your Wipeout 2097 CD and extract all content to /WIPEOUT/ folder of model viewer.

    If you only have an ISO or BIN file, open it using your favorite archive tool (i think 7Zip can do that) and extract files.

    You should have something like /WIPEOUT/TRACK01, /WIPEOUT/TRACK02, ...

    3) open wipeout.js in an editor (eg : Notepad++). replace the last section by :

    Code:
    Wipeout.Tracks = [
    	{path: "WIPEOUT/TRACK01", name: "Talon's Reach", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK02", name: "Gare d'Europa", rangesForCameraSpline: [[0, 99999]]},       
    	{path: "WIPEOUT/TRACK04", name: "??????????", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK06", name: "Vostok Island", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK07", name: "Spilskinanke", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK08", name: "Sagarmatha", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK13", name: "Valparaiso", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK17", name: "Odessa Keys", rangesForCameraSpline: [[0, 99999]]},
    	{path: "WIPEOUT/TRACK20", name: "Phenitia Park", rangesForCameraSpline: [[0, 99999]]}
    ];
    4) open index.html file in your browser and enjoy Wipeout 2097 track viewing :




    Notes :

    - depending the browser security settings you might need to allow it to access local files. I had to use this command line for chrome :

    Code:
    chrome.exe index.html --allow-file-access-from-files
    - file are loaded using AJAX (it is supposed to run on a webserver). in chrome, I had to fake request status to made it work (by putting some lines in comment in wipeout.js) :

    Code:
    req.onload = function(ev) {
        //if( req.status == 200 ) {
            callback(req.response);
        //}
    };

    Check first post of my thread if you want to see how the hidden TRACK04 looks like.

    With a little bit more effort it is even possible to load models :

    Last edited by tigrou; 25th April 2015 at 02:39 PM.

Posting Permissions

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