forked from barak/quantumminigolf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Renderer.h
92 lines (73 loc) · 2.55 KB
/
Renderer.h
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#pragma once
//Renderer - a class encapsulating all neccessary graphics functions,
// such as drawing balls, holes, menus, waves and blitting the rendered
// graphics to the screen.
// There is one global Renderer instance, to which many other classes posess
// pointers
/* Quantum Minigolf, a computer game illustrating quantum mechanics
Copyright (C) 2007 Friedemann Reinhard <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <math.h>
#include <stdlib.h>
#include <string>
#include <SDL.h>
#include <SDL_ttf.h>
#include <fftw3.h>
using namespace std;
#include "quantumminigolf.h"
class Renderer
{
public:
Renderer (int width, int height, int flag, int holex, int holey, int holer,
int rball);
~Renderer (void);
void RenderTrack (void);
void RenderBlack (void);
void RenderHole (float x, float y, float r);
void RenderWave (fftwf_complex * psi);
void RenderBall (float posx, float posy);
void RenderRacket (float l, float r, int ix, int iy, float rphi);
void RenderFlash (void); // show a white surface
void RenderExtro (int result, int ypos); // show the "You win" / "You lose"
void RenderMenu (bool quantum);
void Lock (void);
void Unlock (void);
void Blit (void);
void SaveFrame (const char *fname);
void ToggleCmap ()
{
cmap = ((cmap == cmapm) ? cmapc : cmapm);
}
void ToggleBackgroundRendering ()
{
renderTrack = !renderTrack;
renderHole = !renderHole;
}
SDL_Surface *screen, *V;
int width;
int height;
private:
SDL_Surface * bBuffer; // the back buffer
SDL_Surface *wave; // the wave
SDL_Surface *cmapm, *cmapc, *cmap; // monochrome, colored and a pointer to the actual color map
SDL_Surface *win;
SDL_Surface *lose;
SDL_Rect rBuffer;
// fonts for the menu
TTF_Font *fntsml;
TTF_Font *fntbg;
int holex, holey, holer; // position and radius of the hole
int rball; // radius of the ball
bool renderTrack, renderHole;
};