repo
stringclasses
302 values
file_path
stringlengths
18
241
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
76
697k
tokens
int64
10
271k
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/ChunkLoader.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { Objects } from "engine/shared/fixes/Objects"; import { GameDefinitions } from "shared/data/GameDefinitions"; /** Generates terrain height */ export interface ChunkGenerator { getHeight(x: number, z: nu...
1,371
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/DefaultChunkGenerator.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { BB } from "engine/shared/fixes/BB"; import { TerrainDataInfo } from "shared/TerrainDataInfo"; import type { ChunkGenerator } from "client/terrain/ChunkLoader"; const baseplate = Workspace.WaitForChild("Obstacles").WaitForChild("Baseplate") as BasePart; const bb = B...
352
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/FlatTerrainRenderer.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { initLavaKillPlane } from "client/controller/KillPlane"; import { Element } from "engine/shared/Element"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { ChunkRenderer } from "client/terrain/ChunkLoader"; const parent = Element.create("F...
538
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/InfiniteTerrainActor.ts
roblox-ts
.ts
import { ReplicatedStorage, Workspace } from "@rbxts/services"; import { GameDefinitions } from "shared/data/GameDefinitions"; import { TerrainDataInfo } from "shared/TerrainDataInfo"; import type { ChunkGenerator } from "client/terrain/ChunkLoader"; const terrainData = TerrainDataInfo.data; const materialData: number...
3,329
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/TerrainChunkRenderer.ts
roblox-ts
.ts
import { ReplicatedFirst, Workspace } from "@rbxts/services"; import { ServiceIntegrityChecker } from "client/integrity/ServiceIntegrityChecker"; import type { ChunkGenerator, ChunkRenderer } from "client/terrain/ChunkLoader"; import type { InfiniteTerrainActor } from "client/terrain/InfiniteTerrainActor"; type config...
706
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/TriangleChunkRenderer.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { Element } from "engine/shared/Element"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { ChunkGenerator, ChunkRenderer } from "client/terrain/ChunkLoader"; type config = { readonly addSandBelowSeaLevel: boolean; readonly snowOnly: bool...
1,907
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/terrain/WaterTerrainChunkRenderer.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { ChunkRenderer } from "client/terrain/ChunkLoader"; export const WaterTerrainChunkRenderer = (): ChunkRenderer<true> => { const chunkSize = 16; const height = 400; const terrain = Workspace.WaitF...
630
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/test/ComponentDebugger.client.ts
roblox-ts
.ts
import { Players, RunService, UserInputService } from "@rbxts/services"; import { Control } from "engine/client/gui/Control"; import { Interface } from "engine/client/gui/Interface"; import { InputController } from "engine/client/InputController"; import { Component } from "engine/shared/component/Component"; import { ...
1,199
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tools/ToolBase.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { TooltipsHolder } from "client/gui/static/TooltipsControl"; import { Component } from "engine/shared/component/Component"; import { Objects } from "engine/shared/fixes/Objects"; import type { Tooltip } from "client/gui/static/TooltipsControl"; import type { BuildingMod...
424
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tools/additional/BlockEditor.ts
roblox-ts
.ts
import { ReplicatedStorage, RunService, UserInputService, Workspace } from "@rbxts/services"; import { TooltipsHolder } from "client/gui/static/TooltipsControl"; import { FloatingText } from "client/tools/additional/FloatingText"; import { MoveGrid, ScaleGrid } from "client/tools/additional/Grid"; import { RotateGrid }...
8,599
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tools/additional/FloatingText.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { InstanceComponent } from "engine/shared/component/InstanceComponent"; import { Element } from "engine/shared/Element"; import { ObservableValue } from "engine/shared/event/ObservableValue"; import { Colors } from "shared/Colors"; type FloatingTextDefinition = Billb...
474
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tools/highlighters/BoxSelector.ts
roblox-ts
.ts
import { Players, Workspace } from "@rbxts/services"; import { Interface } from "engine/client/gui/Interface"; import { InputController } from "engine/client/InputController"; import { Component } from "engine/shared/component/Component"; import { ArgsSignal } from "engine/shared/event/Signal"; import type { BlockSelec...
1,017
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tools/highlighters/HoveredPartHighlighter.ts
roblox-ts
.ts
import { GuiService, Players } from "@rbxts/services"; import { Signals } from "client/Signals"; import { Interface } from "engine/client/gui/Interface"; import { Component } from "engine/shared/component/Component"; import { ObservableValue } from "engine/shared/event/ObservableValue"; import { PlayerUtils } from "eng...
625
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tools/highlighters/MultiModelHighlighter.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { BlockGhoster } from "client/tools/additional/BlockGhoster"; import { Component } from "engine/shared/component/Component"; import { Element } from "engine/shared/Element"; import type { ReadonlyObservableValue } from "engine/shared/event/ObservableValue"; const mod...
393
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tutorial2/TutorialController.ts
roblox-ts
.ts
import { ContextActionService } from "@rbxts/services"; import { LabelControl } from "client/gui/controls/LabelControl"; import { ScaledScreenGui } from "client/gui/ScaledScreenGui"; import { ServiceIntegrityChecker } from "client/integrity/ServiceIntegrityChecker"; import { Control } from "engine/client/gui/Control"; ...
3,325
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/client/tutorial2/tutorials/TestTutorial.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { MultiBlockConfigControl } from "client/gui/BlockConfigControls"; import { ConfirmPopup } from "client/gui/popup/ConfirmPopup"; import { ScaledScreenGui } from "client/gui/ScaledScreenGui"; import { Element } from "engine/shared/Element"; import { RocketBlocks } fro...
3,866
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/client/Keybinds.ts
roblox-ts
.ts
import { ContextActionService, UserInputService } from "@rbxts/services"; import { ObservableMap } from "engine/shared/event/ObservableMap"; import { ObservableValue } from "engine/shared/event/ObservableValue"; import { Signal } from "engine/shared/event/Signal"; import { Keys } from "engine/shared/fixes/Keys"; type ...
1,089
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/client/PlayerInventory.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { LocalPlayer } from "engine/client/LocalPlayer"; import { ComponentKeyedChildren } from "engine/shared/component/ComponentKeyedChildren"; import { HostedService } from "engine/shared/di/HostedService"; import type { PlayerInventoryItem } from "engine/client/PlayerInven...
390
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/client/event/InputHandler.ts
roblox-ts
.ts
import { UserInputService } from "@rbxts/services"; import { GlobalInputHandler } from "engine/client/event/GlobalInputHandler"; import { ThinSignalWrapper } from "engine/client/event/SignalWrapper"; import type { ISignalWrapper } from "engine/client/event/SignalWrapper"; type InputCallback = (input: InputObject) => v...
1,433
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/client/gui/ButtonComponent.ts
roblox-ts
.ts
import { ReplicatedStorage, ContentProvider } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { Element } from "engine/shared/Element"; import { ArgsSignal } from "engine/shared/event/Signal"; import type { ButtonDefinition } from "engine/client/gui/Button"; import type { I...
237
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/client/gui/TooltipComponent.ts
roblox-ts
.ts
import { Players, RunService, UserInputService } from "@rbxts/services"; import { ServiceIntegrityChecker } from "client/integrity/ServiceIntegrityChecker"; import { AutoUIScaledComponent } from "engine/client/gui/AutoUIScaledControl"; import { Control } from "engine/client/gui/Control"; import { Interface } from "engi...
1,151
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/server/backend/DataStoreDatabaseBackend.ts
roblox-ts
.ts
import { DataStoreService } from "@rbxts/services"; import { formatDatabaseBackendKeys } from "engine/server/backend/DatabaseBackend"; import { Element } from "engine/shared/Element"; import { JSON } from "engine/shared/fixes/Json"; import type { DatabaseBackend } from "engine/server/backend/DatabaseBackend"; const ge...
264
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/shared/BlockDamageController.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { HostedService } from "engine/shared/di/HostedService"; import { BlockManager } from "shared/building/BlockManager"; import { RemoteEvents } from "shared/RemoteEvents"; import { TagUtils } from "shared/utils/TagUtils"; import type { PlayerDataStorage } from "client/...
1,908
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/shared/Switches.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { ObservableValue } from "engine/shared/event/ObservableValue"; import { C2S2CRemoteFunction } from "engine/shared/event/PERemoteEvent"; import { PlayerRank } from "engine/shared/PlayerRank"; @injectable export class Switches { private readonly setSwitch =...
339
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/engine/shared/component/Transform.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import type { EasingDirection, EasingStyle } from "engine/shared/component/Easing"; export interface Transform { /** @returns True if completed */ runFrame(time: number): boolean | TransformBuilder; /** Imm...
917
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/AchievementList.ts
roblox-ts
.ts
import { Players, RunService, UserInputService, Workspace } from "@rbxts/services"; import { Achievement } from "server/Achievement"; import { LogicOverclockBlock } from "shared/blocks/blocks/LogicOverclockBlock"; import { LuaCircuitBlock } from "shared/blocks/blocks/LuaCircuitBlock"; import { BlockManager } from "shar...
7,131
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/BadgeController.ts
roblox-ts
.ts
import { BadgeService } from "@rbxts/services"; import { HostedService } from "engine/shared/di/HostedService"; import { PlayerWatcher } from "engine/shared/PlayerWatcher"; @injectable export class BadgeController extends HostedService { // Updated for 10/21/2025 private readonly placeId = 116247414183109; private ...
247
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/ServerEffectCreator.ts
roblox-ts
.ts
import { HostedService } from "engine/shared/di/HostedService"; import { BidirectionalRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { PlayerConfigDefinition } from "shared/config/PlayerConfig"; import type { CreatableRemoteEvents } from "engine/shared/event/PERemoteEvent"; import type { PlayerDatabase ...
554
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/ServerPlayerDataRemotesController.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { ComponentInstance } from "engine/shared/component/ComponentInstance"; import { Element } from "engine/shared/Element"; import { PlayerDataController } from "server/PlayerDataController"; import { PlayerDat...
361
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/SpreadingFireController.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { LocalInstanceData } from "engine/shared/LocalInstanceData"; import { ServerPartUtils } from "server/plots/ServerPartUtils"; import { BlockManager } from "shared/building/BlockManager"; import { GameDefinitions } from "shared/data/GameDefinitions"; import { CustomRem...
572
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/UsernameGuiController.ts
roblox-ts
.ts
import { ReplicatedStorage } from "@rbxts/services"; import { HostedService } from "engine/shared/di/HostedService"; import { PlayerRank } from "engine/shared/PlayerRank"; import { PlayerWatcher } from "engine/shared/PlayerWatcher"; export class UsernameGuiController extends HostedService { constructor() { super();...
293
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/blocks/ServerBlockLogic.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { SharedPlots } from "shared/building/SharedPlots"; import type { PlayModeController } from "server/modes/PlayModeController"; import type { GenericBlockLogicCtor } from "shared/blockLogic/BlockLogic"; export abstract class ServerBlockLogic<T extends GenericBlockLogi...
483
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/blocks/logic/ButtonServerLogic.ts
roblox-ts
.ts
import { TextService } from "@rbxts/services"; import { ServerBlockLogic } from "server/blocks/ServerBlockLogic"; import { ButtonBlock } from "shared/blocks/blocks/ButtonBlock"; import type { PlayModeController } from "server/modes/PlayModeController"; import type { ButtonBlockLogic } from "shared/blocks/blocks/ButtonB...
224
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/blocks/logic/ScreenServerLogic.ts
roblox-ts
.ts
import { TextService } from "@rbxts/services"; import { ServerBlockLogic } from "server/blocks/ServerBlockLogic"; import { ScreenBlock } from "shared/blocks/blocks/ScreenBlock"; import type { PlayModeController } from "server/modes/PlayModeController"; import type { ScreenBlockLogic } from "shared/blocks/blocks/ScreenB...
290
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/database/PlayerDatabase.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { Db } from "engine/server/Database"; import { t } from "engine/shared/t"; import { PlayerConfigUpdater } from "server/PlayerConfigVersioning"; import type { DatabaseBackend } from "engine/server/backend/DatabaseBackend"; import type { AchievementData } from "shared/Ach...
478
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/database/SlotDatabase.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { Db } from "engine/server/Database"; import { BlocksSerializer } from "shared/building/BlocksSerializer"; import { GameDefinitions } from "shared/data/GameDefinitions"; import { SlotsMeta } from "shared/SlotsMeta"; import type { DatabaseBackend } from "engine/server/ba...
1,023
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/network/event/UnreliableRemoteHandler.ts
roblox-ts
.ts
import { Players, RunService, Workspace } from "@rbxts/services"; import { HostedService } from "engine/shared/di/HostedService"; import { ServerBlockLogic } from "server/blocks/ServerBlockLogic"; import { ServerPartUtils } from "server/plots/ServerPartUtils"; import { BlockManager } from "shared/building/BlockManager"...
1,167
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/server/plots/PlotsFloatingImageController.ts
roblox-ts
.ts
import { Players, ReplicatedStorage } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { ComponentChild } from "engine/shared/component/ComponentChild"; import { InstanceComponent } from "engine/shared/component/InstanceComponent"; import { PlayerRank } from "engine/shared/P...
456
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/block/impact/ImpactController.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { Objects } from "engine/shared/fixes/Objects"; import { BlockManager } from "shared/building/BlockManager"; import { Physics } from "shared/Physics"; import { TagUtils } from "shared/utils/TagUt...
846
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/AltimeterBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/...
278
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/AngleSensorBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/blockLogic/BlockLogic"; import type { BlockBuilder } from "shar...
350
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/BackMountBlock.ts
roblox-ts
.ts
import { Players, RunService, UserInputService, Workspace } from "@rbxts/services"; import { EventHandler } from "engine/shared/event/EventHandler"; import { A2SRemoteEvent, S2CRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { t } from "engine/shared/t"; import { InstanceBlockLogic } from "shared/blockLo...
2,318
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/BeaconBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { A2SRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { Colors } from "shared/Colors"; import { GameDefinitions } from "share...
1,281
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/BearingShaftBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/blockLogic/BlockLogic"; import type { BlockBuilder } from "shar...
370
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/ButtonBlock.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { EventHandler } from "engine/shared/event/EventHandler"; import { A2OCRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { Instances } from "engine/shared/fixes/Instances"; import { t } from "engine/shared/t"; import { InstanceBlockLogic } from ...
1,805
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/CameraBlock.ts
roblox-ts
.ts
import { Lighting, Players, RunService, UserInputService, Workspace } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { Element } from "engine/shared/Element"; import { ObservableValue } from "engine/shared/event/ObservableValue"; import { A2SRemoteEvent } from "engine/shar...
1,802
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/ChatSensorBlock.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { TextChatService } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicArgs, BlockLogicFullBothDefinitions } from "shared/blockLogic/BlockLogic"; import ...
680
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/DisconnectBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { A2SRemoteEvent, S2CRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { InstanceBlockLogic as InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefiniti...
663
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/FunctionBlock.ts
roblox-ts
.ts
import { ReplicatedStorage } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicArgs, BlockLogicFullBothDefinitions } from "shared/blockLogic/BlockLogic"; import type { BlockBuilder } from "shared/blocks...
984
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/GPSSensorBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/...
320
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/GravitySensorBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { Physics } from "shared/Physics"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/blockLogic/BlockLogic...
278
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/HeliumBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared/building/BlockManager"; import { GameEnvironment } from "shared/data/GameEnvironment"; import { Physics } fro...
581
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/JetEngineBlocks.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared/building/BlockManager"; import { Physics } from "shared/Physics"; import type { BlockLogicFullBothDefinitions...
1,652
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/KeyboardBlock.ts
roblox-ts
.ts
import { ContextActionService, RunService } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared/building/BlockManager"; import type { BlockLogicArgs, BlockLogicFullBothDefinitions } from "sha...
809
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/LaserBlock.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { InstanceBlockLogic as InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/blockLogic/BlockLogic"; import type { Bloc...
2,404
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/LedDisplayBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { A2SRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { InstanceBlockLogic as InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, InstanceBlo...
1,202
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/LuaCircuitBlock.ts
roblox-ts
.ts
import { ReplicatedStorage } from "@rbxts/services"; import { Colors } from "engine/shared/Colors"; import { Objects } from "engine/shared/fixes/Objects"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { LogControl } from "client/gui/s...
2,686
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/MagnetBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared/building/BlockManager"; import { PartUtils } from "shared/utils/PartUtils"; import type { BlockLogicFullBothD...
1,304
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/MotorBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { t } from "engine/shared/t"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockSynchronizer } from "shared/blockLogic/BlockSynchronizer"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared...
1,658
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/MouseSensorBlock.ts
roblox-ts
.ts
import { Players, RunService, UserInputService, Workspace } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { BlockLogicArgs, BlockLogicFullBothDefin...
698
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/OwnerCameraLocatorBlock.ts
roblox-ts
.ts
import { RunService, Workspace } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { GameDefinitions } from "shared/data/GameDefinitions"; import type { BlockLogicArgs, BlockLogicFullBothDefinitions } from "shared/block...
379
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/OwnerLocatorBlock.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/blockLogic/BlockLogic"; import type { BlockBuilder } f...
497
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/PingSensor.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicArgs, BlockLogicFullBothDefinitions } from "shared/blockLogic/BlockLogic"; import type { BlockBuilder } from "shared/blocks/Block"; ...
265
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/RCSEngineBlock.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared/building/BlockManager"; import { Colors } from "shared/Colors"; import { Sound } from "shared/Sound"; import {...
2,129
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/RadarSectionBlock.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { t } from "engine/shared/t"; import { InstanceBlockLogic as InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockSynchronizer } from "shared/blockLogic/BlockSynchronizer"; import { BlockCreation } from "shared/blocks/BlockCreation"; impor...
2,390
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/RadarWarningReceiver.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { InstanceBlockLogic as InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { SharedPlots } from "shared/building/SharedPlots"; import { CustomRemotes } from "shared/Remotes"; import {...
892
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/SpeedometerBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, InstanceBlockLogicArgs } from "shared/blockLogic/BlockLogic"; import type { BlockBuilder } from "shar...
495
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/VehicleSeatBlock.ts
roblox-ts
.ts
import { RunService, Players } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, BlockLogicTickContext, InstanceBlockLogicArgs, } from "shared/blockLogic/BlockLogic"; imp...
566
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/Weaponry/Cannon/CannonBreechBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { CannonBases } from "shared/blocks/blocks/Weaponry/Cannon/CannonBases"; import { Colors } from "shared/Colors"; import { ShellProjectile }...
901
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/Weaponry/Laser/LaserEmitterBlock.ts
roblox-ts
.ts
import { Players, RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { Colors } from "shared/Colors"; import { LaserProjectile } from "shared/weaponProjectiles/LaserProjectileLogic"; import { WeaponM...
948
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/Weaponry/Machinegun/MachineGunLoaderBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { MachineGunAmmoBlocks } from "shared/blocks/blocks/Weaponry/Machinegun/MachineGunAmmoBlocks"; import { MachineGunBarrels } from "shared/bl...
983
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/Weaponry/Plasma/PlasmaGunBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { Colors } from "shared/Colors"; import { PlasmaProjectile } from "shared/weaponProjectiles/PlasmaProjectileLogic"; import { WeaponModule }...
882
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/grouped/PassengerSeatBlocks.ts
roblox-ts
.ts
import { Players } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import type { BlockLogicFullBothDefinitions, BlockLogicTickContext, InstanceBlockLogicArgs, } from "shared/blockLogic/BlockLogic"; import type { B...
568
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/grouped/ProximityBlocks.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { ArgsSignal } from "engine/shared/event/Signal"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { BlockManager } from "shared/building/BlockManager"; import type { BlockLogicFull...
1,783
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/grouped/WingsBlocks.ts
roblox-ts
.ts
import { RunService, Workspace } from "@rbxts/services"; import { InstanceBlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { GameDefinitions } from "shared/data/GameDefinitions"; import { GameEnvironment } from "shared/data/GameEnvironment"; import ty...
1,972
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/gui/GuiButtonBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { Colors } from "engine/shared/Colors"; import { Component } from "engine/shared/component/Component"; import { Element } from "engine/shared/Element"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockConfigDefinitions } from "shared/blocks/Bl...
1,907
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/gui/GuiImageBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { Colors } from "engine/shared/Colors"; import { Component } from "engine/shared/component/Component"; import { Element } from "engine/shared/Element"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreati...
1,519
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/gui/GuiStatBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockCreation } from "shared/blocks/BlockCreation"; import { dataToString } from "shared/blocks/blocks/ScreenBlock"; import type { RideMode } from "client/modes/ride/RideMode"; import type { BlockLogicArgs,...
486
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/blocks/blocks/gui/GuiTextBlock.ts
roblox-ts
.ts
import { RunService } from "@rbxts/services"; import { Colors } from "engine/shared/Colors"; import { Component } from "engine/shared/component/Component"; import { Element } from "engine/shared/Element"; import { BlockLogic } from "shared/blockLogic/BlockLogic"; import { BlockConfigDefinitions } from "shared/blocks/Bl...
1,866
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/building/PlotWelder.ts
roblox-ts
.ts
import { RunService, ServerStorage, Workspace } from "@rbxts/services"; import { Component } from "engine/shared/component/Component"; import { ComponentInstance } from "engine/shared/component/ComponentInstance"; import { Objects } from "engine/shared/fixes/Objects"; import { BlockManager } from "shared/building/Block...
2,237
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/building/SharedPlot.ts
roblox-ts
.ts
import { RunService, Workspace } from "@rbxts/services"; import { InstanceComponent } from "engine/shared/component/InstanceComponent"; import { Signal } from "engine/shared/event/Signal"; import { BB } from "engine/shared/fixes/BB"; import { BlockManager } from "shared/building/BlockManager"; const getPlotBuildingReg...
898
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/building/SharedPlots.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { SharedPlot } from "shared/building/SharedPlot"; const plotsFolder = Workspace.WaitForChild("Plots"); const count = plotsFolder.GetAttribute("count") as number | undefined; if (plotsFolder.GetChildren().size() !== count) { print( `!! Target plot count ${count} i...
663
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/effects/ExplosionEffect.ts
roblox-ts
.ts
import { Debris, ReplicatedStorage } from "@rbxts/services"; import { EffectBase } from "shared/effects/EffectBase"; import type { EffectCreator } from "shared/effects/EffectBase"; ReplicatedStorage.WaitForChild("Assets"); type Args = { readonly part: BasePart; readonly index?: number; }; @injectable export class E...
293
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/effects/FireEffect.ts
roblox-ts
.ts
import { Debris, ReplicatedStorage } from "@rbxts/services"; import { EffectBase } from "shared/effects/EffectBase"; import type { EffectCreator } from "shared/effects/EffectBase"; type Args = { readonly part: BasePart; readonly duration?: number; }; @injectable export class FireEffect extends EffectBase<Args> { co...
221
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/effects/ImpactSoundEffect.ts
roblox-ts
.ts
import { Debris, ReplicatedStorage, Workspace } from "@rbxts/services"; import { EffectBase } from "shared/effects/EffectBase"; import { Sound } from "shared/Sound"; import type { EffectCreator } from "shared/effects/EffectBase"; ReplicatedStorage.WaitForChild("Assets"); type Args = { readonly blocks: readonly BaseP...
400
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/effects/SparksEffect.ts
roblox-ts
.ts
import { Debris, ReplicatedStorage } from "@rbxts/services"; import { EffectBase } from "shared/effects/EffectBase"; import type { EffectCreator } from "shared/effects/EffectBase"; type Args = { readonly part: BasePart; }; @injectable export class SparksEffect extends EffectBase<Args> { constructor(@inject creator: ...
152
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/weaponProjectiles/BaseProjectileLogic.ts
roblox-ts
.ts
import { RunService, Workspace } from "@rbxts/services"; import { InstanceComponent } from "engine/shared/component/InstanceComponent"; import { C2SRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { ReplicatedAssets } from "shared/ReplicatedAssets"; import { ModuleCollection } from "shared/weaponProjectil...
1,474
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/weaponProjectiles/LaserProjectileLogic.ts
roblox-ts
.ts
import { Players, Workspace } from "@rbxts/services"; import { C2CRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { WeaponProjectile } from "shared/weaponProjectiles/BaseProjectileLogic"; import type { baseWeaponProjectile, projectileModifier } from "shared/weaponProjectiles/BaseProjectileLogic"; type l...
992
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/weaponProjectiles/PlasmaProjectileLogic.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { Easing } from "engine/shared/component/Easing"; import { C2CRemoteEvent } from "engine/shared/event/PERemoteEvent"; import { WeaponProjectile } from "shared/weaponProjectiles/BaseProjectileLogic"; import type { modifierValue, projectileModifier } from "shared/weapon...
830
anywaymachines/overengineered
anywaymachines-overengineered-d872be4/src/shared/weaponProjectiles/WeaponModuleSystem.ts
roblox-ts
.ts
import { Workspace } from "@rbxts/services"; import { HostedService } from "engine/shared/di/HostedService"; import { BlockManager } from "shared/building/BlockManager"; import type { SharedPlots } from "shared/building/SharedPlots"; import type { modifierValue, projectileModifier } from "shared/weaponProjectiles/BaseP...
2,683
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/plugin/src/log.lua
luau
.lua
_G.EELogs = _G.EELogs or {} local function log(...) if _G.EELogs == nil then _G.EELogs = {} end table.insert(_G.EELogs, ...) end return log
53
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/sandbox/inject.luau
luau
.luau
local fs = require("@lune/fs") local roblox = require("@lune/roblox") local localGame = roblox.deserializePlace(fs.readFile("out/place.rbxl")) local upstreamGame = roblox.deserializePlace(fs.readFile("sandbox/upstream.rbxl")) for _, item in ipairs(upstreamGame.Workspace:GetChildren()) do if item.Name == "Terrain"...
149
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/App.story.tsx
roblox-ts
.tsx
import React, { useEffect } from "@rbxts/react"; import ReactRoblox from "@rbxts/react-roblox"; import { CreateReactStory } from "@rbxts/ui-labs"; import App from "client/components/App"; import { questState } from "client/components/quest/QuestState"; import StoryMocking from "client/components/StoryMocking"; import {...
219
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/App.tsx
roblox-ts
.tsx
/// <reference types="@rbxts/types/plugin" /> import React, { Fragment, useEffect } from "@rbxts/react"; import { createRoot, Root } from "@rbxts/react-roblox"; import { ContentProvider, RunService, StarterGui, Workspace } from "@rbxts/services"; import BackpackWindow from "client/components/backpack/BackpackWindow"; i...
2,797
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/AppStories.storybook.ts
roblox-ts
.ts
import { Storybook } from "@rbxts/ui-labs"; const storybook: Storybook = { name: "Stories", storyRoots: [script.Parent!], }; export = storybook;
44
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/IconButton.tsx
roblox-ts
.tsx
import React, { InstanceProps, memo, useEffect, useRef } from "@rbxts/react"; import { TweenService } from "@rbxts/services"; import useHover from "client/hooks/useHover"; interface IconButtonProps { image: string; onClick?: () => void; onEnter?: () => void; onLeave?: () => void; buttonProps?: Inst...
366
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/LoadingScreen.story.tsx
roblox-ts
.tsx
import React, { Fragment, useEffect, useState } from "@rbxts/react"; import ReactRoblox from "@rbxts/react-roblox"; import { StarterGui } from "@rbxts/services"; import { CreateReactStory } from "@rbxts/ui-labs"; import LoadingScreen from "sharedfirst/LoadingScreen"; export = CreateReactStory( { react: Rea...
265
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/backpack/BackpackWindow.story.tsx
roblox-ts
.tsx
import React, { StrictMode, useEffect, useState } from "@rbxts/react"; import ReactRoblox from "@rbxts/react-roblox"; import { Workspace } from "@rbxts/services"; import { CreateReactStory } from "@rbxts/ui-labs"; import BackpackWindow from "client/components/backpack/BackpackWindow"; import HarvestableGuiRenderer from...
559
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/backpack/BackpackWindow.tsx
roblox-ts
.tsx
/** * @fileoverview Main backpack window React component * * Displays the player's tool inventory with hotkey numbers and selection states. * Manages visibility based on adaptive tab and build mode states. */ import { loadAnimation } from "@antivivi/vrldk"; import React, { JSX, useEffect, useRef, useState } from ...
2,241
evilbocchi/eternal-empire
evilbocchi-eternal-empire-4a38651/src/client/components/backpack/GearOption.tsx
roblox-ts
.tsx
/** * @fileoverview Tool option button component for the backpack system * * A styled button component representing a tool in the player's backpack. * Displays tool icon, hotkey number, and handles selection state visualization. */ import React, { memo, useEffect, useRef } from "@rbxts/react"; import { TweenServi...
1,125