Compare commits
7 commits
5a8c554bf1
...
2414ae1189
Author | SHA1 | Date | |
---|---|---|---|
2414ae1189 | |||
079af9709f | |||
057efc9a8c | |||
2a78f33239 | |||
d21682999c | |||
af03368656 | |||
c258363a03 |
18 changed files with 435 additions and 199 deletions
|
@ -38,11 +38,11 @@
|
|||
"@rbxts/make": "^1.0.6",
|
||||
"@rbxts/matter": "^0.6.2-ts.6",
|
||||
"@rbxts/plasma": "^0.4.1-ts.1",
|
||||
"@rbxts/pretty-roact-hooks": "^3.1.1",
|
||||
"@rbxts/reflex": "^4.2.0",
|
||||
"@rbxts/rewire": "^0.3.0",
|
||||
"@rbxts/roact": "^1.4.4-ts.0",
|
||||
"@rbxts/roact-hooked": "^2.6.0",
|
||||
"@rbxts/roact-hooked-plus": "^1.8.1",
|
||||
"@rbxts/roact-reflex": "^2.1.0",
|
||||
"@rbxts/services": "^1.5.1",
|
||||
"@rbxts/testez": "^0.4.2-ts.0",
|
||||
|
|
|
@ -16,7 +16,8 @@ I should put this in the game sometime, but the option to open the configuration
|
|||
* I decided to omit the "TS" folder from [`./default.project.json:40`](./default.project.json) due to the script override not working in Health.server.ts in StarterCharacterScripts.
|
||||
|
||||
# Todo
|
||||
* Better null checking for the clientState.character (can cause errors atm)
|
||||
* Investigate why our hotbar only loads _sometimes_
|
||||
* Maybe swap to our input system in the UI.
|
||||
* Custom player list
|
||||
* Custom chat
|
||||
* Add guns
|
||||
|
|
|
@ -10,29 +10,29 @@ import { InputKind } from "ReplicatedStorage/inputKind"
|
|||
export class ClientState {
|
||||
constructor(
|
||||
player: Player,
|
||||
character: CharacterRigR6,
|
||||
debugEnabled: boolean,
|
||||
isRunning: boolean,
|
||||
backpack: Backpack,
|
||||
// lastProcessedCommand: Inputkind,
|
||||
backpack: Instance,
|
||||
// character?: CharacterRigR6,
|
||||
// lastProcessedCommand?: Inputkind,
|
||||
|
||||
logger: Logger
|
||||
) {
|
||||
this.character = character
|
||||
this.player = player
|
||||
this.debugEnabled = debugEnabled
|
||||
this.isRunning = isRunning
|
||||
this.backpack = backpack
|
||||
// this.character = character
|
||||
// this.lastProcessedCommand = lastProcessedCommand
|
||||
|
||||
this.logger = logger
|
||||
}
|
||||
|
||||
player: Player
|
||||
character: CharacterRigR6
|
||||
debugEnabled: boolean
|
||||
isRunning: boolean
|
||||
backpack: Backpack
|
||||
backpack: Instance
|
||||
character?: CharacterRigR6
|
||||
lastProcessedCommand?: InputKind
|
||||
|
||||
logger: Logger
|
||||
|
|
|
@ -3,6 +3,8 @@ import { match } from "@rbxts/variant"
|
|||
import { ClientState } from "ReplicatedStorage/ecs/state"
|
||||
|
||||
function sprint(_: World, client: ClientState): void {
|
||||
if (client.character === undefined) return
|
||||
|
||||
if (client.lastProcessedCommand !== undefined) {
|
||||
match(client.lastProcessedCommand, {
|
||||
KeyDown: ({ key }) => {
|
||||
|
|
59
src/ReplicatedStorage/ui/components/canvas.tsx
Normal file
59
src/ReplicatedStorage/ui/components/canvas.tsx
Normal file
|
@ -0,0 +1,59 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import { BindingOrValue, mapBinding } from "ReplicatedStorage/utils/bindingUtil"
|
||||
|
||||
interface canvasProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
size?: BindingOrValue<UDim2>
|
||||
position?: BindingOrValue<UDim2>
|
||||
anchor?: Vector2
|
||||
padding?: {
|
||||
top?: BindingOrValue<number>
|
||||
right?: BindingOrValue<number>
|
||||
bottom?: BindingOrValue<number>
|
||||
left?: BindingOrValue<number>
|
||||
}
|
||||
clipsDescendants?: boolean
|
||||
zIndex?: number
|
||||
[Roact.Children]?: Roact.Children
|
||||
|
||||
Event?: Roact.JsxInstanceEvents<Frame>
|
||||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
function canvas(props: canvasProps): Roact.Element {
|
||||
const { size, position, anchor, padding, clipsDescendants, zIndex } = props
|
||||
|
||||
const spreadableProps = { ...props } as Partial<canvasProps>
|
||||
delete spreadableProps.size
|
||||
delete spreadableProps.position
|
||||
delete spreadableProps.anchor
|
||||
delete spreadableProps.padding
|
||||
delete spreadableProps.clipsDescendants
|
||||
delete spreadableProps.zIndex
|
||||
delete spreadableProps[Roact.Children]
|
||||
|
||||
return (
|
||||
<frame
|
||||
{...spreadableProps}
|
||||
Size={size !== undefined ? size : new UDim2(1, 0, 1, 0)}
|
||||
Position={position !== undefined ? position : new UDim2(0, 0, 0, 0)}
|
||||
AnchorPoint={anchor}
|
||||
ClipsDescendants={clipsDescendants}
|
||||
BackgroundTransparency={1}
|
||||
ZIndex={zIndex}
|
||||
>
|
||||
{padding !== undefined && (
|
||||
<uipadding
|
||||
Key="padding"
|
||||
PaddingTop={mapBinding(padding.top, (px) => new UDim(0, px))}
|
||||
PaddingRight={mapBinding(padding.right, (px) => new UDim(0, px))}
|
||||
PaddingBottom={mapBinding(padding.bottom, (px) => new UDim(0, px))}
|
||||
PaddingLeft={mapBinding(padding.left, (px) => new UDim(0, px))}
|
||||
/>
|
||||
)}
|
||||
|
||||
{props[Roact.Children]}
|
||||
</frame>
|
||||
)
|
||||
}
|
||||
|
||||
export default canvas
|
42
src/ReplicatedStorage/ui/components/fill.tsx
Normal file
42
src/ReplicatedStorage/ui/components/fill.tsx
Normal file
|
@ -0,0 +1,42 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import { BindingOrValue, mapBinding } from "ReplicatedStorage/utils/bindingUtil"
|
||||
|
||||
interface fillProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
color?: BindingOrValue<Color3>
|
||||
transparency?: BindingOrValue<number>
|
||||
radius?: BindingOrValue<number | "circular">
|
||||
[Roact.Children]?: Roact.Children
|
||||
|
||||
Event?: Roact.JsxInstanceEvents<Frame>
|
||||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
function fill(props: fillProps): Roact.Element {
|
||||
const { color, transparency, radius } = props
|
||||
|
||||
const spreadableProps = { ...props } as Partial<fillProps>
|
||||
delete spreadableProps.color
|
||||
delete spreadableProps.transparency
|
||||
delete spreadableProps.radius
|
||||
delete spreadableProps[Roact.Children]
|
||||
|
||||
return (
|
||||
<frame
|
||||
{...spreadableProps}
|
||||
BackgroundColor3={color}
|
||||
BackgroundTransparency={transparency}
|
||||
Size={new UDim2(1, 0, 1, 0)}
|
||||
>
|
||||
{radius !== undefined && (
|
||||
<uicorner
|
||||
Key={"corner"}
|
||||
CornerRadius={mapBinding(radius, (r) => (r === "circular" ? new UDim(1, 0) : new UDim(0, r)))}
|
||||
/>
|
||||
)}
|
||||
|
||||
{props[Roact.Children]}
|
||||
</frame>
|
||||
)
|
||||
}
|
||||
|
||||
export default fill
|
|
@ -1,31 +0,0 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
|
||||
interface paddingProps extends Roact.JsxInstanceProperties<UIPadding> {
|
||||
padding?: UDim | Roact.Binding<UDim>
|
||||
paddingX?: UDim | Roact.Binding<UDim>
|
||||
paddingY?: UDim | Roact.Binding<UDim>
|
||||
|
||||
Event?: Roact.JsxInstanceEvents<UIPadding>
|
||||
Change?: Roact.JsxInstanceChangeEvents<UIPadding>
|
||||
}
|
||||
|
||||
function padding(props: paddingProps): Roact.Element {
|
||||
const { padding, paddingX, paddingY } = props
|
||||
|
||||
const spreadableProps = { ...props } as Partial<paddingProps>
|
||||
delete spreadableProps.padding
|
||||
delete spreadableProps.paddingX
|
||||
delete spreadableProps.paddingY
|
||||
|
||||
return (
|
||||
<uipadding
|
||||
{...spreadableProps}
|
||||
PaddingBottom={paddingY ?? padding}
|
||||
PaddingTop={paddingY ?? padding}
|
||||
PaddingLeft={paddingX || padding}
|
||||
PaddingRight={paddingX || padding}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
export default padding
|
65
src/ReplicatedStorage/ui/components/surface.tsx
Normal file
65
src/ReplicatedStorage/ui/components/surface.tsx
Normal file
|
@ -0,0 +1,65 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import Canvas from "./canvas"
|
||||
import Acrylic from "./acrylic"
|
||||
import Fill from "./fill"
|
||||
import { BindingOrValue } from "ReplicatedStorage/utils/bindingUtil"
|
||||
|
||||
interface surfaceProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
size: BindingOrValue<UDim2>
|
||||
position: BindingOrValue<UDim2>
|
||||
ratio?: BindingOrValue<number>
|
||||
color?: BindingOrValue<Color3>
|
||||
anchor?: Vector2
|
||||
[Roact.Children]?: Roact.Children
|
||||
|
||||
Event?: Roact.JsxInstanceEvents<Frame>
|
||||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
function surface(props: surfaceProps): Roact.Element {
|
||||
const { size, position, ratio, color, anchor } = props
|
||||
|
||||
const spreadableProps = { ...props } as Partial<surfaceProps>
|
||||
delete spreadableProps.size
|
||||
delete spreadableProps.position
|
||||
delete spreadableProps.ratio
|
||||
delete spreadableProps.color
|
||||
delete spreadableProps.anchor
|
||||
delete spreadableProps[Roact.Children]
|
||||
|
||||
return (
|
||||
<Canvas
|
||||
{...spreadableProps}
|
||||
Key={"surface container"}
|
||||
size={size}
|
||||
position={position}
|
||||
anchor={anchor}
|
||||
>
|
||||
<>
|
||||
{
|
||||
ratio !== undefined && <uiaspectratioconstraint AspectRatio={ratio}/>
|
||||
}
|
||||
</>
|
||||
|
||||
<Acrylic
|
||||
Key={"acrylic"}
|
||||
radius={5}
|
||||
distance={0.001}
|
||||
/>
|
||||
|
||||
<Fill
|
||||
color={color ? color : Color3.fromHex("#1e1e2e")}
|
||||
transparency={.3}
|
||||
radius={5}
|
||||
/>
|
||||
|
||||
<Canvas
|
||||
Key={"inner content"}
|
||||
>
|
||||
{props[Roact.Children]}
|
||||
</Canvas>
|
||||
</Canvas>
|
||||
)
|
||||
}
|
||||
|
||||
export default surface
|
40
src/ReplicatedStorage/ui/components/text.tsx
Normal file
40
src/ReplicatedStorage/ui/components/text.tsx
Normal file
|
@ -0,0 +1,40 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
|
||||
interface textProps extends Roact.JsxInstanceProperties<TextLabel> {
|
||||
bold?: boolean
|
||||
paddingX?: UDim
|
||||
paddingY?: UDim
|
||||
|
||||
Event?: Roact.JsxInstanceEvents<TextLabel>
|
||||
Change?: Roact.JsxInstanceChangeEvents<TextLabel>
|
||||
}
|
||||
|
||||
function text(props: textProps): Roact.Element {
|
||||
const { bold, paddingX, paddingY, Text, TextXAlignment } = props
|
||||
|
||||
const spreadableProps = { ...props } as Partial<textProps>
|
||||
delete spreadableProps.bold
|
||||
delete spreadableProps.paddingX
|
||||
delete spreadableProps.paddingY
|
||||
|
||||
return (
|
||||
<textlabel
|
||||
{...spreadableProps}
|
||||
Font={bold ? Enum.Font.GothamBold : Enum.Font.Gotham}
|
||||
TextXAlignment={TextXAlignment}
|
||||
BackgroundTransparency={1}
|
||||
TextColor3={Color3.fromHex("#cdd6f4")}
|
||||
TextScaled
|
||||
Text={Text as string}
|
||||
>
|
||||
<uipadding
|
||||
PaddingTop={paddingY || new UDim()}
|
||||
PaddingBottom={paddingY || new UDim()}
|
||||
PaddingRight={paddingX || new UDim()}
|
||||
PaddingLeft={paddingX || new UDim()}
|
||||
/>
|
||||
</textlabel>
|
||||
)
|
||||
}
|
||||
|
||||
export default text
|
|
@ -5,12 +5,12 @@ export interface ConfigState {
|
|||
}
|
||||
|
||||
const initialState: ConfigState = {
|
||||
acrylicBlur: false
|
||||
acrylicBlur: true
|
||||
}
|
||||
|
||||
export const configProducer = createProducer(initialState, {
|
||||
toggleAcrylic: (state) => ({
|
||||
toggleConfig: (state, action: keyof ConfigState) => ({
|
||||
...state,
|
||||
acrylicBlur: !state.acrylicBlur
|
||||
[action]: !state[action]
|
||||
})
|
||||
})
|
15
src/ReplicatedStorage/utils/bindingUtil.ts
Normal file
15
src/ReplicatedStorage/utils/bindingUtil.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
|
||||
export type BindingOrValue<T> = T | Roact.Binding<T>
|
||||
|
||||
export function isBinding(binding: unknown): binding is Roact.Binding<unknown> {
|
||||
return typeIs(binding, "table") && "getValue" in binding
|
||||
}
|
||||
|
||||
export function mapBinding<T, U>(value: BindingOrValue<T>, transform: (value: T) => U): Roact.Binding<U> {
|
||||
return isBinding(value) ? value.map(transform) : Roact.createBinding(transform(value))[0]
|
||||
}
|
||||
|
||||
export function asBinding<T>(value: BindingOrValue<T>): Roact.Binding<T> {
|
||||
return isBinding(value) ? value : Roact.createBinding(value)[0]
|
||||
}
|
|
@ -15,14 +15,16 @@ const clientLogger = Logger.configure()
|
|||
|
||||
const clientState = new ClientState(
|
||||
Players.LocalPlayer,
|
||||
(Players.LocalPlayer.Character || Players.LocalPlayer.CharacterAdded.Wait()[0]) as CharacterRigR6,
|
||||
false,
|
||||
false,
|
||||
Players.LocalPlayer.WaitForChild("Backpack") as Backpack,
|
||||
Players.LocalPlayer.WaitForChild("Backpack"),
|
||||
|
||||
clientLogger
|
||||
)
|
||||
|
||||
clientState.character = (Players.LocalPlayer.Character || Players.LocalPlayer.CharacterAdded.Wait()[0]) as CharacterRigR6
|
||||
clientState.backpack = Players.LocalPlayer.WaitForChild("Backpack")
|
||||
|
||||
const worldAndClientState = start(HOST, clientState)
|
||||
showGUI(worldAndClientState[0], clientState)
|
||||
setEnvironment(HOST)
|
|
@ -1,11 +1,10 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import Padding from "ReplicatedStorage/ui/components/padding"
|
||||
import Acrylic from "ReplicatedStorage/ui/components/acrylic"
|
||||
import { ContextActionService, HttpService } from "@rbxts/services"
|
||||
import { Spring } from "@rbxts/flipper"
|
||||
import { useGroupMotor } from "@rbxts/roact-hooked-plus"
|
||||
import { useEffect } from "@rbxts/roact-hooked"
|
||||
import { useRootProducer } from "ReplicatedStorage/ui/store/hooks/useUiProducer"
|
||||
import Item from "./item"
|
||||
import Surface from "ReplicatedStorage/ui/components/surface"
|
||||
import { useMotor } from "@rbxts/pretty-roact-hooks"
|
||||
|
||||
interface ConfigProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
shown: boolean
|
||||
|
@ -14,20 +13,18 @@ interface ConfigProps extends Roact.JsxInstanceProperties<Frame> {
|
|||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
const CONFIG_DEFAULT = [new Spring(1.5, { frequency: 6 })]
|
||||
const CONFIG_ACTIVE = [new Spring(.5, { frequency: 6 })]
|
||||
const CONFIG_DEFAULT = new Spring(1.5, { frequency: 6 })
|
||||
const CONFIG_ACTIVE = new Spring(.5, { frequency: 6 })
|
||||
|
||||
function config(props: ConfigProps): Roact.Element {
|
||||
const { toggleAcrylic } = useRootProducer()
|
||||
|
||||
let { shown } = props
|
||||
|
||||
const spreadableProps = { ...props } as Partial<ConfigProps>
|
||||
delete spreadableProps.shown
|
||||
|
||||
const [slotPosYMap, setPosYGoal] = useGroupMotor([1.5, 6])
|
||||
const slotPosY = slotPosYMap.map((t) => t[0])
|
||||
const [configPosY, setConfigGoal] = useMotor(1.5)
|
||||
|
||||
// TODO: maybe opt this into our system for inputs?
|
||||
useEffect(() => {
|
||||
const guid = HttpService.GenerateGUID(false)
|
||||
ContextActionService.BindAction(
|
||||
|
@ -36,9 +33,9 @@ function config(props: ConfigProps): Roact.Element {
|
|||
if (Enum.UserInputState.Begin === userInputState) {
|
||||
shown = !shown
|
||||
if (shown) {
|
||||
setPosYGoal(CONFIG_ACTIVE)
|
||||
setConfigGoal(CONFIG_ACTIVE)
|
||||
} else {
|
||||
setPosYGoal(CONFIG_DEFAULT)
|
||||
setConfigGoal(CONFIG_DEFAULT)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -48,65 +45,34 @@ function config(props: ConfigProps): Roact.Element {
|
|||
})
|
||||
|
||||
return (
|
||||
<frame
|
||||
<Surface
|
||||
{...spreadableProps}
|
||||
AnchorPoint={new Vector2(.5, .5)}
|
||||
Position={
|
||||
slotPosY.map((posY) => {
|
||||
anchor={new Vector2(.5, .5)}
|
||||
position={
|
||||
configPosY.map((posY) => {
|
||||
return new UDim2(.5, 0, posY, 0)
|
||||
})
|
||||
}
|
||||
BackgroundTransparency={1}
|
||||
Size={new UDim2(.4, 0, .7, 0)}
|
||||
Key={"Config"}
|
||||
size={new UDim2(.4, 0, .7, 0)}
|
||||
Key={"config"}
|
||||
>
|
||||
<Acrylic
|
||||
radius={5}
|
||||
distance={0.001}
|
||||
<uilistlayout
|
||||
VerticalAlignment={Enum.VerticalAlignment.Top}
|
||||
FillDirection={Enum.FillDirection.Vertical}
|
||||
/>
|
||||
<frame
|
||||
AnchorPoint={new Vector2(0, 0)}
|
||||
Position={new UDim2(0, 0, 0, 0)}
|
||||
Size={new UDim2(1, 0, 1, 0)}
|
||||
BackgroundTransparency={.7}
|
||||
BackgroundColor3={Color3.fromHex("#1e1e2e")}
|
||||
>
|
||||
<uilistlayout
|
||||
Padding={new UDim(0, 5)}
|
||||
VerticalAlignment={Enum.VerticalAlignment.Top}
|
||||
HorizontalAlignment={Enum.HorizontalAlignment.Left}
|
||||
FillDirection={Enum.FillDirection.Vertical}
|
||||
/>
|
||||
<uicorner
|
||||
CornerRadius={new UDim(0, 5)}
|
||||
/>
|
||||
<Padding
|
||||
padding={new UDim(0, 5)}
|
||||
/>
|
||||
<textbutton
|
||||
Size={new UDim2(1, 0, .1, 0)}
|
||||
Font={Enum.Font.Gotham}
|
||||
TextXAlignment={Enum.TextXAlignment.Left}
|
||||
BackgroundTransparency={.5}
|
||||
BackgroundColor3={Color3.fromHex("#11111b")}
|
||||
AutoButtonColor={false}
|
||||
TextColor3={Color3.fromHex("#cdd6f4")}
|
||||
TextScaled
|
||||
Text={"Toggle acrylic UI"}
|
||||
Event={{
|
||||
Activated: (): void => {toggleAcrylic()}
|
||||
}}
|
||||
>
|
||||
<Padding
|
||||
paddingY={new UDim(.3, 0)}
|
||||
paddingX={new UDim(0, 5)}
|
||||
/>
|
||||
<uicorner
|
||||
CornerRadius={new UDim(0, 5)}
|
||||
/>
|
||||
</textbutton>
|
||||
</frame>
|
||||
</frame>
|
||||
<uipadding
|
||||
PaddingTop={new UDim(0, 5)}
|
||||
PaddingRight={new UDim(0, 5)}
|
||||
PaddingBottom={new UDim(0, 5)}
|
||||
PaddingLeft={new UDim(0, 5)}
|
||||
/>
|
||||
<Item
|
||||
size={new UDim2(1, 0, .1, 0)}
|
||||
position={new UDim2()}
|
||||
text="Toggle Acrylic UI"
|
||||
action="acrylicBlur"
|
||||
/>
|
||||
</Surface>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
61
src/StarterPlayer/StarterPlayerScripts/ui/config/item.tsx
Normal file
61
src/StarterPlayer/StarterPlayerScripts/ui/config/item.tsx
Normal file
|
@ -0,0 +1,61 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import Fill from "ReplicatedStorage/ui/components/fill"
|
||||
import Text from "ReplicatedStorage/ui/components/text"
|
||||
import Canvas from "ReplicatedStorage/ui/components/canvas"
|
||||
import { useRootProducer, useRootSelector } from "ReplicatedStorage/ui/store/hooks/useUiProducer"
|
||||
import { ConfigState } from "ReplicatedStorage/ui/store/producer/config"
|
||||
|
||||
interface itemProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
size: UDim2
|
||||
position: UDim2
|
||||
text: string
|
||||
action: keyof ConfigState
|
||||
|
||||
Event?: Roact.JsxInstanceEvents<Frame>
|
||||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
function item(props: itemProps): Roact.Element {
|
||||
const { size, position, text, action } = props
|
||||
|
||||
const { toggleConfig } = useRootProducer()
|
||||
|
||||
const active = useRootSelector((state) => state.configProducer[action])
|
||||
|
||||
const spreadableProps = { ...props } as Partial<itemProps>
|
||||
delete spreadableProps.size
|
||||
delete spreadableProps.position
|
||||
delete spreadableProps.text
|
||||
delete spreadableProps.action
|
||||
|
||||
return (
|
||||
<Canvas size={size} position={position} {...spreadableProps}>
|
||||
<Fill color={Color3.fromHex("#313244")} transparency={.3} radius={5}/>
|
||||
|
||||
<Text
|
||||
Size={new UDim2(1, 0, 1, 0)}
|
||||
Text={text}
|
||||
TextXAlignment={Enum.TextXAlignment.Left}
|
||||
paddingX={new UDim(0, 5)}
|
||||
paddingY={new UDim(.3, 0)}
|
||||
/>
|
||||
<Text
|
||||
Size={new UDim2(1, 0, 1, 0)}
|
||||
Text={tostring(active)}
|
||||
TextXAlignment={Enum.TextXAlignment.Right}
|
||||
paddingX={new UDim(0, 5)}
|
||||
paddingY={new UDim(.3, 0)}
|
||||
/>
|
||||
<textbutton
|
||||
Event={{
|
||||
Activated: () => toggleConfig(action)
|
||||
}}
|
||||
Size={new UDim2(1, 0, 1, 0)}
|
||||
Transparency={1}
|
||||
Text={""}
|
||||
/>
|
||||
</Canvas>
|
||||
)
|
||||
}
|
||||
|
||||
export default item
|
|
@ -1,14 +1,37 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import Slot from "./slot"
|
||||
import { useWorldContext } from "../contexts/worldContext"
|
||||
import Padding from "ReplicatedStorage/ui/components/padding"
|
||||
import Canvas from "ReplicatedStorage/ui/components/canvas"
|
||||
import { StarterGui } from "@rbxts/services"
|
||||
import { useEffect, useMemo, useState } from "@rbxts/roact-hooked"
|
||||
import { ClientState } from "ReplicatedStorage/ecs/state"
|
||||
|
||||
interface HotbarProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
Event?: Roact.JsxInstanceEvents<Frame>
|
||||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
function useBackpackContents(clientState: ClientState): Instance[] {
|
||||
const [contents, setContents] = useState(clientState.backpack.GetChildren())
|
||||
|
||||
useEffect(() => {
|
||||
const addedHandle = clientState.backpack.ChildAdded.Connect(() => {
|
||||
setContents(clientState.backpack.GetChildren())
|
||||
})
|
||||
const removingHandle = clientState.backpack.ChildRemoved.Connect((removed) => {
|
||||
// the tool is removed from the bp when equipped, can cause weird behavior
|
||||
if (removed.Parent === clientState.character) { return }
|
||||
setContents(clientState.backpack.GetChildren())
|
||||
})
|
||||
return () => {
|
||||
addedHandle.Disconnect()
|
||||
removingHandle.Disconnect()
|
||||
}
|
||||
}, [])
|
||||
|
||||
return contents
|
||||
}
|
||||
|
||||
StarterGui.SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
|
||||
|
||||
function hotbar(props: HotbarProps): Roact.Element {
|
||||
|
@ -16,6 +39,13 @@ function hotbar(props: HotbarProps): Roact.Element {
|
|||
|
||||
const { clientState } = useWorldContext()
|
||||
|
||||
const backpackContents = useBackpackContents(clientState)
|
||||
|
||||
const sortedBackpackContents = useMemo(() => {
|
||||
return backpackContents
|
||||
.sort((a, b) => a.Name.lower() < b.Name.lower())
|
||||
}, [backpackContents])
|
||||
|
||||
const keycodes: Enum.KeyCode[] = [
|
||||
Enum.KeyCode.One,
|
||||
Enum.KeyCode.Two,
|
||||
|
@ -28,36 +58,27 @@ function hotbar(props: HotbarProps): Roact.Element {
|
|||
Enum.KeyCode.Nine
|
||||
]
|
||||
|
||||
const items: Roact.Element[] = []
|
||||
clientState.backpack.GetChildren().forEach((tool, i) => {
|
||||
items.push(
|
||||
<Slot
|
||||
Key={`Item${i}`}
|
||||
index={i + 1}
|
||||
keycode={keycodes[i]}
|
||||
tool={tool as Tool}
|
||||
/>
|
||||
)
|
||||
})
|
||||
|
||||
return (
|
||||
<frame
|
||||
<Canvas
|
||||
{...spreadableProps}
|
||||
AnchorPoint={new Vector2(0, 0)}
|
||||
Position={new UDim2(0, 0, 0, 0)}
|
||||
BackgroundTransparency={1}
|
||||
Size={new UDim2(.25, 0, 1, 0)}
|
||||
Key={"Hotbar"}
|
||||
size={new UDim2(.25, 0, 1, 0)}
|
||||
Key={"hotbar"}
|
||||
>
|
||||
<uilistlayout
|
||||
Padding={new UDim(0, 5)}
|
||||
VerticalAlignment={Enum.VerticalAlignment.Bottom}
|
||||
/>
|
||||
<Padding
|
||||
padding={new UDim(0, 10)}
|
||||
/>
|
||||
{...items}
|
||||
</frame>
|
||||
{
|
||||
sortedBackpackContents.map((tool, i) => (
|
||||
<Slot
|
||||
Key={`item${i}`}
|
||||
index={i + 1}
|
||||
keycode={keycodes[i]}
|
||||
tool={tool as Tool}
|
||||
/>
|
||||
))
|
||||
}
|
||||
</Canvas>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -2,10 +2,10 @@ import Roact from "@rbxts/roact"
|
|||
import { useEffect } from "@rbxts/roact-hooked"
|
||||
import { useWorldContext } from "../contexts/worldContext"
|
||||
import { ContextActionService, HttpService } from "@rbxts/services"
|
||||
import Padding from "ReplicatedStorage/ui/components/padding"
|
||||
import Acrylic from "ReplicatedStorage/ui/components/acrylic"
|
||||
import Text from "ReplicatedStorage/ui/components/text"
|
||||
import Surface from "ReplicatedStorage/ui/components/surface"
|
||||
import { Spring } from "@rbxts/flipper"
|
||||
import { useGroupMotor } from "@rbxts/roact-hooked-plus"
|
||||
import { useMotor } from "@rbxts/pretty-roact-hooks"
|
||||
|
||||
interface SlotProps extends Roact.JsxInstanceProperties<Frame> {
|
||||
index: number
|
||||
|
@ -16,8 +16,8 @@ interface SlotProps extends Roact.JsxInstanceProperties<Frame> {
|
|||
Change?: Roact.JsxInstanceChangeEvents<Frame>
|
||||
}
|
||||
|
||||
const SLOT_DEFAULT = [new Spring(.7, { frequency: 6 }), new Spring(6, { frequency: 6 })]
|
||||
const SLOT_ACTIVE = [new Spring(.5, { frequency: 6 }), new Spring(5, { frequency: 6 })]
|
||||
const SLOT_DEFAULT = new Spring(6, { frequency: 6 })
|
||||
const SLOT_ACTIVE = new Spring(5, { frequency: 6 })
|
||||
|
||||
function slot(props: SlotProps): Roact.Element {
|
||||
const { index, keycode, tool } = props
|
||||
|
@ -27,13 +27,12 @@ function slot(props: SlotProps): Roact.Element {
|
|||
delete spreadableProps.keycode
|
||||
delete spreadableProps.tool
|
||||
|
||||
const [slotBgTransparencyAndSlotRatio, setSlotGoal] = useGroupMotor([.7, 6])
|
||||
const slotBgTransparency = slotBgTransparencyAndSlotRatio.map((t) => t[0])
|
||||
const slotRatio = slotBgTransparencyAndSlotRatio.map((t) => t[1])
|
||||
const [slotRatio, setSlotGoal] = useMotor(6)
|
||||
|
||||
const { clientState } = useWorldContext()
|
||||
|
||||
const handleActivated = (): void => {
|
||||
if (clientState.character === undefined) return
|
||||
if (tool.Parent !== clientState.character) {
|
||||
clientState.character.Humanoid.EquipTool(tool)
|
||||
setSlotGoal(SLOT_ACTIVE)
|
||||
|
@ -59,47 +58,29 @@ function slot(props: SlotProps): Roact.Element {
|
|||
setSlotGoal(SLOT_DEFAULT)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
return (
|
||||
<frame
|
||||
BackgroundColor3={Color3.fromHex("#1e1e2e")}
|
||||
BackgroundTransparency={slotBgTransparency}
|
||||
Size={new UDim2(1, 0, 1, 0)}
|
||||
<Surface
|
||||
{...spreadableProps}
|
||||
size={new UDim2(1, 0, 1, 0)}
|
||||
position={new UDim2(0, 0, 0, 0)}
|
||||
ratio={slotRatio}
|
||||
>
|
||||
<Acrylic
|
||||
radius={5}
|
||||
distance={0.001}
|
||||
<Text
|
||||
Size={new UDim2(.2, 0, 1, 0)}
|
||||
Text={tostring(index)}
|
||||
paddingY={new UDim(.3, 0)}
|
||||
bold
|
||||
/>
|
||||
<uiaspectratioconstraint
|
||||
AspectRatio={slotRatio}
|
||||
<Text
|
||||
Size={new UDim2(.8, 0, 1, 0)}
|
||||
Position={new UDim2(.2, 0, 0, 0)}
|
||||
TextXAlignment={Enum.TextXAlignment.Left}
|
||||
paddingY={new UDim(.3, 0)}
|
||||
Text={tool.Name}
|
||||
/>
|
||||
<uicorner
|
||||
CornerRadius={new UDim(0, 5)}
|
||||
/>
|
||||
<frame BackgroundTransparency={1} Size={new UDim2(1, 0, 1, 0)}>
|
||||
<Padding
|
||||
paddingY={new UDim(.3, 0)}
|
||||
/>
|
||||
<textlabel
|
||||
TextColor3={Color3.fromHex("#cdd6f4")}
|
||||
BackgroundTransparency={1}
|
||||
Size={new UDim2(.2, 0, 1, 0)}
|
||||
Font={Enum.Font.GothamBold}
|
||||
Text={tostring(index)}
|
||||
TextScaled
|
||||
/>
|
||||
<textlabel
|
||||
TextColor3={Color3.fromHex("#cdd6f4")}
|
||||
BackgroundTransparency={1}
|
||||
Size={new UDim2(.8, 0, 1, 0)}
|
||||
Position={new UDim2(.2, 0, 0, 0)}
|
||||
Font={Enum.Font.Gotham}
|
||||
Text={tool.Name}
|
||||
TextXAlignment={Enum.TextXAlignment.Left}
|
||||
TextScaled
|
||||
/>
|
||||
</frame>
|
||||
</frame>
|
||||
</Surface>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
import Roact from "@rbxts/roact"
|
||||
import { withHookDetection } from "@rbxts/roact-hooked"
|
||||
import Hotbar from "./hotbar/hotbar"
|
||||
import Config from "./config/config"
|
||||
import { withHookDetection } from "@rbxts/roact-hooked"
|
||||
import Canvas from "ReplicatedStorage/ui/components/canvas"
|
||||
|
||||
interface MainProps extends Roact.JsxInstanceEvents<ScreenGui> {
|
||||
Event?: Roact.JsxInstanceEvents<ScreenGui>
|
||||
|
@ -14,18 +15,22 @@ export default function main(props: MainProps): Roact.Element {
|
|||
withHookDetection(Roact)
|
||||
|
||||
return (
|
||||
<screengui ResetOnSpawn={false} {...spreadableProps}>
|
||||
<Hotbar
|
||||
Position={new UDim2(0.5, 0, 1, 0)}
|
||||
AnchorPoint={new Vector2(0.5, 1)}
|
||||
Size={new UDim2(1, 0, 0.2, 0)}
|
||||
/>
|
||||
<Config
|
||||
shown={false}
|
||||
AnchorPoint={new Vector2(.5, .5)}
|
||||
Position={new UDim2(.5, 0, .5, 0)}
|
||||
Size={new UDim2(.4, 0, .7, 0)}
|
||||
/>
|
||||
<screengui ResetOnSpawn={false} ZIndexBehavior={Enum.ZIndexBehavior.Sibling} IgnoreGuiInset {...spreadableProps}>
|
||||
<Canvas
|
||||
Key={"global container"}
|
||||
padding={{
|
||||
top: 10,
|
||||
right: 10,
|
||||
bottom: 10,
|
||||
left: 10
|
||||
}}
|
||||
>
|
||||
<Hotbar
|
||||
/>
|
||||
<Config
|
||||
shown={false}
|
||||
/>
|
||||
</Canvas>
|
||||
</screengui>
|
||||
)
|
||||
}
|
25
yarn.lock
25
yarn.lock
|
@ -131,6 +131,14 @@
|
|||
resolved "https://registry.yarnpkg.com/@rbxts/plasma/-/plasma-0.4.1-ts.1.tgz#3d8db367c3220e6b6953cdddbf8af9f087165392"
|
||||
integrity sha512-RhLkC3GQW0KeyqjFwvOUbHhsIJOHmXg+BhcKLp0IgUDVgC5GktShi3zmW6GQ319yod+RlUDG1XHjOnP3Omo4bA==
|
||||
|
||||
"@rbxts/pretty-roact-hooks@^3.1.1":
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/pretty-roact-hooks/-/pretty-roact-hooks-3.1.1.tgz#b2729163bfd2c89e1efb91c544d7ddb798054fe0"
|
||||
integrity sha512-eve1L7GWKZVo6ZLgcmk6c95SDvhTRIjWwR8notAz7g+CQ/jdtOoX+5fVHOQLMYE6HbQ79Bth+LO13WOM4T3WKg==
|
||||
dependencies:
|
||||
"@rbxts/services" "^1.5.1"
|
||||
"@rbxts/set-timeout" "^1.1.2"
|
||||
|
||||
"@rbxts/reflex@^4.2.0":
|
||||
version "4.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/reflex/-/reflex-4.2.0.tgz#10d064de5e293f1aea429846d4d8739821cb575a"
|
||||
|
@ -141,14 +149,6 @@
|
|||
resolved "https://registry.yarnpkg.com/@rbxts/rewire/-/rewire-0.3.0.tgz#47f0cd651fe405cf418936799d2a4dac6b1bb7ce"
|
||||
integrity sha512-wChhGZ3kEkEsMK9ZuwKpwRsC7OGVZlvxrYMR3beFgCIPXE58JKLziBLkDACmd709XCCEmsMAqv9HMCMhSTD08Q==
|
||||
|
||||
"@rbxts/roact-hooked-plus@^1.8.1":
|
||||
version "1.8.1"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/roact-hooked-plus/-/roact-hooked-plus-1.8.1.tgz#e0fa32b74c0f958430ae62f249f1b5b52ce27f3b"
|
||||
integrity sha512-ipJf6pZcQZlx/0hyisQz2eoRECg38knUgjkEvx2dvAHfs0+IDgera7mcwv6zTMACqalaXu00inc4E5dpOrs54A==
|
||||
dependencies:
|
||||
"@rbxts/flipper" "^2.0.1"
|
||||
"@rbxts/services" "^1.2.0"
|
||||
|
||||
"@rbxts/roact-hooked@^2.6.0":
|
||||
version "2.6.0"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/roact-hooked/-/roact-hooked-2.6.0.tgz#cbe3e244e1d52d879083c62b6662c4d082c6d30b"
|
||||
|
@ -164,11 +164,18 @@
|
|||
resolved "https://registry.yarnpkg.com/@rbxts/roact/-/roact-1.4.4-ts.0.tgz#7f297bec03dbea9473bd2d82b148d3ae6e4f6c00"
|
||||
integrity sha512-gn9mBoGG/Clzgv2kyOvLNVd9dh5t6z+jukC3ITv2HnfPqvf/sMbz/VMaBoiB7t5umuiIe0LjW0ctZrkrS+uTOA==
|
||||
|
||||
"@rbxts/services@^1.2.0", "@rbxts/services@^1.5.1":
|
||||
"@rbxts/services@^1.5.1":
|
||||
version "1.5.1"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/services/-/services-1.5.1.tgz#4536a87932f28797507ed591f0061277c52ea77f"
|
||||
integrity sha512-SRtfIjga0K4YYSXRpK+eH3kcTq7ZXo9OHOt0jszaOOoEOIJloMGlyuRPqesPHyhveh2AMXAZr3TYbRMSD+u+kQ==
|
||||
|
||||
"@rbxts/set-timeout@^1.1.2":
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/set-timeout/-/set-timeout-1.1.2.tgz#2adc9d4b5dcb54ca4332eb7ec8d19793932dbd40"
|
||||
integrity sha512-P/A0IiH9wuZdSJYr4Us0MDFm61nvIFR0acfKFHLkcOsgvIgELC90Up9ugiSsaMEHRIcIcO5UjE39LuS3xTzQHw==
|
||||
dependencies:
|
||||
"@rbxts/services" "^1.5.1"
|
||||
|
||||
"@rbxts/testez@^0.4.2-ts.0":
|
||||
version "0.4.2-ts.0"
|
||||
resolved "https://registry.yarnpkg.com/@rbxts/testez/-/testez-0.4.2-ts.0.tgz#4475183d317182ac7099bffee6492ffcb7bcaf0b"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue