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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | 42x 42x 42x 42x 42x 42x 2x 42x 2x 42x 34x 42x 42x 2x 42x 42x 63x 6x 57x 57x 25x 32x 2x 30x 9x 21x 21x 1x 20x 1x 19x 19x 5x 14x 2x 12x 42x 42x 316x 42x 315x 42x 42x 2x 2x 2x 1x 1x 42x | import { ensureTypeGenerator } from "shared/types"; export const valueAtomTypes = [ "number", "direction", "variable", "indirect", "constant", "property", "expression", "true", "false", ] as const; export type ValueAtomType = typeof valueAtomTypes[number]; export const constValueAtomTypes = ["number", "constant"] as const; export type ConstValueAtomType = typeof constValueAtomTypes[number]; export const valueOperatorTypes = [ "add", "sub", "mul", "div", "mod", "min", "max", "eq", "ne", "gt", "gte", "lt", "lte", "and", "or", "atan2", // Bitwise "shl", "shr", "bAND", "bOR", "bXOR", ] as const; export type ValueOperatorType = typeof valueOperatorTypes[number]; export const valueUnaryOperatorTypes = [ "rnd", "not", "isqrt", "abs", // Bitwise "bNOT", ] as const; export type ValueUnaryOperatorType = typeof valueUnaryOperatorTypes[number]; export type ValueType = | ValueAtomType | ValueOperatorType | ValueUnaryOperatorType; export const isValueAtomType = (type: unknown): type is ValueAtomType => valueAtomTypes.includes(type as ValueAtomType); export const isValueOperatorType = (type: unknown): type is ValueOperatorType => valueOperatorTypes.includes(type as ValueOperatorType); export const isValueUnaryOperatorType = ( type: unknown ): type is ValueUnaryOperatorType => valueUnaryOperatorTypes.includes(type as ValueUnaryOperatorType); const infixOperators = [ "add", "sub", "mul", "div", "mod", "eq", "ne", "gt", "gte", "lt", "lte", "and", "or", "shl", "shr", "bAND", "bOR", "bXOR", ]; export const isInfix = (type: ValueOperatorType) => infixOperators.includes(type); export type RPNUnaryOperation = { type: ValueUnaryOperatorType; value: ScriptValue; }; export type RPNOperation = { type: ValueOperatorType; valueA: ScriptValue; valueB: ScriptValue; }; export type ScriptValueAtom = | { type: "number"; value: number; } | { type: "variable"; value: string; } | { type: "constant"; value: string; } | { type: "direction"; value: string; } | { type: "indirect"; value: string; } | { type: "property"; target: string; property: string; } | { type: "expression"; value: string; } | { type: "true"; } | { type: "false"; }; export type ConstScriptValueAtom = | { type: "number"; value: number; } | { type: "constant"; value: string; }; export type ScriptValue = RPNOperation | RPNUnaryOperation | ScriptValueAtom; export type ConstScriptValue = ConstScriptValueAtom; export type ValueFunctionMenuItem = { value: ValueOperatorType; label: string; symbol: string; }; const validProperties = [ "xpos", "ypos", "pxpos", "pypos", "direction", "frame", ]; export const isScriptValue = (value: unknown): value is ScriptValue => { if (!value || typeof value !== "object") { return false; } const scriptValue = value as ScriptValue; // Is a number if (scriptValue.type === "number" && typeof scriptValue.value === "number") { return true; } // Is bool if (scriptValue.type === "true" || scriptValue.type === "false") { return true; } if ( scriptValue.type === "variable" && typeof scriptValue.value === "string" ) { return true; } Iif ( scriptValue.type === "constant" && typeof scriptValue.value === "string" ) { return true; } if ( scriptValue.type === "property" && typeof scriptValue.target === "string" && typeof scriptValue.property === "string" && validProperties.includes(scriptValue.property) ) { return true; } if ( scriptValue.type === "expression" && typeof scriptValue.value === "string" ) { return true; } Iif ( scriptValue.type === "direction" && typeof scriptValue.value === "string" ) { return true; } if ( isValueOperation(scriptValue) && (isScriptValue(scriptValue.valueA) || !scriptValue.valueA) && (isScriptValue(scriptValue.valueB) || !scriptValue.valueB) ) { return true; } if ( isUnaryOperation(scriptValue) && (isScriptValue(scriptValue.value) || !scriptValue.value) ) { return true; } return false; }; export const isConstScriptValue = ( value: unknown ): value is ConstScriptValue => { Iif (!value || typeof value !== "object") { return false; } const scriptValue = value as ConstScriptValue; // Is a number Iif (scriptValue.type === "number" && typeof scriptValue.value === "number") { return true; } // Is a constant Iif ( scriptValue.type === "constant" && typeof scriptValue.value === "string" ) { return true; } return false; }; export type ScriptValueFunction = ScriptValue & { type: ValueOperatorType }; export type ScriptValueUnaryOperation = ScriptValue & { type: ValueUnaryOperatorType; }; export const isUnaryOperation = ( value?: ScriptValue ): value is ScriptValueUnaryOperation => { return ( !!value && valueUnaryOperatorTypes.includes( value.type as unknown as ValueUnaryOperatorType ) ); }; export const isValueOperation = ( value?: ScriptValue ): value is ScriptValueFunction => { return ( !!value && valueOperatorTypes.includes(value.type as unknown as ValueOperatorType) ); }; export const isValueAtom = (value?: ScriptValue): value is ScriptValueAtom => { return ( !!value && valueAtomTypes.includes(value.type as unknown as ValueAtomType) ); }; export const isValueNumber = ( value: unknown ): value is { type: "number"; value: number; } => { Iif (!value || typeof value !== "object") { return false; } const scriptValue = value as ScriptValue; // Is a number if (scriptValue.type === "number" && typeof scriptValue.value === "number") { return true; } return false; }; export type PrecompiledValueFetch = { local: string; value: | { type: "property"; target: string; property: string; } | { type: "expression"; value: string; }; }; export type PrecompiledValueRPNOperation = | { type: "number"; value: number; } | { type: "constant"; value: string; } | { type: "variable"; value: string; } | { type: "direction"; value: string; } | { type: "indirect"; value: string; } | { type: "local"; value: string; } | { type: ValueOperatorType | ValueUnaryOperatorType; }; export const ensureScriptValue = ensureTypeGenerator(isScriptValue); |