diff --git a/.envrc b/.envrc index 3550a30..c3792f6 100644 --- a/.envrc +++ b/.envrc @@ -1 +1,2 @@ +mkdir .direnv use flake diff --git a/visions/server/src/asset_db.rs b/visions/server/src/asset_db.rs index d32fa82..62364e5 100644 --- a/visions/server/src/asset_db.rs +++ b/visions/server/src/asset_db.rs @@ -7,6 +7,7 @@ use std::{ use mime::Mime; use serde::{Deserialize, Serialize}; use thiserror::Error; +use typeshare::typeshare; #[derive(Debug, Error)] pub enum Error { @@ -32,6 +33,7 @@ impl From for Error { } #[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)] +#[typeshare] pub struct AssetId(String); impl Display for AssetId { diff --git a/visions/ui/src/App.css b/visions/ui/src/App.css index 74b5e05..2d74043 100644 --- a/visions/ui/src/App.css +++ b/visions/ui/src/App.css @@ -1,5 +1,4 @@ .App { - text-align: center; } .App-logo { diff --git a/visions/ui/src/App.tsx b/visions/ui/src/App.tsx index 8efbba2..c0f28a4 100644 --- a/visions/ui/src/App.tsx +++ b/visions/ui/src/App.tsx @@ -5,6 +5,7 @@ import { createBrowserRouter, RouterProvider } from 'react-router-dom'; import { GmView } from './views/GmView/GmView'; import { WebsocketProvider } from './components/WebsocketProvider'; import { PlayerView } from './views/PlayerView/PlayerView'; +import Candela from './plugins/Candela'; interface AppProps { client: Client; @@ -27,6 +28,10 @@ const App = ({ client }: AppProps) => { { path: "/", element: websocketUrl ? :
+ }, + { + path: "/candela", + element: } ]); return ( diff --git a/visions/ui/src/plugins/Candela/Charsheet.css b/visions/ui/src/plugins/Candela/Charsheet.css new file mode 100644 index 0000000..c940466 --- /dev/null +++ b/visions/ui/src/plugins/Candela/Charsheet.css @@ -0,0 +1,19 @@ +.charsheet__header { + display: flex; +} + +.charsheet__header > div { + margin: 8px; + width: 33%; +} + +.charsheet__body { + display: flex; +} + +.charsheet__body > div { + margin: 8px; + width: 33%; +} + + diff --git a/visions/ui/src/plugins/Candela/Charsheet.tsx b/visions/ui/src/plugins/Candela/Charsheet.tsx new file mode 100644 index 0000000..44729e6 --- /dev/null +++ b/visions/ui/src/plugins/Candela/Charsheet.tsx @@ -0,0 +1,151 @@ +import React from 'react'; +import './Charsheet.css'; + +export type Guage = { + current: number, + max: number, +} + +export type Action = { + guilded: boolean, + score: number, +} + +export type Actions = { [key: string]: Action } + +export type ActionGroup = { + drives: Guage, + resistances: Guage, + actions: Actions, +} + +type Nerve = { + drives: Guage, + resistances: Guage, + move: Action, + strike: Action, + control: Action, +} + +type Cunning = { + drives: Guage, + resistances: Guage, + sway: Action, + read: Action, + hide: Action, +} + +type Intuition = { + drives: Guage, + resistances: Guage, + survey: Action, + focus: Action, + sense: Action, +} + +export type Charsheet = { + type_: string, + name: string, + pronouns: string + circle: string + style: string, + catalyst: string, + question: string, + role: string, + + nerve: Nerve, + cunning: Cunning, + intuition: Intuition, +} + +interface CharsheetProps { + sheet: Charsheet, +} + +interface ActionDriveProps { + groupName: string, + group: Nerve | Cunning | Intuition, +} + +interface GuageProps { + current: number, + max: number, +} + +const GuageElement = ({ current, max }: GuageProps) => { + +} + +const ActionDriveElement = ({ groupName, group }: ActionDriveProps) => { + + if ("move" in group) { + return
-- Nerve --
; + } else if ("sway" in group) { + return
-- Cunning --
; + } else { + return
-- Intuition --
; + } +} + +const CharsheetElement_ = ({ sheet }: CharsheetProps) => { + return (
+
+
Candela Obscura
+
+

{sheet.name}

+

{sheet.pronouns}

+

{sheet.circle}

+
+
+

{sheet.style}

+

{sheet.catalyst}

+

{sheet.question}

+
+
+
+
+ + + +
+
Role and Specialty
+
Marks, Scars, Relationships
+
+
); +} + +export const CharsheetElement = () => { + const sheet = { + type_: 'Candela', + name: "Soren Jensen", + pronouns: 'he/him', + circle: 'Circle of the Bluest Sky', + style: 'dapper gentleman', + catalyst: 'a cursed book', + question: 'What were the contents of that book?', + role: 'Slink', + nerve: { + drives: { current: 2, max: 2 }, + resistances: { current: 0, max: 3 }, + move: { guilded: false, score: 0 }, + strike: { guilded: false, score: 0 }, + control: { guilded: true, score: 0 }, + }, + cunning: { + drives: { current: 1, max: 1 }, + resistances: { current: 0, max: 3 }, + sway: { guilded: false, score: 0 }, + read: { guilded: false, score: 0 }, + hide: { guilded: false, score: 0 }, + }, + intuition: { + drives: { current: 0, max: 0 }, + resistances: { current: 0, max: 3 }, + survey: { guilded: false, score: 0 }, + focus: { guilded: false, score: 0 }, + sense: { guilded: false, score: 0 }, + } + }; + + return +} diff --git a/visions/ui/src/plugins/Candela/index.tsx b/visions/ui/src/plugins/Candela/index.tsx new file mode 100644 index 0000000..37a562e --- /dev/null +++ b/visions/ui/src/plugins/Candela/index.tsx @@ -0,0 +1,4 @@ +import { Charsheet, CharsheetElement } from './Charsheet'; + +export default { CharsheetElement }; +