2008-03-25 10:02:13 +00:00
|
|
|
|
|
|
|
#ifndef __UI_H
|
|
|
|
#define __UI_H
|
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
class TextWindow {
|
|
|
|
public:
|
2008-04-27 05:00:12 +00:00
|
|
|
static const int MAX_COLS = 100;
|
|
|
|
static const int MAX_ROWS = 200;
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-26 09:18:12 +00:00
|
|
|
#ifndef RGB
|
|
|
|
#define RGB(r, g, b) ((r) | ((g) << 8) | ((b) << 16))
|
|
|
|
#endif
|
2008-03-28 10:00:37 +00:00
|
|
|
typedef struct {
|
2008-04-25 08:26:15 +00:00
|
|
|
char c;
|
2008-04-28 07:18:39 +00:00
|
|
|
int color;
|
2008-03-28 10:00:37 +00:00
|
|
|
} Color;
|
2008-04-28 07:18:39 +00:00
|
|
|
static const Color fgColors[];
|
|
|
|
static const Color bgColors[];
|
2008-03-25 10:02:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
BYTE text[MAX_ROWS][MAX_COLS];
|
2008-03-28 10:00:37 +00:00
|
|
|
typedef void LinkFunction(int link, DWORD v);
|
2008-04-28 07:18:39 +00:00
|
|
|
static const int NOT_A_LINK = 0;
|
2008-03-25 10:02:13 +00:00
|
|
|
struct {
|
2008-04-28 07:18:39 +00:00
|
|
|
char fg;
|
|
|
|
char bg;
|
2008-03-28 10:00:37 +00:00
|
|
|
int link;
|
|
|
|
DWORD data;
|
|
|
|
LinkFunction *f;
|
2008-03-25 10:02:13 +00:00
|
|
|
} meta[MAX_ROWS][MAX_COLS];
|
2008-04-28 07:18:39 +00:00
|
|
|
int top[MAX_ROWS]; // in half-line units, or -1 for unused
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-04-09 09:35:09 +00:00
|
|
|
int rows;
|
2008-03-25 10:02:13 +00:00
|
|
|
|
|
|
|
void Init(void);
|
2008-04-28 07:18:39 +00:00
|
|
|
void Printf(bool half, char *fmt, ...);
|
2008-03-25 10:02:13 +00:00
|
|
|
void ClearScreen(void);
|
2008-04-13 10:57:41 +00:00
|
|
|
|
2008-04-11 12:47:14 +00:00
|
|
|
void Show(void);
|
|
|
|
|
2008-04-12 14:12:26 +00:00
|
|
|
// State for the screen that we are showing in the text window.
|
2008-04-25 08:26:15 +00:00
|
|
|
static const int SCREEN_LIST_OF_GROUPS = 0;
|
|
|
|
static const int SCREEN_GROUP_INFO = 1;
|
|
|
|
static const int SCREEN_REQUEST_INFO = 2;
|
|
|
|
static const int SCREEN_ENTIY_INFO = 3;
|
2008-04-27 09:03:01 +00:00
|
|
|
static const int SCREEN_CONSTRAINT_INFO = 4;
|
2008-04-12 14:12:26 +00:00
|
|
|
typedef struct {
|
2008-04-25 08:26:15 +00:00
|
|
|
int screen;
|
|
|
|
hGroup group;
|
|
|
|
hRequest request;
|
2008-04-27 09:03:01 +00:00
|
|
|
hConstraint constraint;
|
2008-04-12 14:12:26 +00:00
|
|
|
} ShownState;
|
|
|
|
static const int HISTORY_LEN = 16;
|
|
|
|
ShownState showns[HISTORY_LEN];
|
|
|
|
int shownIndex;
|
|
|
|
int history;
|
|
|
|
ShownState *shown;
|
|
|
|
|
2008-04-11 12:47:14 +00:00
|
|
|
void ShowHeader(void);
|
2008-04-08 12:54:53 +00:00
|
|
|
// These are self-contained screens, that show some information about
|
|
|
|
// the sketch.
|
2008-04-25 08:26:15 +00:00
|
|
|
void ShowListOfGroups(void);
|
|
|
|
void ShowGroupInfo(void);
|
|
|
|
void ShowRequestInfo(void);
|
|
|
|
void ShowEntityInfo(void);
|
2008-04-27 09:03:01 +00:00
|
|
|
void ShowConstraintInfo(void);
|
2008-04-18 07:06:37 +00:00
|
|
|
|
2008-04-28 09:40:02 +00:00
|
|
|
void OneScreenForwardTo(int screen);
|
2008-04-12 14:12:26 +00:00
|
|
|
static void ScreenSelectGroup(int link, DWORD v);
|
2008-04-27 09:03:01 +00:00
|
|
|
static void ScreenActivateGroup(int link, DWORD v);
|
2008-04-28 07:18:39 +00:00
|
|
|
static void ScreenToggleGroupShown(int link, DWORD v);
|
|
|
|
|
2008-04-25 08:26:15 +00:00
|
|
|
static void ScreenSelectRequest(int link, DWORD v);
|
2008-04-27 09:03:01 +00:00
|
|
|
static void ScreenSelectConstraint(int link, DWORD v);
|
2008-04-22 13:14:15 +00:00
|
|
|
static void ScreenNavigation(int link, DWORD v);
|
2008-03-28 10:00:37 +00:00
|
|
|
};
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-28 10:00:37 +00:00
|
|
|
class GraphicsWindow {
|
|
|
|
public:
|
2008-04-12 15:17:58 +00:00
|
|
|
void Init(void);
|
|
|
|
|
2008-03-26 09:18:12 +00:00
|
|
|
// This table describes the top-level menus in the graphics winodw.
|
2008-04-12 15:17:58 +00:00
|
|
|
typedef enum {
|
2008-04-18 11:11:48 +00:00
|
|
|
// File
|
|
|
|
MNU_NEW = 100,
|
|
|
|
MNU_OPEN,
|
|
|
|
MNU_SAVE,
|
|
|
|
MNU_SAVE_AS,
|
|
|
|
MNU_EXIT,
|
2008-04-13 10:57:41 +00:00
|
|
|
// View
|
2008-04-18 11:11:48 +00:00
|
|
|
MNU_ZOOM_IN,
|
2008-04-12 15:17:58 +00:00
|
|
|
MNU_ZOOM_OUT,
|
|
|
|
MNU_ZOOM_TO_FIT,
|
2008-04-27 05:00:12 +00:00
|
|
|
MNU_SHOW_TEXT_WND,
|
2008-04-22 13:14:15 +00:00
|
|
|
MNU_UNITS_INCHES,
|
|
|
|
MNU_UNITS_MM,
|
2008-04-14 10:28:32 +00:00
|
|
|
// Edit
|
|
|
|
MNU_DELETE,
|
2008-04-27 05:00:12 +00:00
|
|
|
MNU_UNSELECT_ALL,
|
2008-04-13 10:57:41 +00:00
|
|
|
// Request
|
2008-04-27 03:26:27 +00:00
|
|
|
MNU_SEL_WORKPLANE,
|
|
|
|
MNU_FREE_IN_3D,
|
2008-04-13 10:57:41 +00:00
|
|
|
MNU_DATUM_POINT,
|
|
|
|
MNU_LINE_SEGMENT,
|
2008-04-22 10:53:42 +00:00
|
|
|
MNU_RECTANGLE,
|
2008-04-25 12:07:17 +00:00
|
|
|
MNU_CUBIC,
|
2008-04-27 09:03:01 +00:00
|
|
|
// Group
|
|
|
|
MNU_GROUP_DRAWING,
|
|
|
|
MNU_GROUP_EXTRUDE,
|
2008-04-14 10:28:32 +00:00
|
|
|
// Constrain
|
|
|
|
MNU_DISTANCE_DIA,
|
2008-04-22 05:00:49 +00:00
|
|
|
MNU_EQUAL,
|
2008-04-21 08:16:38 +00:00
|
|
|
MNU_ON_ENTITY,
|
2008-04-30 08:14:32 +00:00
|
|
|
MNU_SYMMETRIC,
|
|
|
|
MNU_AT_MIDPOINT,
|
2008-04-23 07:29:19 +00:00
|
|
|
MNU_HORIZONTAL,
|
|
|
|
MNU_VERTICAL,
|
2008-04-27 05:00:12 +00:00
|
|
|
MNU_SOLVE_AUTO,
|
2008-04-20 11:35:10 +00:00
|
|
|
MNU_SOLVE_NOW,
|
2008-04-12 15:17:58 +00:00
|
|
|
} MenuId;
|
2008-04-14 10:28:32 +00:00
|
|
|
typedef void MenuHandler(int id);
|
2008-03-26 09:18:12 +00:00
|
|
|
typedef struct {
|
2008-04-01 10:48:44 +00:00
|
|
|
int level; // 0 == on menu bar, 1 == one level down
|
2008-03-26 09:18:12 +00:00
|
|
|
char *label; // or NULL for a separator
|
|
|
|
int id; // unique ID
|
2008-04-12 15:17:58 +00:00
|
|
|
int accel; // keyboard accelerator
|
2008-03-26 09:18:12 +00:00
|
|
|
MenuHandler *fn;
|
|
|
|
} MenuEntry;
|
|
|
|
static const MenuEntry menu[];
|
2008-04-14 10:28:32 +00:00
|
|
|
static void MenuView(int id);
|
|
|
|
static void MenuEdit(int id);
|
|
|
|
static void MenuRequest(int id);
|
2008-04-12 14:12:26 +00:00
|
|
|
|
2008-04-01 10:48:44 +00:00
|
|
|
// The width and height (in pixels) of the window.
|
|
|
|
double width, height;
|
2008-03-25 10:02:13 +00:00
|
|
|
// These parameters define the map from 2d screen coordinates to the
|
|
|
|
// coordinates of the 3d sketch points. We will use an axonometric
|
|
|
|
// projection.
|
|
|
|
Vector offset;
|
|
|
|
Vector projRight;
|
2008-04-12 15:17:58 +00:00
|
|
|
Vector projUp;
|
2008-03-27 09:53:51 +00:00
|
|
|
double scale;
|
|
|
|
struct {
|
|
|
|
Vector offset;
|
|
|
|
Vector projRight;
|
2008-04-12 15:17:58 +00:00
|
|
|
Vector projUp;
|
2008-03-27 09:53:51 +00:00
|
|
|
Point2d mouse;
|
|
|
|
} orig;
|
|
|
|
|
2008-04-28 09:40:02 +00:00
|
|
|
// When the user is dragging a point, don't solve multiple times without
|
|
|
|
// allowing a paint in between. The extra solves are wasted if they're
|
|
|
|
// not displayed.
|
|
|
|
bool havePainted;
|
|
|
|
|
2008-03-27 09:53:51 +00:00
|
|
|
void NormalizeProjectionVectors(void);
|
2008-04-12 14:12:26 +00:00
|
|
|
Point2d ProjectPoint(Vector p);
|
2008-04-25 08:26:15 +00:00
|
|
|
void AnimateOnto(Quaternion quatf, Vector offsetf);
|
2008-04-13 10:57:41 +00:00
|
|
|
|
2008-04-22 13:14:15 +00:00
|
|
|
typedef enum {
|
|
|
|
UNIT_MM = 0,
|
|
|
|
UNIT_INCHES,
|
|
|
|
} Unit;
|
|
|
|
Unit viewUnits;
|
|
|
|
|
2008-04-13 10:57:41 +00:00
|
|
|
hGroup activeGroup;
|
2008-04-27 03:26:27 +00:00
|
|
|
hEntity activeWorkplane;
|
2008-04-18 07:06:37 +00:00
|
|
|
void EnsureValidActives();
|
2008-04-13 10:57:41 +00:00
|
|
|
|
|
|
|
// Operations that must be completed by doing something with the mouse
|
|
|
|
// are noted here.
|
2008-04-25 12:07:17 +00:00
|
|
|
static const int DRAGGING_POINT = 0x0f000000;
|
|
|
|
static const int DRAGGING_NEW_POINT = 0x0f000001;
|
|
|
|
static const int DRAGGING_NEW_LINE_POINT = 0x0f000002;
|
|
|
|
static const int DRAGGING_NEW_CUBIC_POINT = 0x0f000003;
|
|
|
|
static const int DRAGGING_CONSTRAINT = 0x0f000004;
|
2008-04-22 10:53:42 +00:00
|
|
|
hEntity pendingPoint;
|
|
|
|
hConstraint pendingConstraint;
|
|
|
|
int pendingOperation;
|
|
|
|
char *pendingDescription;
|
2008-04-13 10:57:41 +00:00
|
|
|
hRequest AddRequest(int type);
|
|
|
|
|
2008-04-21 10:12:04 +00:00
|
|
|
// The constraint that is being edited with the on-screen textbox.
|
|
|
|
hConstraint constraintBeingEdited;
|
2008-04-11 12:47:14 +00:00
|
|
|
|
2008-04-12 14:12:26 +00:00
|
|
|
// The current selection.
|
|
|
|
class Selection {
|
|
|
|
public:
|
|
|
|
hEntity entity;
|
2008-04-14 10:28:32 +00:00
|
|
|
hConstraint constraint;
|
2008-04-12 14:12:26 +00:00
|
|
|
|
|
|
|
void Draw(void);
|
|
|
|
|
|
|
|
void Clear(void);
|
|
|
|
bool IsEmpty(void);
|
|
|
|
bool Equals(Selection *b);
|
|
|
|
};
|
|
|
|
Selection hover;
|
|
|
|
static const int MAX_SELECTED = 32;
|
|
|
|
Selection selection[MAX_SELECTED];
|
2008-04-23 07:29:19 +00:00
|
|
|
void HitTestMakeSelection(Point2d mp);
|
2008-04-12 15:17:58 +00:00
|
|
|
void ClearSelection(void);
|
|
|
|
struct {
|
2008-04-19 11:09:47 +00:00
|
|
|
hEntity point[MAX_SELECTED];
|
2008-04-12 15:17:58 +00:00
|
|
|
hEntity entity[MAX_SELECTED];
|
|
|
|
int points;
|
|
|
|
int entities;
|
2008-04-27 03:26:27 +00:00
|
|
|
int workplanes;
|
2008-04-21 08:16:38 +00:00
|
|
|
int planes;
|
2008-04-14 10:28:32 +00:00
|
|
|
int lineSegments;
|
2008-04-12 15:17:58 +00:00
|
|
|
int n;
|
|
|
|
} gs;
|
|
|
|
void GroupSelection(void);
|
2008-04-12 14:12:26 +00:00
|
|
|
|
2008-04-11 12:47:14 +00:00
|
|
|
// This sets what gets displayed.
|
2008-04-27 03:26:27 +00:00
|
|
|
bool showWorkplanes;
|
2008-04-11 12:47:14 +00:00
|
|
|
bool showAxes;
|
|
|
|
bool showPoints;
|
|
|
|
bool showAllGroups;
|
|
|
|
bool showConstraints;
|
2008-04-27 05:00:12 +00:00
|
|
|
bool showTextWindow;
|
2008-04-11 12:47:14 +00:00
|
|
|
static void ToggleBool(int link, DWORD v);
|
|
|
|
static void ToggleAnyDatumShown(int link, DWORD v);
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-04-27 05:00:12 +00:00
|
|
|
static const int DONT_SOLVE = 0;
|
|
|
|
static const int SOLVE_ALWAYS = 1;
|
|
|
|
int solving;
|
|
|
|
|
2008-04-14 10:28:32 +00:00
|
|
|
void UpdateDraggedPoint(Vector *pos, double mx, double my);
|
2008-04-19 11:09:47 +00:00
|
|
|
void UpdateDraggedEntity(hEntity hp, double mx, double my);
|
2008-04-13 10:57:41 +00:00
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
// These are called by the platform-specific code.
|
2008-03-27 09:53:51 +00:00
|
|
|
void Paint(int w, int h);
|
2008-03-25 10:02:13 +00:00
|
|
|
void MouseMoved(double x, double y, bool leftDown, bool middleDown,
|
2008-03-27 09:53:51 +00:00
|
|
|
bool rightDown, bool shiftDown, bool ctrlDown);
|
|
|
|
void MouseLeftDown(double x, double y);
|
2008-04-22 10:53:42 +00:00
|
|
|
void MouseLeftUp(double x, double y);
|
2008-03-25 10:02:13 +00:00
|
|
|
void MouseLeftDoubleClick(double x, double y);
|
2008-03-27 09:53:51 +00:00
|
|
|
void MouseMiddleDown(double x, double y);
|
2008-04-01 10:48:44 +00:00
|
|
|
void MouseScroll(double x, double y, int delta);
|
2008-04-21 10:12:04 +00:00
|
|
|
void EditControlDone(char *s);
|
2008-03-28 10:00:37 +00:00
|
|
|
};
|
2008-03-25 10:02:13 +00:00
|
|
|
|
2008-03-26 09:18:12 +00:00
|
|
|
|
2008-03-25 10:02:13 +00:00
|
|
|
#endif
|