2013-09-05 21:58:58 -07:00
|
|
|
/* scene.c
|
|
|
|
*
|
|
|
|
* Definition of Scene-related functions.
|
|
|
|
*
|
|
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-09-06 14:52:03 -07:00
|
|
|
#include <stdlib.h>
|
2013-09-05 21:58:58 -07:00
|
|
|
#include "scene.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scene_init --
|
2013-09-06 14:52:03 -07:00
|
|
|
*
|
|
|
|
* Initialize and return a new Scene. If the Scene could not be created, NULL is returned.
|
2013-09-05 21:58:58 -07:00
|
|
|
*/
|
2013-09-06 14:52:03 -07:00
|
|
|
Scene *
|
|
|
|
scene_init()
|
2013-09-05 21:58:58 -07:00
|
|
|
{
|
2013-09-06 14:52:03 -07:00
|
|
|
Scene *new_scene = malloc(sizeof(Scene));
|
|
|
|
if (!new_scene) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set some default values.
|
|
|
|
new_scene->height = 0;
|
|
|
|
new_scene->width = 0;
|
2013-09-06 19:01:15 -07:00
|
|
|
new_scene->camera = camera_init();
|
2013-09-06 14:52:03 -07:00
|
|
|
|
|
|
|
return new_scene;
|
2013-09-05 21:58:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scene_destroy --
|
2013-09-06 14:52:03 -07:00
|
|
|
*
|
|
|
|
* Cleanup a Scene.
|
2013-09-05 21:58:58 -07:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
scene_destroy(Scene *scene)
|
2013-09-06 14:52:03 -07:00
|
|
|
{
|
|
|
|
if (scene == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:01:15 -07:00
|
|
|
camera_destroy(scene->camera);
|
2013-09-06 14:52:03 -07:00
|
|
|
free(scene);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scene_load --
|
|
|
|
*
|
|
|
|
* Load a scene from a file into the given Scene object.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
scene_load(Scene *scene, FILE *scene_file)
|
2013-09-05 21:58:58 -07:00
|
|
|
{ }
|
2013-09-05 22:08:55 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scene_render --
|
2013-09-06 14:52:03 -07:00
|
|
|
*
|
|
|
|
* Render the given Scene.
|
2013-09-05 22:08:55 -07:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
scene_render(Scene *scene)
|
|
|
|
{
|
|
|
|
for (int y = 0; y < scene->height; y++) {
|
|
|
|
for (int x = 0; x < scene->width; x++) {
|
|
|
|
// TODO: Process the scene.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|