summaryrefslogtreecommitdiffstats
path: root/kue/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/graphics.h')
-rw-r--r--kue/graphics.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/kue/graphics.h b/kue/graphics.h
new file mode 100644
index 00000000..810fe8d8
--- /dev/null
+++ b/kue/graphics.h
@@ -0,0 +1,37 @@
+// Main header for the graphics subsystem
+
+#ifndef _GRAPHICS_H
+#define _GRAPHICS_H
+
+#include "cue.h"
+#include "disc.h"
+#include "sphere.h"
+#include "table.h"
+#include "texture.h"
+
+const int GRAPHICS_NOTEXTURE = 0;
+
+class graphics {
+ public:
+ // Setup OpenGL
+ static bool init();
+ // Shut down OpenGL
+ static bool deinit();
+
+ static void resize(int width, int height);
+
+ // Start and end drawing mode
+ static void startDraw();
+ static void endDraw();
+
+ // Draw the basic scene
+ static void drawScene();
+
+ // Set the pen color
+ static void setColor(double r, double g, double b);
+
+ // Sets the viewing angle
+ static void lookAt(double eyex, double eyey, double eyez, double centerx, double centery, double centerz);
+};
+
+#endif