Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for Minecraft release 1.21.50-preview.20 #75

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions dye-brush/dye-brush.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import {
ActionTypes,
ColorPickerPropertyItemVariant,
CursorProperties,
CursorTargetMode,
IDropdownItem,
IModalTool,
Expand Down Expand Up @@ -138,6 +139,7 @@ interface DyeBrushStorage {
currentColor: EntityColor;
brushColor: IObservable<RGBA>;
brushSize: number;
backedUpCursorProps: CursorProperties | undefined;
}

type DyeBrushSession = IPlayerUISession<DyeBrushStorage>;
Expand All @@ -162,12 +164,11 @@ function addDyeBrushPane(uiSession: DyeBrushSession, tool: IModalTool) {

const pane = uiSession.createPropertyPane({
title: 'sample.dyeBrush.pane.title',
infoTooltip: { description: ['sample.dyebrush.tool.tooltip'] },
});

const entityBrush = makeObservable(EntityColor.White);

onColorUpdated(brushColor.value, uiSession);

pane.addDropdown(entityBrush, {
title: 'Brush',
entries: Object.values(EntityColor).reduce<IDropdownItem[]>((list, dye, index) => {
Expand Down Expand Up @@ -312,7 +313,15 @@ function addDyeBrushPane(uiSession: DyeBrushSession, tool: IModalTool) {

tool.onModalToolActivation.subscribe((evt: ModalToolLifecycleEventPayload) => {
if (evt.isActiveTool) {
if (uiSession.scratchStorage && !uiSession.scratchStorage.backedUpCursorProps) {
uiSession.scratchStorage.backedUpCursorProps = uiSession.extensionContext.cursor.getProperties();
}
onColorUpdated(brushColor.value, uiSession);
} else {
if (uiSession.scratchStorage && uiSession.scratchStorage.backedUpCursorProps) {
uiSession.extensionContext.cursor.setProperties(uiSession.scratchStorage.backedUpCursorProps);
uiSession.scratchStorage.backedUpCursorProps = undefined;
}
}
uiSession.scratchStorage?.previewSelection?.clear();
});
Expand Down Expand Up @@ -345,6 +354,7 @@ export function registerDyeBrushExtension() {
currentColor: EntityColor.White,
brushColor: makeObservable<RGBA>({ red: 1, green: 1, blue: 1, alpha: 0.5 }),
brushSize: 4,
backedUpCursorProps: undefined,
};
uiSession.scratchStorage = storage;

Expand Down
Binary file modified editor-samples.mceditoraddon
Binary file not shown.
2 changes: 1 addition & 1 deletion farm-generator/farm-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ function addFarmGeneratorTool(uiSession: IPlayerUISession) {
const toolToggleAction = uiSession.actionManager.createAction({
actionType: ActionTypes.NoArgsAction,
onExecute: () => {
uiSession.toolRail.setSelectedOptionId(tool.id, true);
uiSession.toolRail.setSelectedToolId(tool.id);
},
});

Expand Down
2 changes: 1 addition & 1 deletion portal-generator/portal-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class PortalGenerator implements IDisposable {
const toolToggleAction = uiSession.actionManager.createAction({
actionType: ActionTypes.NoArgsAction,
onExecute: () => {
uiSession.toolRail.setSelectedOptionId(tool.id, true);
uiSession.toolRail.setSelectedToolId(tool.id);
},
});

Expand Down
6 changes: 3 additions & 3 deletions simple-empty/SimpleEmptyTool.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Mojang AB. All rights reserved.

import {
EditorStatusBarAlignment,
IObservable,
IPlayerUISession,
ISimpleToolOptions,
Expand All @@ -12,6 +11,7 @@ import {
KeyboardKey,
SimpleToolStatusBarVisibility,
SimpleToolWrapper,
StatusBarAlignment,
bindDataSource,
makeObservable,
registerEditorExtension,
Expand Down Expand Up @@ -213,8 +213,8 @@ export class SimpleEmptyTool extends SimpleToolWrapper {
// only works if there's a ISimpleToolPropertyPane component added to the tool, otherwise it will be ignored and the
// status bar will always be visible.
const statusBarOptions: ISimpleToolStatusBarOptions = {
alignment: EditorStatusBarAlignment.Left,
displayAltText: 'Simple Empty Status',
alignment: StatusBarAlignment.Left,
text: 'Simple Empty Status',
size: 50,
visibility: SimpleToolStatusBarVisibility.VisibleWhenActive,
onFinalize: statusBar => {
Expand Down
44 changes: 25 additions & 19 deletions tree-generator/tree-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,43 +220,49 @@ export class SimpleTree implements ITree {
}
}

function createLeaf1Block(leafType: string): BlockPermutation {
return BlockPermutation.resolve(MinecraftBlockTypes.Leaves, {
old_leaf_type: leafType,
});
}

function createLeaf2Block(leafType: string): BlockPermutation {
return BlockPermutation.resolve(MinecraftBlockTypes.Leaves2, {
new_leaf_type: leafType,
});
}

const TreeTypes = [
{
name: 'Oak',
type: new SimpleTree(BlockPermutation.resolve(MinecraftBlockTypes.OakLog), createLeaf1Block('oak')),
type: new SimpleTree(
BlockPermutation.resolve(MinecraftBlockTypes.OakLog),
BlockPermutation.resolve(MinecraftBlockTypes.OakLeaves)
),
},
{
name: 'Spruce',
type: new SimpleTree(BlockPermutation.resolve(MinecraftBlockTypes.SpruceLog), createLeaf1Block('spruce')),
type: new SimpleTree(
BlockPermutation.resolve(MinecraftBlockTypes.SpruceLog),
BlockPermutation.resolve(MinecraftBlockTypes.SpruceLeaves)
),
},
{
name: 'Birch',
type: new SimpleTree(BlockPermutation.resolve(MinecraftBlockTypes.BirchLog), createLeaf1Block('birch')),
type: new SimpleTree(
BlockPermutation.resolve(MinecraftBlockTypes.BirchLog),
BlockPermutation.resolve(MinecraftBlockTypes.BirchLeaves)
),
},
{
name: 'Jungle',
type: new SimpleTree(BlockPermutation.resolve(MinecraftBlockTypes.JungleLog), createLeaf1Block('jungle')),
type: new SimpleTree(
BlockPermutation.resolve(MinecraftBlockTypes.JungleLog),
BlockPermutation.resolve(MinecraftBlockTypes.JungleLeaves)
),
},

{
name: 'Acacia',
type: new SimpleTree(BlockPermutation.resolve(MinecraftBlockTypes.AcaciaLog), createLeaf2Block('acacia')),
type: new SimpleTree(
BlockPermutation.resolve(MinecraftBlockTypes.AcaciaLog),
BlockPermutation.resolve(MinecraftBlockTypes.AcaciaLeaves)
),
},
{
name: 'Dark Oak',
type: new SimpleTree(BlockPermutation.resolve(MinecraftBlockTypes.DarkOakLog), createLeaf2Block('dark_oak')),
type: new SimpleTree(
BlockPermutation.resolve(MinecraftBlockTypes.DarkOakLog),
BlockPermutation.resolve(MinecraftBlockTypes.DarkOakLeaves)
),
},
];

Expand Down Expand Up @@ -392,7 +398,7 @@ function addTool(uiSession: IPlayerUISession) {
const toolToggleAction = uiSession.actionManager.createAction({
actionType: ActionTypes.NoArgsAction,
onExecute: () => {
uiSession.toolRail.setSelectedOptionId(tool.id, true);
uiSession.toolRail.setSelectedToolId(tool.id);
},
});

Expand Down