2017-11-19 00:48:21 -08:00
|
|
|
/**
|
|
|
|
* File is officially deprecated in favor of processbuilder.js,
|
|
|
|
* will be removed once the new module is 100% complete and this
|
|
|
|
* is no longer needed for reference.
|
|
|
|
*/
|
2017-05-16 23:26:46 -07:00
|
|
|
const mojang = require('mojang')
|
|
|
|
const uuidV4 = require('uuid/v4')
|
|
|
|
const path = require('path')
|
|
|
|
const child_process = require('child_process')
|
|
|
|
const ag = require('./assetguard.js')
|
2017-05-17 14:44:46 -07:00
|
|
|
const AdmZip = require('adm-zip')
|
2017-05-16 23:26:46 -07:00
|
|
|
const fs = require('fs')
|
|
|
|
const mkpath = require('mkdirp');
|
|
|
|
|
2017-05-21 15:06:48 -07:00
|
|
|
function launchMinecraft(versionData, forgeData, basePath){
|
2017-08-26 22:13:48 -07:00
|
|
|
const authPromise = mojang.auth('email', 'pass', uuidV4(), {
|
2017-05-16 23:26:46 -07:00
|
|
|
name: 'Minecraft',
|
|
|
|
version: 1
|
|
|
|
})
|
|
|
|
authPromise.then(function(data){
|
2017-08-26 11:43:24 -07:00
|
|
|
console.log(data)
|
2017-05-21 15:06:48 -07:00
|
|
|
const args = finalizeArgumentsForge(versionData, forgeData, data, basePath)
|
2017-08-26 11:43:24 -07:00
|
|
|
//BRUTEFORCE for testing
|
|
|
|
//args.push('-mods modstore\\chatbubbles\\chatbubbles\\1.0.1_for_1.11.2\\mod_chatBubbles-1.0.1_for_1.11.2.litemod,modstore\\com\\westeroscraft\\westerosblocks\\3.0.0-beta-71\\westerosblocks-3.0.0-beta-71.jar,modstore\\mezz\\jei\\1.11.2-4.3.5.277\\jei-1.11.2-4.3.5.277.jar,modstore\\net\\optifine\\optifine\\1.11.2_HD_U_B9\\optifine-1.11.2_HD_U_B9.jar')
|
|
|
|
//args.push('--modListFile absolute:C:\\Users\\Asus\\Desktop\\LauncherElectron\\app\\assets\\WesterosCraft-1.11.2.json')
|
2017-05-16 23:26:46 -07:00
|
|
|
//TODO make this dynamic
|
2017-11-18 21:41:36 -08:00
|
|
|
const child = child_process.spawn('C:\\Program Files\\Java\\jdk1.8.0_152\\bin\\javaw.exe', args)
|
2017-05-17 14:44:46 -07:00
|
|
|
child.stdout.on('data', (data) => {
|
2017-05-21 15:06:48 -07:00
|
|
|
console.log('Minecraft:', data.toString('utf8'))
|
2017-05-17 14:44:46 -07:00
|
|
|
})
|
|
|
|
child.stderr.on('data', (data) => {
|
2017-05-21 15:06:48 -07:00
|
|
|
console.log('Minecraft:', data.toString('utf8'))
|
2017-05-17 14:44:46 -07:00
|
|
|
})
|
|
|
|
child.on('close', (code, signal) => {
|
2017-05-21 15:06:48 -07:00
|
|
|
console.log('Exited with code', code)
|
2017-05-17 14:44:46 -07:00
|
|
|
})
|
2017-05-16 23:26:46 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-05-21 15:06:48 -07:00
|
|
|
function finalizeArgumentsForge(versionData, forgeData, authData, basePath){
|
|
|
|
const mcArgs = forgeData['minecraftArguments']
|
|
|
|
const gameProfile = authData['selectedProfile']
|
|
|
|
const regex = new RegExp('\\${*(.*)}')
|
|
|
|
const argArr = mcArgs.split(' ')
|
|
|
|
const staticArgs = ['-Xmx4G',
|
|
|
|
'-XX:+UseConcMarkSweepGC',
|
|
|
|
'-XX:+CMSIncrementalMode',
|
|
|
|
'-XX:-UseAdaptiveSizePolicy',
|
|
|
|
'-Xmn128M',
|
|
|
|
'-Djava.library.path=' + path.join(basePath, 'natives'),
|
|
|
|
'-cp',
|
|
|
|
classpathArg(versionData, basePath).concat(forgeClasspathArg(forgeData, basePath)).join(';'),
|
|
|
|
forgeData.mainClass]
|
|
|
|
for(let i=0; i<argArr.length; i++){
|
|
|
|
if(regex.test(argArr[i])){
|
|
|
|
const identifier = argArr[i].match(regex)[1]
|
|
|
|
let newVal = argArr[i]
|
|
|
|
switch(identifier){
|
|
|
|
case 'auth_player_name':
|
|
|
|
newVal = gameProfile['name']
|
|
|
|
break
|
|
|
|
case 'version_name':
|
2017-08-26 11:43:24 -07:00
|
|
|
//newVal = versionData['id']
|
|
|
|
newVal = 'WesterosCraft-1.11.2'
|
2017-05-21 15:06:48 -07:00
|
|
|
break
|
|
|
|
case 'game_directory':
|
|
|
|
newVal = basePath
|
|
|
|
break
|
|
|
|
case 'assets_root':
|
|
|
|
newVal = path.join(basePath, 'assets')
|
|
|
|
break
|
|
|
|
case 'assets_index_name':
|
|
|
|
newVal = versionData['assets']
|
|
|
|
break
|
|
|
|
case 'auth_uuid':
|
|
|
|
newVal = gameProfile['id']
|
|
|
|
break
|
|
|
|
case 'auth_access_token':
|
|
|
|
newVal = authData['accessToken']
|
|
|
|
break
|
|
|
|
case 'user_type':
|
|
|
|
newVal = 'MOJANG'
|
|
|
|
break
|
|
|
|
case 'version_type':
|
|
|
|
newVal = versionData['type']
|
|
|
|
break
|
|
|
|
}
|
|
|
|
argArr[i] = newVal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return staticArgs.concat(argArr)
|
|
|
|
}
|
|
|
|
|
|
|
|
function finalizeArguments(versionData, authData, basePath){
|
2017-05-16 23:26:46 -07:00
|
|
|
const mcArgs = versionData['minecraftArguments']
|
|
|
|
const gameProfile = authData['selectedProfile']
|
|
|
|
const regex = new RegExp('\\${*(.*)}')
|
|
|
|
const argArr = mcArgs.split(' ')
|
2017-05-21 15:06:48 -07:00
|
|
|
const staticArgs = ['-Xmx1G',
|
|
|
|
'-XX:+UseConcMarkSweepGC',
|
|
|
|
'-XX:+CMSIncrementalMode',
|
|
|
|
'-XX:-UseAdaptiveSizePolicy',
|
|
|
|
'-Xmn128M',
|
|
|
|
'-Djava.library.path=' + path.join(basePath, 'natives'),
|
|
|
|
'-cp',
|
|
|
|
classpathArg(versionData, basePath).join(';'),
|
|
|
|
versionData.mainClass]
|
2017-05-16 23:26:46 -07:00
|
|
|
for(let i=0; i<argArr.length; i++){
|
|
|
|
if(regex.test(argArr[i])){
|
|
|
|
const identifier = argArr[i].match(regex)[1]
|
|
|
|
let newVal = argArr[i]
|
|
|
|
switch(identifier){
|
|
|
|
case 'auth_player_name':
|
|
|
|
newVal = gameProfile['name']
|
|
|
|
break
|
|
|
|
case 'version_name':
|
|
|
|
newVal = versionData['id']
|
|
|
|
break
|
|
|
|
case 'game_directory':
|
|
|
|
newVal = basePath
|
|
|
|
break
|
|
|
|
case 'assets_root':
|
|
|
|
newVal = path.join(basePath, 'assets')
|
|
|
|
break
|
|
|
|
case 'assets_index_name':
|
|
|
|
newVal = versionData['assets']
|
|
|
|
break
|
|
|
|
case 'auth_uuid':
|
|
|
|
newVal = gameProfile['id']
|
|
|
|
break
|
|
|
|
case 'auth_access_token':
|
|
|
|
newVal = authData['accessToken']
|
|
|
|
break
|
|
|
|
case 'user_type':
|
|
|
|
newVal = 'MOJANG'
|
|
|
|
break
|
|
|
|
case 'version_type':
|
|
|
|
newVal = versionData['type']
|
|
|
|
break
|
|
|
|
}
|
|
|
|
argArr[i] = newVal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-21 15:06:48 -07:00
|
|
|
return staticArgs.concat(argArr)
|
|
|
|
}
|
|
|
|
|
|
|
|
function forgeClasspathArg(forgeData, basePath){
|
|
|
|
const libArr = forgeData['libraries']
|
|
|
|
const libPath = path.join(basePath, 'libraries')
|
|
|
|
const cpArgs = []
|
|
|
|
for(let i=0; i<libArr.length; i++){
|
|
|
|
const lib = libArr[i]
|
|
|
|
const to = path.join(libPath, ag._resolvePath(lib.name, '.jar'))
|
|
|
|
cpArgs.push(to)
|
|
|
|
}
|
|
|
|
return cpArgs
|
2017-05-16 23:26:46 -07:00
|
|
|
}
|
|
|
|
|
2017-05-21 15:06:48 -07:00
|
|
|
function classpathArg(versionData, basePath){
|
2017-05-16 23:26:46 -07:00
|
|
|
const libArr = versionData['libraries']
|
|
|
|
const libPath = path.join(basePath, 'libraries')
|
|
|
|
const nativePath = path.join(basePath, 'natives')
|
|
|
|
const version = versionData['id']
|
|
|
|
const cpArgs = [path.join(basePath, 'versions', version, version + '.jar')]
|
|
|
|
libArr.forEach(function(lib){
|
|
|
|
if(ag.Library.validateRules(lib['rules'])){
|
|
|
|
if(lib['natives'] == null){
|
|
|
|
const dlInfo = lib['downloads']
|
|
|
|
const artifact = dlInfo['artifact']
|
|
|
|
const to = path.join(libPath, artifact['path'])
|
|
|
|
cpArgs.push(to)
|
|
|
|
} else {
|
|
|
|
//Now we need to extract natives.
|
|
|
|
const natives = lib['natives']
|
|
|
|
const extractInst = lib['extract']
|
|
|
|
const exclusionArr = extractInst['exclude']
|
|
|
|
const opSys = ag.Library.mojangFriendlyOS()
|
|
|
|
const indexId = natives[opSys]
|
|
|
|
const dlInfo = lib['downloads']
|
|
|
|
const classifiers = dlInfo['classifiers']
|
|
|
|
const artifact = classifiers[indexId]
|
|
|
|
|
|
|
|
const to = path.join(libPath, artifact['path'])
|
|
|
|
|
2017-05-17 14:44:46 -07:00
|
|
|
let zip = new AdmZip(to)
|
|
|
|
let zipEntries = zip.getEntries()
|
2017-05-16 23:26:46 -07:00
|
|
|
|
2017-05-17 14:44:46 -07:00
|
|
|
for(let i=0; i<zipEntries.length; i++){
|
|
|
|
const fileName = zipEntries[i].entryName
|
2017-05-16 23:26:46 -07:00
|
|
|
|
|
|
|
let shouldExclude = false
|
|
|
|
|
|
|
|
exclusionArr.forEach(function(exclusion){
|
|
|
|
if(exclusion.indexOf(fileName) > -1){
|
|
|
|
shouldExclude = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-05-17 14:44:46 -07:00
|
|
|
if(!shouldExclude){
|
2017-05-16 23:26:46 -07:00
|
|
|
mkpath.sync(path.join(nativePath, fileName, '..'))
|
2017-05-17 14:44:46 -07:00
|
|
|
fs.writeFile(path.join(nativePath, fileName), zipEntries[i].getData())
|
2017-05-16 23:26:46 -07:00
|
|
|
}
|
2017-05-17 14:44:46 -07:00
|
|
|
|
|
|
|
}
|
2017-05-16 23:26:46 -07:00
|
|
|
|
|
|
|
cpArgs.push(to)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-08-26 11:43:24 -07:00
|
|
|
//BRUTEFORCE LIB INJECTION
|
|
|
|
//FOR TESTING ONLY
|
|
|
|
cpArgs.push(path.join(libPath, 'com', 'mumfrey', 'liteloader', '1.11.2-SNAPSHOT', 'liteloader-1.11.2-SNAPSHOT.jar'))
|
|
|
|
|
2017-05-21 15:06:48 -07:00
|
|
|
return cpArgs
|
2017-05-16 23:26:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
launchMinecraft
|
|
|
|
}
|