xIO Dll- Xbox 360 Modding Tool

CRACKbomber May 19, 2013

  1. CRACKbomber

    CRACKbomber Resident Xbox Guru XPG Developer
    0/47

    Joined:
    Sep 12, 2011
    Messages:
    276
    Likes Received:
    235
    Trophy Points:
    25
    Gender:
    Male
    Location:
    Michigan
    Console:
    Xbox
    [​IMG]
    File Name: xIO Dll
    File Submitter: CRACKbomber
    File Submitted: 19 May 2013
    File Category: Xbox360 Modding Tools

    Made by CRACKbomber @ XPGamesaves.com


    /////////////////////////////////
    // Features
    ////////////////////////////////

    TONS of builtin extension methods!

    Example:

    using xIO.Common.Helpers;

    int foo = 10;
    // Swaps the Endians to Big
    int bigFoo = foo.Swap();
    // Aligns foo to an arbitrary boundary
    int alignedFoo = foo.Align(0x800);
    // UnMake packaged ID (special case IDs)
    string ID = foo.UnMakeID();


    Endian IO reading and writing

    Example:

    using xIO.IO;
    [StructLayout(LayoutKind.Sequential)]
    struct fooStruct
    {
    int fooMember;
    float fooMember2;
    ushort fooMember3;
    }
    IOReader reader = new IOReader(File.OpenRead("foo.bin"), Endian.Big);

    int foo = reader.ReadInt();


    fooStruct lol = reader.ReadStruct<fooStruct>();

    reader.Close();
    reader.Dispose();
    //Writing

    IOWriter writer = new IOWriter(File.Create("foo2.bin"), Endian.Big);

    writer.Write(foo);
    writer.WriteStruct<fooStruct>(lol);

    writer.Flush();
    writer.Close();
    writer.Dispose();


    Additional Features:

    xCompression and zLib operations

    Upcoming features:

    Added encryption methods
    More common compression types
    STFX packaging

    Hidden Content:
    You must reply before you can see the hidden data contained here.
     
  2. BinaryX

    BinaryX Lifetime Gold XPG Developer Lifetime Gold
    0/47

    Joined:
    May 21, 2011
    Messages:
    971
    Likes Received:
    258
    Trophy Points:
    0
    Gender:
    Male
    Location:
    Europe
    Console:
    Xbox
    Thanks for this! +rep
     

Share This Page

Close