aboutsummaryrefslogtreecommitdiff
path: root/src/persistent_scene.h
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-15 21:17:42 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-15 21:21:57 -0600
commit029b2909b37cc58ba35e0f46be1802866ee59730 (patch)
treeba6aa309f3ec7d6b0eb3a77ee67d8743392aa0e8 /src/persistent_scene.h
parent26da6d75305d02e17e7b011ab88f6d50dcea02f0 (diff)
downloadlibsurvive-029b2909b37cc58ba35e0f46be1802866ee59730.tar.gz
libsurvive-029b2909b37cc58ba35e0f46be1802866ee59730.tar.bz2
Forgot files
Diffstat (limited to 'src/persistent_scene.h')
-rw-r--r--src/persistent_scene.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/persistent_scene.h b/src/persistent_scene.h
new file mode 100644
index 0000000..07d9056
--- /dev/null
+++ b/src/persistent_scene.h
@@ -0,0 +1,32 @@
+#pragma once
+#include "persistent_scene.h"
+#include "stdbool.h"
+
+#ifndef USE_DOUBLE
+#define FLT double
+#define USE_DOUBLE
+#endif
+
+#include "linmath.h"
+#include <survive.h>
+
+typedef struct {
+ uint32_t tolerance;
+
+ // If "lengths[...]" < 0, means not a valid piece of sweep information.
+ FLT angles[SENSORS_PER_OBJECT][NUM_LIGHTHOUSES][2]; // 2 Axes (Angles in LH space)
+ uint32_t timecode[SENSORS_PER_OBJECT][NUM_LIGHTHOUSES][2];
+
+ PoserDataIMU lastimu;
+
+} PersistentScene;
+
+typedef void (*PersistentScene_ForEachCorrespondence_fn)(SurviveObject *so, int lh, int sensor_idx, FLT *angles,
+ void *);
+void PersistentScene_ForEachCorrespondence(PersistentScene *self, PersistentScene_ForEachCorrespondence_fn fn,
+ SurviveObject *so, uint32_t timecode_now, void *user);
+
+void PersistentScene_add(PersistentScene *self, SurviveObject *so, PoserDataLight *lightData);
+
+bool PersistentScene_isStillValid(const PersistentScene *self, uint32_t timecode_now, uint32_t idx, int lh);
+void PersistentScene_ctor(PersistentScene *self);