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
|
// worldocull.cpp: occlusion map and occlusion test
#include "cube.h"
#import "DynamicEntity.h"
#define NUMRAYS 512
float rdist[NUMRAYS];
bool ocull = true;
float odist = 256;
void
toggleocull()
{
ocull = !ocull;
}
COMMAND(toggleocull, ARG_NONE)
// constructs occlusion map: cast rays in all directions on the 2d plane and
// record distance. done exactly once per frame.
void
computeraytable(float vx, float vy)
{
|
>
<
|
<
|
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// worldocull.cpp: occlusion map and occlusion test
#include "cube.h"
#import "Command.h"
#import "DynamicEntity.h"
#define NUMRAYS 512
float rdist[NUMRAYS];
bool ocull = true;
float odist = 256;
COMMAND(toggleocull, ARG_NONE, ^{
ocull = !ocull;
})
// constructs occlusion map: cast rays in all directions on the 2d plane and
// record distance. done exactly once per frame.
void
computeraytable(float vx, float vy)
{
|