ATM9-Vocality/kubejs/client_scripts/observeGT.js
2024-06-13 23:34:56 -05:00

54 lines
2.7 KiB
JavaScript

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
const mapGTMachineIdToTaskId = {
"gtceu:electric_blast_furnace": "3F5D1730023562C7",
"gtceu:cleanroom": "3DA6D564BBFB1F50",
"gtceu:distillation_tower": "6DE94C2C7F4B9AC7",
"gtceu:pyrolyse_oven": "5FAE011B2417FAAA",
"gtceu:cracker": "04E3568175E66B6D",
"gtceu:vacuum_freezer": "7536DA5A948671F2",
"gtceu:large_chemical_reactor": "1038F300D9F8EF3C",
"gtceu:iv_processing_array": "188A83D9504A8470"
}
const $MetaMachine = Java.tryLoadClass('com.gregtechceu.gtceu.api.blockentity.MetaMachineBlockEntity')
const $MultiController = Java.tryLoadClass('com.gregtechceu.gtceu.api.machine.feature.multiblock.IMultiController')
const $CompoundTag = Java.tryLoadClass('net.minecraft.nbt.CompoundTag')
ClientEvents.tick(allthemods => {
if (Client.hitResult != null && Client.hitResult.getType() == 'BLOCK') {
let block = allthemods.level.getBlock(Client.hitResult.getBlockPos())
if (block && block.id.contains('gtceu')) {
let blockEntity = block.entity
// Multiblock handler
if (blockEntity && blockEntity instanceof $MetaMachine) {
// Multiblock is complete
if (blockEntity.metaMachine instanceof $MultiController) {
if (blockEntity.metaMachine.isFormed()) {
let taskString = mapGTMachineIdToTaskId[block.id]
if (taskString) {
let tag = new $CompoundTag()
tag.putString('task', taskString)
allthemods.player.sendData('customTask', tag)
}
}
}
}
}
}
})
NetworkEvents.dataReceived('customTask', allthemods => {
//const {entity, data, level} = event
//let taskString = data.task
//let task = FTBQuests.getObject(level, taskString)
//let playerQuestData = FTBQuests.getData(entity)
//if (task && playerQuestData && !playerQuestData.isCompleted(task) && playerQuestData.canStartTasks(task.quest)) {
// playerQuestData.addProgress(task, 1)
//}
})
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.