41 lines
1.6 KiB
JavaScript
41 lines
1.6 KiB
JavaScript
import { Command } from '../classes/Commands/Command';
|
|
import { CustomCommandParamType, CustomCommandStatus, CommandPermissionLevel, system } from '@minecraft/server';
|
|
import { structureCollection } from '../classes/Structure/StructureCollection';
|
|
|
|
export class ActiveCommand extends Command {
|
|
constructor() {
|
|
super({
|
|
name: 'active',
|
|
description: 'construct.commands.active',
|
|
mandatoryParameters: [
|
|
{ name: 'instanceName', type: CustomCommandParamType.String },
|
|
{ name: 'state', type: CustomCommandParamType.Boolean }
|
|
],
|
|
permissionLevel: CommandPermissionLevel.Any,
|
|
callback: (source, instanceName, state) => this.run(source, instanceName, state)
|
|
});
|
|
}
|
|
|
|
run(source, instanceName, state) {
|
|
const instance = structureCollection.get(instanceName);
|
|
if (state && !instance.hasLocation()) {
|
|
source.sendMessage({ translate: 'construct.commands.error.noLocation', with: [instanceName] });
|
|
return void 0;
|
|
}
|
|
system.run(() => {
|
|
if (state)
|
|
instance.enable();
|
|
else
|
|
instance.disable();
|
|
this.sendFeedback(source, instanceName, state);
|
|
});
|
|
return { status: CustomCommandStatus.Success };
|
|
}
|
|
|
|
sendFeedback(source, instanceName, state) {
|
|
source.sendMessage({ translate: state ? 'construct.commands.active.true' : 'construct.commands.active.false', with: [instanceName] });
|
|
}
|
|
}
|
|
|
|
export const activeCommand = new ActiveCommand();
|