Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | 1x 1x 1x 1x 1x 41x 41x 1x 1x 3x 3x 3x 1x 3x 3x 3x 1x 9x 9x 9x 2x 32x 32x 32x 1x | import React from "react";
import styled, { css } from "styled-components";
import { TILE_SIZE } from "consts";
import { AUTOTILE_VARIANT_MASKS } from "shared/lib/tiles/sceneTilemapData";
import { AutotileType } from "shared/lib/resources/types";
const TileHint = styled.div`
position: absolute;
box-sizing: border-box;
pointer-events: none;
border-right: 1px solid ${(props) => props.theme.colors.highlightText};
border-bottom: 1px solid ${(props) => props.theme.colors.highlightText};
width: 8px;
height: 8px;
`;
const Connector = styled.div`
position: absolute;
pointer-events: none;
box-sizing: border-box;
background: #00e5ff;
width: 2px;
height: 2px;
`;
const Wrapper = styled.div<{ $type: AutotileType }>`
position: absolute;
outline: 1px solid ${(props) => props.theme.colors.highlight};
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 1);
${(props) =>
props.$type === "2x2" &&
css`
width: ${TILE_SIZE * 4}px;
height: ${TILE_SIZE * 4}px;
${TileHint}:nth-child(4n) {
border-right: 0;
}
${TileHint}:nth-child(n + 13) {
border-bottom: 0;
}
`}
${(props) =>
props.$type === "9slice" &&
css`
width: ${TILE_SIZE * 3}px;
height: ${TILE_SIZE * 3}px;
${TileHint}:nth-child(3n) {
border-right: 0;
}
${TileHint}:nth-child(n + 7) {
border-bottom: 0;
}
`}
`;
interface SceneAutotileSelectionProps {
tileIndex: number;
tilesetWidth: number;
type: AutotileType;
}
const SceneAutotileSelection = ({
tileIndex,
tilesetWidth,
type,
}: SceneAutotileSelectionProps) => {
const startX = tileIndex % tilesetWidth;
const startY = Math.floor(tileIndex / tilesetWidth);
if (type === "9slice") {
return (
<Wrapper
$type={type}
style={{
left: startX * TILE_SIZE,
top: startY * TILE_SIZE,
}}
>
{Array.from({ length: 9 }, (_, variant) => {
const xi = variant % 3;
const yi = Math.floor(variant / 3);
return (
<TileHint
key={variant}
data-autotile-9slice-variant={variant}
style={{
left: xi * TILE_SIZE,
top: yi * TILE_SIZE,
}}
>
{xi <= 1 && yi <= 1 && (
<Connector
style={{
right: 0,
bottom: 0,
}}
/>
)}
{xi >= 1 && yi <= 1 && (
<Connector
style={{
left: 0,
bottom: 0,
}}
/>
)}
{xi <= 1 && yi >= 1 && (
<Connector
style={{
right: 0,
top: 0,
}}
/>
)}
{xi >= 1 && yi >= 1 && (
<Connector
style={{
left: 0,
top: 0,
}}
/>
)}
</TileHint>
);
})}
</Wrapper>
);
}
return (
<Wrapper
$type={type}
style={{
left: startX * TILE_SIZE,
top: startY * TILE_SIZE,
}}
>
{AUTOTILE_VARIANT_MASKS.map((mask, variant) => {
const left = (variant % 4) * TILE_SIZE;
const top = Math.floor(variant / 4) * TILE_SIZE;
return (
<TileHint
key={mask}
data-autotile-mask={mask}
style={{
left,
top,
}}
>
{!!(mask & 1) && (
<Connector
style={{
left: 0,
top: 0,
}}
/>
)}
{!!(mask & 2) && (
<Connector
style={{
right: 0,
top: 0,
}}
/>
)}
{!!(mask & 4) && (
<Connector
style={{
right: 0,
bottom: 0,
}}
/>
)}
{!!(mask & 8) && (
<Connector
style={{
left: 0,
bottom: 0,
}}
/>
)}
</TileHint>
);
})}
</Wrapper>
);
};
export default SceneAutotileSelection;
|