Package net.minecraftforge.srg2source.rangeapplier

Examples of net.minecraftforge.srg2source.rangeapplier.SrgContainer


        HashMap<String, String> methods = new HashMap<String, String>();
        HashMap<String, String> fields = new HashMap<String, String>();
        readCSVs(getMethodsCsv(), getFieldsCsv(), methods, fields);
       
        // Do SRG stuff
        SrgContainer inSrg = new SrgContainer().readSrg(getInSrg());
        Map<String, String> excRemap = readExtraSrgs(getExtraSrgs(), inSrg);
        writeOutSrgs(inSrg, methods, fields);
       
        // do EXC stuff
        writeOutExcs(excRemap, methods);
View Full Code Here


        }
    }
   
    private static Map<String, String> readExtraSrgs(FileCollection extras, SrgContainer inSrg)
    {
        SrgContainer extraSrg = new SrgContainer().readSrgs(extras);
        // Need to convert these to Notch-SRG names. and add them to the other one.
       
        HashMap<String, String> excRemap = new HashMap<String, String>(extraSrg.methodMap.size());
       
        // SRG -> notch map
View Full Code Here

TOP

Related Classes of net.minecraftforge.srg2source.rangeapplier.SrgContainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.