ccdemos/realtime_dragon.cc
author Radek Brich <radek.brich@devl.cz>
Mon, 21 Apr 2008 09:05:09 +0200
branchpyrit
changeset 75 20dee9819b17
parent 72 7c3f38dff082
child 80 907929fa9b59
permissions -rw-r--r--
unify capitalization of method names in C++ and Python

#include "raytracer.h"
#include "kdtree.h"

#include "common_sdl.h"
#include "common_ply.h"

int main(int argc, char **argv)
{
	Raytracer rt;
	KdTree top;
	Camera cam;

	rt.setMaxDepth(0);
	rt.setTop(&top);

	Light light1(Vector3(-5.0, 2.0, 8.0), Colour(0.9, 0.3, 0.6));
	light1.castShadows(false);
	rt.addLight(&light1);

	//Light light2(Vector3(-2.0, 10.0, 2.0), Colour(0.4, 0.6, 0.3));
	//light2.castShadows(false);
	//rt.addlight(&light2);

	Material mat(Colour(0.9, 0.9, 0.9));
	mat.setSmooth(true);
	load_ply(rt, "../models/ply/dragon/dragon_vrip.ply", &mat, Vector3(-29,29,-29), Vector3(0,-3.6,0));

	rt.setCamera(&cam);
	cam.setEye(Vector3(0,0,10));

	top.optimize();

	if (argc == 2 && strcmp(argv[1], "-buildonly") == 0)
		return 0;

	loop_sdl(rt, cam);
}