added 3dengfx into the repo, probably not the correct version for this
[summerhack] / src / 3dengfx / src / dsys / part.hpp
1 /*
2 This file is part of the 3dengfx demo system.
3
4 Copyright (c) 2004, 2005 John Tsiombikas <nuclear@siggraph.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program demo is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef _PART_HPP_
22 #define _PART_HPP_
23
24 #include "common/timer.h"
25 #include "dsys.hpp"
26
27 namespace dsys {
28
29         class Part {
30         protected:
31                 char *name;
32                 //ntimer timer;
33                 unsigned long start_time;
34                 unsigned long time;
35                 dsys::RenderTarget target;
36                 bool clear_fb;
37
38                 virtual void pre_draw();
39                 virtual void draw_part() = 0;
40                 virtual void post_draw();
41
42         public:
43
44                 Part(const char *name = 0);
45                 virtual ~Part();
46
47                 void set_name(const char *name);
48                 const char *get_name() const;
49                 virtual void set_clear(bool enable);
50
51                 virtual void start();
52                 virtual void stop();
53
54                 virtual void set_target(RenderTarget targ);
55
56                 virtual void update_graphics();
57
58                 /* the < operator compares the names,
59                  * intended for use by the binary tree.
60                  */
61                 bool operator <(const Part &part) const;
62         };
63 }
64
65 #endif  // _PART_HPP_