2010-09-01 10:37:10 +00:00
|
|
|
#ifndef TexturePalette_h
|
|
|
|
#define TexturePalette_h
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-09 11:46:38 +00:00
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
|
|
|
|
#include "QF/qtypes.h"
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
typedef union {
|
|
|
|
byte chan[4];
|
|
|
|
unsigned p;
|
2003-03-18 19:48:24 +00:00
|
|
|
} pixel32_t;
|
|
|
|
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
typedef struct {
|
|
|
|
char texture[16];
|
|
|
|
float rotate;
|
|
|
|
float shift[2];
|
|
|
|
float scale[2];
|
2003-03-18 19:48:24 +00:00
|
|
|
} texturedef_t;
|
|
|
|
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
typedef struct {
|
|
|
|
char name[16];
|
|
|
|
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
NSBitmapImageRep *rep;
|
|
|
|
void *data;
|
|
|
|
pixel32_t flatcolor;
|
2003-03-18 19:48:24 +00:00
|
|
|
} qtexture_t;
|
|
|
|
|
|
|
|
#define MAX_TEXTURES 1024
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
extern int tex_count;
|
|
|
|
extern qtexture_t qtextures[MAX_TEXTURES];
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
void TEX_InitFromWad (char *path);
|
2003-03-18 19:48:24 +00:00
|
|
|
qtexture_t *TEX_ForName (char *name);
|
|
|
|
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
typedef struct {
|
|
|
|
id image; // NSImage
|
|
|
|
NSRect r;
|
|
|
|
char *name;
|
|
|
|
int index;
|
|
|
|
int display; // flag (on/off)
|
2003-03-18 19:48:24 +00:00
|
|
|
} texpal_t;
|
|
|
|
|
|
|
|
#define TEX_INDENT 10
|
|
|
|
#define TEX_SPACING 16
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
extern id texturepalette_i;
|
|
|
|
|
|
|
|
@interface TexturePalette:NSObject {
|
|
|
|
char currentwad[1024];
|
|
|
|
id textureList_i;
|
|
|
|
id textureView_i;
|
|
|
|
id searchField_i;
|
|
|
|
id sizeField_i;
|
|
|
|
|
|
|
|
id field_Xshift_i;
|
|
|
|
id field_Yshift_i;
|
|
|
|
id field_Xscale_i;
|
|
|
|
id field_Yscale_i;
|
|
|
|
id field_Rotate_i;
|
|
|
|
|
|
|
|
int viewWidth;
|
|
|
|
int viewHeight;
|
|
|
|
int selectedTexture;
|
2003-03-18 19:48:24 +00:00
|
|
|
}
|
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-(char *) currentWad;
|
|
|
|
-initPaletteFromWadfile:(char *) wf;
|
|
|
|
-computeTextureViewSize;
|
|
|
|
-alphabetize;
|
|
|
|
-getList;
|
|
|
|
-(int) getSelectedTexture;
|
|
|
|
-setSelectedTexture:(int) which;
|
|
|
|
-(int) getSelectedTexIndex;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
// Called externally
|
2010-09-11 10:06:04 +00:00
|
|
|
-(char *) getSelTextureName;
|
|
|
|
-setTextureByName:(char *) name;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
// New methods to replace the 2 above ones
|
2010-09-11 10:06:04 +00:00
|
|
|
-setTextureDef:(texturedef_t *) td;
|
|
|
|
-getTextureDef:(texturedef_t *) td;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
// Action methods
|
2010-09-11 10:06:04 +00:00
|
|
|
-searchForTexture:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-clearTexinfo:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-incXShift:sender;
|
|
|
|
-decXShift:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-incYShift:sender;
|
|
|
|
-decYShift:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-incRotate:sender;
|
|
|
|
-decRotate:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-incXScale:sender;
|
|
|
|
-decXScale:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-incYScale:sender;
|
|
|
|
-decYScale:sender;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:06:04 +00:00
|
|
|
-texturedefChanged:sender;
|
|
|
|
-onlyShowMapTextures:sender;
|
|
|
|
-(int) searchForTextureInPalette:(char *) texture;
|
|
|
|
-setDisplayFlag:(int)
|
|
|
|
index
|
|
|
|
to:(int)
|
|
|
|
value;
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
@end
|
2010-09-11 10:06:04 +00:00
|
|
|
#endif // TexturePalette_h
|