From 5c8f366a3b5d7303bf73bd6d5d0af0459bac72a2 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 13 Jun 2009 20:47:24 +0000 Subject: Add camera type. --- libdimension/Makefile.am | 4 +-- libdimension/camera.c | 66 +++++++++++++++++++++++++++++++++++++++++ libdimension/dimension.h | 2 ++ libdimension/dimension/camera.h | 47 +++++++++++++++++++++++++++++ libdimension/dimension/scene.h | 3 +- libdimension/scene.c | 22 ++++---------- 6 files changed, 124 insertions(+), 20 deletions(-) create mode 100644 libdimension/camera.c create mode 100644 libdimension/dimension/camera.h (limited to 'libdimension') diff --git a/libdimension/Makefile.am b/libdimension/Makefile.am index 857d233..29bc268 100644 --- a/libdimension/Makefile.am +++ b/libdimension/Makefile.am @@ -17,10 +17,10 @@ ## along with this program. If not, see . ## ########################################################################### -nobase_include_HEADERS = dimension.h dimension/array.h dimension/canvas.h dimension/color.h dimension/error.h dimension/geometry.h dimension/png.h dimension/object.h dimension/scene.h dimension/sphere.h +nobase_include_HEADERS = dimension.h dimension/array.h dimension/camera.h dimension/canvas.h dimension/color.h dimension/error.h dimension/geometry.h dimension/png.h dimension/object.h dimension/scene.h dimension/sphere.h lib_LTLIBRARIES = libdimension.la -libdimension_la_SOURCES = $(nobase_include_HEADERS) array.c canvas.c color.c error.c geometry.c png.c object.c scene.c sphere.c +libdimension_la_SOURCES = $(nobase_include_HEADERS) array.c camera.c canvas.c color.c error.c geometry.c png.c object.c scene.c sphere.c libdimension_la_LDFLAGS = -version-info 0:0:0 libdimension_la_LIBADD = -lm -lpthread -lpng diff --git a/libdimension/camera.c b/libdimension/camera.c new file mode 100644 index 0000000..2052785 --- /dev/null +++ b/libdimension/camera.c @@ -0,0 +1,66 @@ +/************************************************************************* + * Copyright (C) 2008 Tavian Barnes * + * * + * This file is part of The Dimension Library. * + * * + * The Dimension Library is free software; you can redistribute it and/ * + * or modify it under the terms of the GNU Lesser General Public License * + * as published by the Free Software Foundation; either version 3 of the * + * License, or (at your option) any later version. * + * * + * The Dimension Library is distributed in the hope that it will be * + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this program. If not, see * + * . * + *************************************************************************/ + +#include "dimension.h" +#include /* For malloc */ + +dmnsn_camera * +dmnsn_new_camera() +{ + return malloc(sizeof(dmnsn_camera)); +} + +void +dmnsn_delete_camera(dmnsn_camera *camera) +{ + free(camera); +} + +/* Perspective camera */ + +static dmnsn_line dmnsn_perspective_camera_ray_fn(const dmnsn_canvas *canvas, + unsigned int x, + unsigned int y); + +dmnsn_camera * +dmnsn_new_perspective_camera() +{ + dmnsn_camera *camera = dmnsn_new_camera(); + camera->ray_fn = &dmnsn_perspective_camera_ray_fn; + return camera; +} + +void +dmnsn_delete_perspective_camera(dmnsn_camera *camera) +{ + dmnsn_delete_camera(camera); +} + +static dmnsn_line +dmnsn_perspective_camera_ray_fn(const dmnsn_canvas *canvas, + unsigned int x, unsigned int y) +{ + dmnsn_line l; + l.x0 = dmnsn_vector_construct(0.0, 0.0, 0.0); + l.n.x = ((double)x)/(canvas->x - 1) - 0.5; + l.n.y = ((double)y)/(canvas->y - 1) - 0.5; + l.n.z = 1.0; + return l; +} diff --git a/libdimension/dimension.h b/libdimension/dimension.h index e7fbe55..3eb0bae 100644 --- a/libdimension/dimension.h +++ b/libdimension/dimension.h @@ -32,6 +32,8 @@ extern "C" { #include #include #include +#include +#include #include #include diff --git a/libdimension/dimension/camera.h b/libdimension/dimension/camera.h new file mode 100644 index 0000000..b1c4ebe --- /dev/null +++ b/libdimension/dimension/camera.h @@ -0,0 +1,47 @@ +/************************************************************************* + * Copyright (C) 2008 Tavian Barnes * + * * + * This file is part of The Dimension Library. * + * * + * The Dimension Library is free software; you can redistribute it and/ * + * or modify it under the terms of the GNU Lesser General Public License * + * as published by the Free Software Foundation; either version 3 of the * + * License, or (at your option) any later version. * + * * + * The Dimension Library is distributed in the hope that it will be * + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this program. If not, see * + * . * + *************************************************************************/ + +#ifndef DIMENSION_CAMERA_H +#define DIMENSION_CAMERA_H + +/* + * A camera. + */ + +typedef dmnsn_line dmnsn_camera_ray_fn(const dmnsn_canvas *canvas, + unsigned int x, unsigned int y); + +typedef struct { + /* Generic pointer for camera info */ + void *ptr; + + /* Callback function */ + dmnsn_camera_ray_fn *ray_fn; +} dmnsn_camera; + +dmnsn_camera *dmnsn_new_camera(); +void dmnsn_delete_camera(dmnsn_camera *camera); + +/* A perspective camera, at the origin, looking at (0, 0, 1) */ + +dmnsn_camera *dmnsn_new_perspective_camera(); +void dmnsn_delete_perspective_camera(dmnsn_camera *camera); + +#endif /* DIMENSION_CAMERA_H */ diff --git a/libdimension/dimension/scene.h b/libdimension/dimension/scene.h index e075cdd..a6f2e5d 100644 --- a/libdimension/dimension/scene.h +++ b/libdimension/dimension/scene.h @@ -28,10 +28,11 @@ typedef struct { dmnsn_color background; dmnsn_array *objects; + dmnsn_camera *camera; dmnsn_canvas *canvas; } dmnsn_scene; -dmnsn_scene *dmnsn_new_scene(unsigned int x, unsigned int y); +dmnsn_scene *dmnsn_new_scene(); void dmnsn_delete_scene(dmnsn_scene *scene); void dmnsn_raytrace_scene(dmnsn_scene *scene); diff --git a/libdimension/scene.c b/libdimension/scene.c index 541e3ba..780f8c6 100644 --- a/libdimension/scene.c +++ b/libdimension/scene.c @@ -22,19 +22,11 @@ #include /* For malloc */ dmnsn_scene * -dmnsn_new_scene(unsigned int x, unsigned int y) +dmnsn_new_scene() { dmnsn_scene *scene = malloc(sizeof(dmnsn_scene)); - if (scene) { + if (scene) scene->objects = dmnsn_new_array(sizeof(dmnsn_object*)); - - scene->canvas = dmnsn_new_canvas(x, y); - if (!scene->canvas) { - dmnsn_delete_array(scene->objects); - return NULL; - } - } - return scene; } @@ -52,18 +44,14 @@ dmnsn_raytrace_scene(dmnsn_scene *scene) { unsigned int i, j; dmnsn_object *object; - dmnsn_line l; + dmnsn_line ray; - l.x0 = dmnsn_vector_construct(0.0, 0.0, -3.0); dmnsn_array_get(scene->objects, 0, &object); for (i = 0; i < scene->canvas->x; ++i) { for (j = 0; j < scene->canvas->y; ++j) { - l.n.x = 1.6*(((double)i)/(scene->canvas->x - 1) - 0.5); - l.n.y = ((double)j)/(scene->canvas->y - 1) - 0.5; - l.n.z = 1.0; - - if ((*object->intersections_fn)(l)->length > 0) { + ray = (*scene->camera->ray_fn)(scene->canvas, i, j); + if ((*object->intersections_fn)(ray)->length > 0) { dmnsn_set_pixel(scene->canvas, i, j, dmnsn_color_from_XYZ(dmnsn_whitepoint)); } else { -- cgit v1.2.3