build_srgjar.xml
5.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="liteloadertosrg" basedir="." default="build" xmlns:ivy="antlib:org.apache.ivy.ant">
<property name="project.name" value="liteloader" />
<property name="version" value="1.8" />
<property name="author" value="Mumfrey" />
<property name="mcp.dir" location="../../.." />
<property name="mcp.temp.dir" location="${mcp.dir}/temp" />
<property name="minecraft.src.dir" location="${mcp.dir}/src/minecraft" />
<property name="lib.dir" location="./lib" />
<property name="temp.dir" location="./temp" />
<property name="out.dir" location="${temp.dir}/out" />
<property name="dist.dir" location="${mcp.dir}/build/dist" />
<property name="src.dir" location="${temp.dir}/src" />
<property name="map.file" location="${temp.dir}/range.map" />
<property name="insrg.file" location="${mcp.temp.dir}/client_ro_srg.srg" />
<property name="outsrg.file" location="${temp.dir}/remap.srg" />
<property name="liteloader.src.base" location="../java" />
<property name="python_windows" location="${mcp.dir}/runtime/bin/python/python_mcp.exe" />
<property name="python_linux" location="/usr/bin/python" />
<path id="class.path">
<fileset dir="${lib.dir}">
<include name="**/*.jar" />
</fileset>
</path>
<target name="build">
<property name="artefact" location="${dist.dir}/${project.name}-${version}-srgnames-sources.jar" />
<ivy:configure file="ivysettings.xml" />
<antcall target="jar" />
</target>
<target name="jenkins">
<property name="artefact" location="${dist.dir}/${project.name}-${version}-SNAPSHOT-srgnames-sources.jar" />
<ivy:configure file="ivysettings.xml" />
<antcall target="jar" />
</target>
<path id="classpath">
<fileset dir="${ivy.lib.dir}">
<include name="**/*.jar"/>
</fileset>
</path>
<target name="clean">
<echo message="Cleaning working directories..." />
<delete dir="${temp.dir}" failonerror="false" />
<mkdir dir="${src.dir}"/>
<mkdir dir="${out.dir}"/>
<mkdir dir="${temp.dir}"/>
</target>
<target name="init" depends="clean">
<echo message="Aggregating sources..." />
<copy todir="${src.dir}" overwrite="true">
<fileset dir="${minecraft.src.dir}">
<exclude name="*.java" />
</fileset>
<fileset dir="${liteloader.src.base}/common">
<exclude name="**/Jump.java" />
</fileset>
<fileset dir="${liteloader.src.base}/client" />
</copy>
<echo message="Fetching dependencies..." />
<ivy:retrieve sync="true" />
</target>
<target name="reobfSrg" depends="init">
<echo message="Running reobf to generate srgs..." />
<exec executable="${python_windows}" dir="${mcp.dir}" osfamily="windows">
<arg value="runtime/reobfuscate.py" />
<arg value="--srgnames" />
<arg value="--client" />
</exec>
<exec executable="${python_linux}" dir="${mcp.dir}" osfamily="unix">
<arg value="runtime/reobfuscate.py" />
<arg value="--srgnames" />
<arg value="--client" />
</exec>
</target>
<target name="extractRanges" depends="reobfSrg">
<echo message="Extracting ranges from source..." />
<java classname="net.minecraftforge.srg2source.ast.RangeExtractor" output="${temp.dir}/extractRanges.log">
<classpath refid="class.path" />
<arg value="${src.dir}" />
<arg value="${lib.dir}" />
<arg value="${map.file}" />
</java>
</target>
<target name="flipsrg" depends="extractRanges">
<echo message="Remapping SRG file..." />
<copy file="${insrg.file}" tofile="${outsrg.file}" overwrite="true" />
<replaceregexp file="${outsrg.file}" byline="true" match="(FD|CL): ([^\s]+) ([^\s]+)" replace="\1: \3 \2" />
<replaceregexp file="${outsrg.file}" byline="true" match="MD: ([^\s]+) ([^\s]+) ([^\s]+) ([^\s]+)" replace="MD: \3 \4 \1 \2" />
</target>
<target name="applyRanges" depends="flipsrg">
<echo message="Remapping ranges in source..." />
<java classname="net.minecraftforge.srg2source.rangeapplier.RangeApplier" output="${temp.dir}/applyRanges.log">
<classpath refid="class.path" />
<arg value="--srcRoot=${src.dir}" />
<arg value="--srcRangeMap=${map.file}" />
<arg value="--srgFiles=${outsrg.file}" />
<arg value="--outDir=${out.dir}" />
</java>
</target>
<target name="jar" depends="applyRanges">
<echo message="Building src jar..." />
<jar destfile="${artefact}" duplicate="preserve" index="true" manifestencoding="UTF-8">
<manifest>
<attribute name="Implementation-Vendor" value="${author}" />
<attribute name="Implementation-Title" value="${ant.project.name}" />
<attribute name="Implementation-Version" value="${version}" />
</manifest>
<fileset dir="${out.dir}">
<exclude name="net/minecraft/**" />
</fileset>
</jar>
</target>
</project>