quakeforge/tools/Forge/Bundles/MapEdit/SetBrush.h

173 lines
3.1 KiB
C
Raw Normal View History

#ifndef SetBrush_h
#define SetBrush_h
#include <AppKit/AppKit.h>
#include "QF/mathlib.h"
#include "TexturePalette.h"
#define MAX_FACES 16
2010-09-11 10:06:04 +00:00
typedef struct {
int numpoints;
vec5_t points[8]; // variable sized
} winding_t;
#define MAX_POINTS_ON_WINDING 64
2010-09-11 10:06:04 +00:00
typedef struct {
vec3_t normal;
float dist;
} plane_t;
2010-09-11 10:06:04 +00:00
typedef struct {
// implicit rep
2010-09-11 10:06:04 +00:00
vec3_t planepts[3];
texturedef_t texture;
// cached rep
2010-09-11 10:06:04 +00:00
plane_t plane;
qtexture_t *qtexture;
float light; // 0 - 1.0
winding_t *w;
} face_t;
#define ON_EPSILON 0.1
#define FP_EPSILON 0.01
#define VECTOR_EPSILON 0.0001
#define SIDE_FRONT 0
#define SIDE_BACK 1
#define SIDE_ON 2
2010-09-11 10:06:04 +00:00
winding_t *ClipWinding (winding_t * in, plane_t *split);
winding_t *CopyWinding (winding_t * w);
winding_t *NewWinding (int points);
2010-09-11 23:14:08 +00:00
@interface SetBrush:NSObject
{
2010-09-11 10:06:04 +00:00
BOOL regioned; // not active
BOOL selected;
2010-09-11 10:06:04 +00:00
BOOL invalid; // not a proper polyhedron
2010-09-11 10:06:04 +00:00
id parent; // the entity this brush is in
vec3_t bmins, bmaxs;
vec3_t entitycolor;
int numfaces;
face_t faces[MAX_FACES];
}
2010-09-11 16:41:18 +00:00
-initOwner:own mins:(float *)mins maxs:(float *)maxs
texture:(texturedef_t *)tex;
-initFromScript:(struct script_s *)script owner:own;
-setMins:(float *)mins maxs:(float *)maxs;
2010-09-11 10:06:04 +00:00
-parent;
-setParent:(id) p;
2010-09-11 10:06:04 +00:00
-setEntityColor:(vec3_t) color;
2010-09-11 10:06:04 +00:00
-calcWindings;
- (void) writeToFILE:(FILE *)f region:(BOOL)reg;
2010-09-11 10:06:04 +00:00
-(BOOL) selected;
-(BOOL) regioned;
- (void) setSelected: (BOOL)s;
- (void) setRegioned: (BOOL)s;
- (void) getMins: (vec3_t)mins maxs: (vec3_t)maxs;
2010-09-11 10:06:04 +00:00
-(BOOL) containsPoint:(vec3_t) pt;
- (void) freeWindings;
2010-09-11 10:06:04 +00:00
-removeIfInvalid;
2010-09-11 16:41:18 +00:00
extern vec3_t region_min, region_max;
2010-09-11 10:06:04 +00:00
-newRegion;
-(texturedef_t *) texturedef;
-(texturedef_t *) texturedefForFace:(int) f;
- (void) setTexturedef:(texturedef_t *) tex;
- (void) setTexturedef:(texturedef_t *) tex forFace:(int) f;
2010-09-11 10:06:04 +00:00
- (void) XYDrawSelf;
- (void) ZDrawSelf;
- (void) CameraDrawSelf;
- (void) XYRenderSelf;
- (void) CameraRenderSelf;
2010-09-11 10:06:04 +00:00
- (void) hitByRay: (vec3_t)p1: (vec3_t)p2: (float *)time: (int *)face;
//
// single brush actions
//
2010-09-11 16:41:18 +00:00
extern int numcontrolpoints;
extern float *controlpoints[MAX_FACES * 3];
- (void) getZdragface: (vec3_t)dragpoint;
- (void) getXYdragface: (vec3_t)dragpoint;
- (void) getXYShearPoints: (vec3_t)dragpoint;
2010-09-11 10:06:04 +00:00
-addFace:(face_t *) f;
//
// multiple brush actions
//
- (void) carveByClipper;
2010-09-11 16:41:18 +00:00
extern vec3_t sb_translate;
- (void) translate;
2010-09-11 16:41:18 +00:00
extern id carve_in, carve_out;
- (void) select;
- (void) deselect;
- (void) remove;
- (void) flushTextures;
2010-09-11 16:41:18 +00:00
extern vec3_t sb_mins, sb_maxs;
- (void) addToBBox;
2010-09-11 16:41:18 +00:00
extern vec3_t sel_x, sel_y, sel_z;
extern vec3_t sel_org;
- (void) transform;
- (void) flipNormals;
2010-09-11 10:06:04 +00:00
-carve;
- (void) setCarveVars;
2010-09-11 16:41:18 +00:00
extern id sb_newowner;
- (void) moveToEntity;
2010-09-11 10:06:04 +00:00
- (void) takeCurrentTexture;
2010-09-11 16:41:18 +00:00
extern vec3_t select_min, select_max;
2010-09-11 10:06:04 +00:00
- (void) selectPartial;
- (void) selectComplete;
- (void) regionPartial;
- (void) regionComplete;
2010-09-11 10:06:04 +00:00
2010-09-11 16:41:18 +00:00
extern float sb_floor_dir, sb_floor_dist;
2010-09-11 10:06:04 +00:00
- (void) feetToFloor;
2010-09-11 10:06:04 +00:00
- (int) getNumBrushFaces;
- (face_t *) getBrushFace: (int)which;
2010-09-11 10:06:04 +00:00
@end
#endif // SetBrush_h