Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: b5afdf0da20ad5ddf1423f0d50d174d7d962e21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
   render/render.cc
   This file is part of the Osirion project and is distributed under 
   the terms of the GNU General Public License version 2 
*/

// project headers
#include "render/render.h"
#include "core/core.h"
#include "sys/sys.h"

namespace render {

GLuint textures[32];

core::Cvar *r_drawradius = 0;

void init() 
{
	con_print << "Initializing renderer..." << std::endl;

	con_print << "  renderer   " << gl::renderer() << std::endl;
	con_print << "  vendor     " << gl::vendor() << std::endl;
	con_print << "  version    " << gl::version() << std::endl;

	con_print << "Loading textures..." << std::endl;

	if (!TGA::texture(textures, "bitmaps/loader.tga", 0)) {
		//con_error << "Essential file bitmaps/loader.tga missing" << std::endl;
		core::application()->shutdown();
	}
	if (!TGA::texture(textures, "bitmaps/conchars.tga", 1)) {
		//con_error << "Essential file bitmaps/conchars.tga missing" << std::endl;
		core::application()->shutdown();
	}

	r_drawradius = core::Cvar::get("r_drawradius", "0", core::Cvar::Archive);
}

void shutdown()
{
	con_print << "Shutting down renderer..." << std::endl;
}

}