2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 08:35:25 +00:00
|
|
|
#include "KeypairView.h"
|
|
|
|
#include "TextureView.h"
|
|
|
|
#include "TexturePalette.h"
|
|
|
|
|
|
|
|
#include "Storage.h"
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
NOTE: I am specifically not using cached image reps, because the data is also needed for texturing the views, and a cached rep would waste tons of space.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@implementation TextureView
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
-init
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
|
|
|
deselectIndex = -1;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
-setParent:(id) from
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
|
|
|
parent_i = from;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
-(BOOL) acceptsFirstMouse
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
-drawSelf: (const NSRect *) rects:(int) rectCount
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
2010-09-11 10:03:41 +00:00
|
|
|
int i;
|
|
|
|
int max;
|
|
|
|
id list_i;
|
|
|
|
texpal_t *t;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
NSPoint p;
|
|
|
|
NSRect r;
|
|
|
|
int selected;
|
|
|
|
|
|
|
|
selected =[parent_i getSelectedTexture];
|
|
|
|
list_i =[parent_i getList];
|
2010-09-14 13:17:35 +00:00
|
|
|
[[NSFont systemFontOfSize: FONTSIZE] set];
|
2010-09-11 10:03:41 +00:00
|
|
|
PSrotate (0);
|
|
|
|
|
|
|
|
PSsetgray (NSLightGray);
|
|
|
|
PSrectfill (rects->origin.x, rects->origin.y,
|
|
|
|
rects->size.width, rects->size.height);
|
|
|
|
|
|
|
|
if (!list_i) // WADfile didn't init
|
2003-03-18 19:48:24 +00:00
|
|
|
return self;
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
if (deselectIndex != -1) {
|
|
|
|
t =[list_i elementAt:deselectIndex];
|
2003-03-18 19:48:24 +00:00
|
|
|
r = t->r;
|
|
|
|
r.origin.x -= TEX_INDENT;
|
|
|
|
r.origin.y -= TEX_INDENT;
|
2010-09-11 10:03:41 +00:00
|
|
|
r.size.width += TEX_INDENT * 2;
|
|
|
|
r.size.height += TEX_INDENT * 2;
|
|
|
|
|
2010-09-11 11:30:01 +00:00
|
|
|
PSsetgray(NSLightGray);
|
2010-09-11 10:03:41 +00:00
|
|
|
PSrectfill (r.origin.x, r.origin.y, r.size.width, r.size.height);
|
2003-03-18 19:48:24 +00:00
|
|
|
p = t->r.origin;
|
|
|
|
p.y += TEX_SPACING;
|
2010-09-11 10:03:41 +00:00
|
|
|
[t->image drawAtPoint: p fromRect: r operation: NSCompositeCopy fraction:1.0];
|
|
|
|
PSsetgray (0);
|
2003-03-18 19:48:24 +00:00
|
|
|
x = t->r.origin.x;
|
|
|
|
y = t->r.origin.y + 7;
|
2010-09-11 10:03:41 +00:00
|
|
|
PSmoveto (x, y);
|
|
|
|
PSshow (t->name);
|
|
|
|
PSstroke ();
|
2003-03-18 19:48:24 +00:00
|
|
|
deselectIndex = -1;
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
max =[list_i count];
|
|
|
|
PSsetgray (0);
|
2003-03-18 19:48:24 +00:00
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
t =[list_i elementAt:i];
|
2003-03-18 19:48:24 +00:00
|
|
|
r = t->r;
|
2010-09-11 10:03:41 +00:00
|
|
|
r.origin.x -= TEX_INDENT / 2;
|
2003-03-18 19:48:24 +00:00
|
|
|
r.size.width += TEX_INDENT;
|
|
|
|
r.origin.y += 4;
|
2010-09-11 10:03:41 +00:00
|
|
|
if (NSIntersectsRect (rects[0], r) == YES && t->display) {
|
|
|
|
if (selected == i) {
|
|
|
|
PSsetgray (1);
|
|
|
|
PSrectfill (r.origin.x, r.origin.y,
|
|
|
|
r.size.width, r.size.height);
|
|
|
|
PSsetrgbcolor (1, 0, 0);
|
|
|
|
PSrectstroke (r.origin.x, r.origin.y,
|
|
|
|
r.size.width, r.size.height);
|
|
|
|
PSsetgray (0);
|
2003-03-18 19:48:24 +00:00
|
|
|
}
|
2010-09-11 10:03:41 +00:00
|
|
|
|
2003-03-18 19:48:24 +00:00
|
|
|
p = t->r.origin;
|
|
|
|
p.y += TEX_SPACING;
|
2010-09-11 10:03:41 +00:00
|
|
|
[t->image drawAtPoint: p fromRect: r operation: NSCompositeCopy fraction:1.0];
|
2003-03-18 19:48:24 +00:00
|
|
|
x = t->r.origin.x;
|
|
|
|
y = t->r.origin.y + 7;
|
2010-09-11 10:03:41 +00:00
|
|
|
PSmoveto (x, y);
|
|
|
|
PSshow (t->name);
|
2003-03-18 19:48:24 +00:00
|
|
|
}
|
|
|
|
}
|
2010-09-11 10:03:41 +00:00
|
|
|
PSstroke ();
|
2003-03-18 19:48:24 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
-deselect
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
2010-09-11 10:03:41 +00:00
|
|
|
deselectIndex =[parent_i getSelectedTexture];
|
2003-03-18 19:48:24 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:03:41 +00:00
|
|
|
-mouseDown:(NSEvent *) theEvent
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
2010-09-11 10:03:41 +00:00
|
|
|
NSPoint loc;
|
|
|
|
int i;
|
|
|
|
int max;
|
|
|
|
|
|
|
|
// int oldwindowmask;
|
|
|
|
texpal_t *t;
|
|
|
|
id list;
|
|
|
|
NSRect r;
|
|
|
|
|
|
|
|
// oldwindowmask = [window addToEventMask:NSLeftMouseDraggedMask];
|
|
|
|
loc =[theEvent locationInWindow];
|
|
|
|
[self convertPoint: loc fromView:NULL];
|
|
|
|
|
|
|
|
list =[parent_i getList];
|
|
|
|
max =[list count];
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
t =[list elementAt:i];
|
2003-03-18 19:48:24 +00:00
|
|
|
r = t->r;
|
2010-09-11 10:03:41 +00:00
|
|
|
if (NSPointInRect (loc, r) == YES) {
|
|
|
|
[self deselect];
|
|
|
|
[parent_i setSelectedTexture:i];
|
2003-03-18 19:48:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-09-11 10:03:41 +00:00
|
|
|
|
|
|
|
// [window setEventMask:oldwindowmask];
|
2003-03-18 19:48:24 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|