summaryrefslogtreecommitdiff
path: root/webhogg/wasm/src/context
diff options
context:
space:
mode:
Diffstat (limited to 'webhogg/wasm/src/context')
-rw-r--r--webhogg/wasm/src/context/graphics.rs11
-rw-r--r--webhogg/wasm/src/context/logic.rs11
-rw-r--r--webhogg/wasm/src/context/mod.rs24
3 files changed, 46 insertions, 0 deletions
diff --git a/webhogg/wasm/src/context/graphics.rs b/webhogg/wasm/src/context/graphics.rs
new file mode 100644
index 0000000..57955d0
--- /dev/null
+++ b/webhogg/wasm/src/context/graphics.rs
@@ -0,0 +1,11 @@
+use crate::error::WasmError;
+
+pub struct GraphicsContext {
+}
+
+impl GraphicsContext {
+ pub fn from_canvas() -> Result<Self, WasmError> {
+ Ok(Self {
+ })
+ }
+}
diff --git a/webhogg/wasm/src/context/logic.rs b/webhogg/wasm/src/context/logic.rs
new file mode 100644
index 0000000..71dfea4
--- /dev/null
+++ b/webhogg/wasm/src/context/logic.rs
@@ -0,0 +1,11 @@
+use crate::error::WasmError;
+
+pub struct LogicContext {
+}
+
+impl LogicContext {
+ pub fn new() -> Result<Self, WasmError> {
+ Ok(Self {
+ })
+ }
+}
diff --git a/webhogg/wasm/src/context/mod.rs b/webhogg/wasm/src/context/mod.rs
new file mode 100644
index 0000000..3e8261b
--- /dev/null
+++ b/webhogg/wasm/src/context/mod.rs
@@ -0,0 +1,24 @@
+pub mod graphics;
+pub mod logic;
+
+use graphics::GraphicsContext;
+use logic::LogicContext;
+
+static mut GTX: Option<GraphicsContext> = None;
+static mut LTX: Option<LogicContext> = None;
+
+pub fn get_graphics() -> &'static mut GraphicsContext {
+ unsafe { GTX.as_mut().unwrap() }
+}
+
+pub fn get_logic() -> &'static mut LogicContext {
+ unsafe { LTX.as_mut().unwrap() }
+}
+
+pub fn set_graphics(gtx: GraphicsContext) {
+ unsafe { GTX = Some(gtx) }
+}
+
+pub fn set_logic(ltx: LogicContext) {
+ unsafe { LTX = Some(ltx) }
+}