2008-03-25 10:02:13 +00:00
|
|
|
#include "solvespace.h"
|
|
|
|
|
|
|
|
SolveSpace SS;
|
|
|
|
|
2008-04-24 06:22:16 +00:00
|
|
|
void SolveSpace::Init(char *cmdLine) {
|
2008-06-11 04:22:52 +00:00
|
|
|
int i;
|
|
|
|
// Default list of colors for the model material
|
|
|
|
modelColor[0] = CnfThawDWORD(RGB(150, 150, 150), "ModelColor_0");
|
|
|
|
modelColor[1] = CnfThawDWORD(RGB(100, 100, 100), "ModelColor_1");
|
|
|
|
modelColor[2] = CnfThawDWORD(RGB( 30, 30, 30), "ModelColor_2");
|
|
|
|
modelColor[3] = CnfThawDWORD(RGB(150, 0, 0), "ModelColor_3");
|
|
|
|
modelColor[4] = CnfThawDWORD(RGB( 0, 100, 0), "ModelColor_4");
|
|
|
|
modelColor[5] = CnfThawDWORD(RGB( 0, 80, 80), "ModelColor_5");
|
|
|
|
modelColor[6] = CnfThawDWORD(RGB( 0, 0, 130), "ModelColor_6");
|
|
|
|
modelColor[7] = CnfThawDWORD(RGB( 80, 0, 80), "ModelColor_7");
|
|
|
|
// Light intensities
|
|
|
|
lightIntensity[0] = ((int)CnfThawDWORD( 700, "LightIntensity_0"))/1000.0;
|
|
|
|
lightIntensity[1] = ((int)CnfThawDWORD( 400, "LightIntensity_1"))/1000.0;
|
|
|
|
// Light positions
|
2008-06-11 04:30:18 +00:00
|
|
|
lightDir[0].x = ((int)CnfThawDWORD(-500, "LightDir_0_Right" ))/1000.0;
|
|
|
|
lightDir[0].y = ((int)CnfThawDWORD( 500, "LightDir_0_Up" ))/1000.0;
|
|
|
|
lightDir[0].z = ((int)CnfThawDWORD( 0, "LightDir_0_Forward" ))/1000.0;
|
|
|
|
lightDir[1].x = ((int)CnfThawDWORD( 500, "LightDir_1_Right" ))/1000.0;
|
|
|
|
lightDir[1].y = ((int)CnfThawDWORD( 0, "LightDir_1_Up" ))/1000.0;
|
|
|
|
lightDir[1].z = ((int)CnfThawDWORD( 0, "LightDir_1_Forward" ))/1000.0;
|
2008-06-11 04:22:52 +00:00
|
|
|
// Mesh tolerance
|
|
|
|
meshTol = ((int)CnfThawDWORD(1000, "MeshTolerance"))/1000.0;
|
2008-06-14 09:51:25 +00:00
|
|
|
// View units
|
|
|
|
viewUnits = (Unit)CnfThawDWORD((DWORD)UNIT_MM, "ViewUnits");
|
2008-06-11 04:22:52 +00:00
|
|
|
// Recent files menus
|
|
|
|
for(i = 0; i < MAX_RECENT; i++) {
|
|
|
|
char name[100];
|
|
|
|
sprintf(name, "RecentFile_%d", i);
|
|
|
|
strcpy(RecentFile[i], "");
|
|
|
|
CnfThawString(RecentFile[i], MAX_PATH, name);
|
|
|
|
}
|
|
|
|
RefreshRecentMenus();
|
|
|
|
|
|
|
|
// Start with either an empty file, or the file specified on the
|
|
|
|
// command line.
|
2008-05-29 10:10:12 +00:00
|
|
|
NewFile();
|
|
|
|
AfterNewFile();
|
|
|
|
if(strlen(cmdLine) != 0) {
|
2008-05-28 10:10:31 +00:00
|
|
|
if(LoadFromFile(cmdLine)) {
|
|
|
|
strcpy(saveFile, cmdLine);
|
|
|
|
} else {
|
|
|
|
NewFile();
|
|
|
|
}
|
2008-04-24 06:22:16 +00:00
|
|
|
}
|
2008-05-28 10:10:31 +00:00
|
|
|
AfterNewFile();
|
|
|
|
}
|
|
|
|
|
2008-06-11 04:22:52 +00:00
|
|
|
void SolveSpace::Exit(void) {
|
|
|
|
int i;
|
|
|
|
char name[100];
|
|
|
|
// Recent files
|
|
|
|
for(i = 0; i < MAX_RECENT; i++) {
|
|
|
|
sprintf(name, "RecentFile_%d", i);
|
|
|
|
CnfFreezeString(RecentFile[i], name);
|
|
|
|
}
|
|
|
|
// Model colors
|
|
|
|
for(i = 0; i < MODEL_COLORS; i++) {
|
|
|
|
sprintf(name, "ModelColor_%d", i);
|
|
|
|
CnfFreezeDWORD(modelColor[i], name);
|
|
|
|
}
|
|
|
|
// Light intensities
|
|
|
|
CnfFreezeDWORD((int)(lightIntensity[0]*1000), "LightIntensity_0");
|
|
|
|
CnfFreezeDWORD((int)(lightIntensity[1]*1000), "LightIntensity_1");
|
2008-06-11 04:30:18 +00:00
|
|
|
// Light directions
|
|
|
|
CnfFreezeDWORD((int)(lightDir[0].x*1000), "LightDir_0_Right");
|
|
|
|
CnfFreezeDWORD((int)(lightDir[0].y*1000), "LightDir_0_Up");
|
|
|
|
CnfFreezeDWORD((int)(lightDir[0].z*1000), "LightDir_0_Forward");
|
|
|
|
CnfFreezeDWORD((int)(lightDir[1].x*1000), "LightDir_1_Right");
|
|
|
|
CnfFreezeDWORD((int)(lightDir[1].y*1000), "LightDir_1_Up");
|
|
|
|
CnfFreezeDWORD((int)(lightDir[1].z*1000), "LightDir_1_Forward");
|
2008-06-11 04:22:52 +00:00
|
|
|
// Mesh tolerance
|
|
|
|
CnfFreezeDWORD((int)(meshTol*1000), "MeshTolerance");
|
2008-06-14 09:51:25 +00:00
|
|
|
// Display/entry units
|
|
|
|
CnfFreezeDWORD((int)viewUnits, "ViewUnits");
|
2008-06-11 04:22:52 +00:00
|
|
|
ExitNow();
|
|
|
|
}
|
|
|
|
|
2008-06-03 18:28:41 +00:00
|
|
|
void SolveSpace::DoLater(void) {
|
|
|
|
if(later.generateAll) GenerateAll();
|
|
|
|
if(later.showTW) TW.Show();
|
|
|
|
ZERO(&later);
|
|
|
|
}
|
|
|
|
|
2008-06-11 04:22:52 +00:00
|
|
|
int SolveSpace::CircleSides(double r) {
|
|
|
|
int s = 7 + (int)(sqrt(r*SS.GW.scale/meshTol));
|
|
|
|
return min(s, 40);
|
|
|
|
}
|
|
|
|
|
2008-06-14 09:51:25 +00:00
|
|
|
char *SolveSpace::MmToString(double v) {
|
|
|
|
static int WhichBuf;
|
|
|
|
static char Bufs[8][128];
|
|
|
|
|
|
|
|
WhichBuf++;
|
|
|
|
if(WhichBuf >= 8 || WhichBuf < 0) WhichBuf = 0;
|
|
|
|
|
|
|
|
char *s = Bufs[WhichBuf];
|
|
|
|
if(viewUnits == UNIT_INCHES) {
|
|
|
|
sprintf(s, "%.3f", v/25.4);
|
|
|
|
} else {
|
|
|
|
sprintf(s, "%.2f", v);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
double SolveSpace::ExprToMm(Expr *e) {
|
|
|
|
if(viewUnits == UNIT_INCHES) {
|
|
|
|
return (e->Eval())*25.4;
|
|
|
|
} else {
|
|
|
|
return e->Eval();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-28 10:10:31 +00:00
|
|
|
void SolveSpace::AfterNewFile(void) {
|
2008-05-29 10:10:12 +00:00
|
|
|
ReloadAllImported();
|
2008-06-02 09:31:26 +00:00
|
|
|
GenerateAll(-1, -1);
|
2008-05-25 13:11:44 +00:00
|
|
|
|
2008-04-13 10:57:41 +00:00
|
|
|
TW.Init();
|
|
|
|
GW.Init();
|
|
|
|
|
2008-06-03 18:28:41 +00:00
|
|
|
unsaved = false;
|
2008-06-12 07:31:41 +00:00
|
|
|
|
|
|
|
int w, h;
|
|
|
|
GetGraphicsWindowSize(&w, &h);
|
|
|
|
GW.width = w;
|
|
|
|
GW.height = h;
|
|
|
|
GW.ZoomToFit();
|
2008-06-12 08:58:58 +00:00
|
|
|
|
|
|
|
GenerateAll(0, INT_MAX);
|
|
|
|
later.showTW = true;
|
2008-04-08 12:54:53 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 11:43:27 +00:00
|
|
|
void SolveSpace::MarkGroupDirtyByEntity(hEntity he) {
|
|
|
|
Entity *e = SS.GetEntity(he);
|
|
|
|
MarkGroupDirty(e->group);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SolveSpace::MarkGroupDirty(hGroup hg) {
|
|
|
|
int i;
|
|
|
|
bool go = false;
|
|
|
|
for(i = 0; i < group.n; i++) {
|
|
|
|
Group *g = &(group.elem[i]);
|
|
|
|
if(g->h.v == hg.v) {
|
|
|
|
go = true;
|
|
|
|
}
|
|
|
|
if(go) {
|
|
|
|
g->clean = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unsaved = true;
|
|
|
|
}
|
|
|
|
|
2008-05-17 06:04:55 +00:00
|
|
|
bool SolveSpace::PruneOrphans(void) {
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < request.n; i++) {
|
|
|
|
Request *r = &(request.elem[i]);
|
|
|
|
if(GroupExists(r->group)) continue;
|
|
|
|
|
|
|
|
(deleted.requests)++;
|
|
|
|
request.RemoveById(r->h);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0; i < constraint.n; i++) {
|
|
|
|
Constraint *c = &(constraint.elem[i]);
|
|
|
|
if(GroupExists(c->group)) continue;
|
|
|
|
|
|
|
|
(deleted.constraints)++;
|
|
|
|
constraint.RemoveById(c->h);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SolveSpace::GroupsInOrder(hGroup before, hGroup after) {
|
|
|
|
if(before.v == 0) return true;
|
|
|
|
if(after.v == 0) return true;
|
|
|
|
|
|
|
|
int beforep = -1, afterp = -1;
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < group.n; i++) {
|
|
|
|
Group *g = &(group.elem[i]);
|
|
|
|
if(g->h.v == before.v) beforep = i;
|
|
|
|
if(g->h.v == after.v) afterp = i;
|
|
|
|
}
|
|
|
|
if(beforep < 0 || afterp < 0) return false;
|
|
|
|
if(beforep >= afterp) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SolveSpace::GroupExists(hGroup hg) {
|
|
|
|
// A nonexistent group is not acceptable
|
|
|
|
return group.FindByIdNoOops(hg) ? true : false;
|
|
|
|
}
|
|
|
|
bool SolveSpace::EntityExists(hEntity he) {
|
|
|
|
// A nonexstient entity is acceptable, though, usually just means it
|
|
|
|
// doesn't apply.
|
|
|
|
if(he.v == Entity::NO_ENTITY.v) return true;
|
|
|
|
return entity.FindByIdNoOops(he) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SolveSpace::PruneGroups(hGroup hg) {
|
|
|
|
Group *g = GetGroup(hg);
|
|
|
|
if(GroupsInOrder(g->opA, hg) &&
|
2008-06-01 08:29:59 +00:00
|
|
|
EntityExists(g->predef.origin) &&
|
|
|
|
EntityExists(g->predef.entityB) &&
|
|
|
|
EntityExists(g->predef.entityC))
|
2008-05-17 06:04:55 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
(deleted.groups)++;
|
|
|
|
group.RemoveById(g->h);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SolveSpace::PruneRequests(hGroup hg) {
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < entity.n; i++) {
|
|
|
|
Entity *e = &(entity.elem[i]);
|
|
|
|
if(e->group.v != hg.v) continue;
|
|
|
|
|
|
|
|
if(EntityExists(e->workplane)) continue;
|
|
|
|
|
|
|
|
if(!e->h.isFromRequest()) oops();
|
|
|
|
|
|
|
|
(deleted.requests)++;
|
|
|
|
request.RemoveById(e->h.request());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SolveSpace::PruneConstraints(hGroup hg) {
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < constraint.n; i++) {
|
|
|
|
Constraint *c = &(constraint.elem[i]);
|
|
|
|
if(c->group.v != hg.v) continue;
|
|
|
|
|
|
|
|
if(EntityExists(c->workplane) &&
|
|
|
|
EntityExists(c->ptA) &&
|
|
|
|
EntityExists(c->ptB) &&
|
|
|
|
EntityExists(c->ptC) &&
|
|
|
|
EntityExists(c->entityA) &&
|
|
|
|
EntityExists(c->entityB))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
(deleted.constraints)++;
|
|
|
|
constraint.RemoveById(c->h);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-06-02 09:31:26 +00:00
|
|
|
void SolveSpace::GenerateAll(void) {
|
2008-05-25 13:11:44 +00:00
|
|
|
int i;
|
2008-06-02 11:43:27 +00:00
|
|
|
int firstDirty = INT_MAX, lastVisible = 0;
|
|
|
|
// Start from the first dirty group, and solve until the active group,
|
|
|
|
// since all groups after the active group are hidden.
|
|
|
|
for(i = 0; i < group.n; i++) {
|
2008-05-26 09:56:50 +00:00
|
|
|
Group *g = &(group.elem[i]);
|
2008-06-02 11:43:27 +00:00
|
|
|
if((!g->clean) || (g->solved.how != Group::SOLVED_OKAY)) {
|
|
|
|
firstDirty = min(firstDirty, i);
|
|
|
|
}
|
|
|
|
if(g->h.v == SS.GW.activeGroup.v) {
|
|
|
|
lastVisible = i;
|
2008-05-25 13:11:44 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-02 11:43:27 +00:00
|
|
|
if(firstDirty == INT_MAX || lastVisible == 0) {
|
|
|
|
// All clean; so just regenerate the entities, and don't solve anything.
|
|
|
|
GenerateAll(-1, -1);
|
|
|
|
} else {
|
|
|
|
GenerateAll(firstDirty, lastVisible);
|
|
|
|
}
|
2008-05-25 13:11:44 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 09:31:26 +00:00
|
|
|
void SolveSpace::GenerateAll(int first, int last) {
|
2008-04-27 09:03:01 +00:00
|
|
|
int i, j;
|
2008-04-08 12:54:53 +00:00
|
|
|
|
2008-05-17 06:04:55 +00:00
|
|
|
while(PruneOrphans())
|
|
|
|
;
|
|
|
|
|
2008-04-27 05:00:12 +00:00
|
|
|
// Don't lose our numerical guesses when we regenerate.
|
2008-04-13 10:57:41 +00:00
|
|
|
IdList<Param,hParam> prev;
|
|
|
|
param.MoveSelfInto(&prev);
|
2008-04-08 12:54:53 +00:00
|
|
|
entity.Clear();
|
2008-04-27 09:03:01 +00:00
|
|
|
|
|
|
|
for(i = 0; i < group.n; i++) {
|
|
|
|
Group *g = &(group.elem[i]);
|
|
|
|
|
2008-05-17 06:04:55 +00:00
|
|
|
// The group may depend on entities or other groups, to define its
|
|
|
|
// workplane geometry or for its operands. Those must already exist
|
|
|
|
// in a previous group, so check them before generating.
|
|
|
|
if(PruneGroups(g->h))
|
|
|
|
goto pruned;
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
for(j = 0; j < request.n; j++) {
|
|
|
|
Request *r = &(request.elem[j]);
|
|
|
|
if(r->group.v != g->h.v) continue;
|
|
|
|
|
|
|
|
r->Generate(&entity, ¶m);
|
|
|
|
}
|
|
|
|
g->Generate(&entity, ¶m);
|
|
|
|
|
2008-05-17 06:04:55 +00:00
|
|
|
// The requests and constraints depend on stuff in this or the
|
|
|
|
// previous group, so check them after generating.
|
|
|
|
if(PruneRequests(g->h) || PruneConstraints(g->h))
|
|
|
|
goto pruned;
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
// Use the previous values for params that we've seen before, as
|
|
|
|
// initial guesses for the solver.
|
|
|
|
for(j = 0; j < param.n; j++) {
|
|
|
|
Param *newp = &(param.elem[j]);
|
|
|
|
if(newp->known) continue;
|
|
|
|
|
|
|
|
Param *prevp = prev.FindByIdNoOops(newp->h);
|
|
|
|
if(prevp) newp->val = prevp->val;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->h.v == Group::HGROUP_REFERENCES.v) {
|
|
|
|
ForceReferences();
|
2008-05-26 09:56:50 +00:00
|
|
|
g->solved.how = Group::SOLVED_OKAY;
|
2008-06-02 11:43:27 +00:00
|
|
|
g->clean = true;
|
2008-04-27 09:03:01 +00:00
|
|
|
} else {
|
2008-05-25 13:11:44 +00:00
|
|
|
if(i >= first && i <= last) {
|
|
|
|
// The group falls inside the range, so really solve it,
|
|
|
|
// and then regenerate the mesh based on the solved stuff.
|
2008-06-02 09:31:26 +00:00
|
|
|
SolveGroup(g->h);
|
|
|
|
g->GeneratePolygon();
|
|
|
|
g->GenerateMesh();
|
2008-06-02 11:43:27 +00:00
|
|
|
g->clean = true;
|
2008-05-25 13:11:44 +00:00
|
|
|
} else {
|
|
|
|
// The group falls outside the range, so just assume that
|
|
|
|
// it's good wherever we left it. The mesh is unchanged,
|
|
|
|
// and the parameters must be marked as known.
|
|
|
|
for(j = 0; j < param.n; j++) {
|
|
|
|
Param *newp = &(param.elem[j]);
|
|
|
|
|
|
|
|
Param *prevp = prev.FindByIdNoOops(newp->h);
|
|
|
|
if(prevp) newp->known = true;
|
|
|
|
}
|
|
|
|
}
|
2008-04-13 10:57:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-11 04:22:52 +00:00
|
|
|
// And update any reference dimensions with their new values
|
|
|
|
for(i = 0; i < constraint.n; i++) {
|
|
|
|
Constraint *c = &(constraint.elem[i]);
|
|
|
|
if(c->reference) {
|
|
|
|
c->ModifyToSatisfy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-20 11:35:10 +00:00
|
|
|
prev.Clear();
|
2008-04-24 06:22:16 +00:00
|
|
|
InvalidateGraphics();
|
2008-05-17 06:04:55 +00:00
|
|
|
|
2008-05-17 11:15:14 +00:00
|
|
|
// Remove nonexistent selection items, for same reason we waited till
|
|
|
|
// the end to put up a dialog box.
|
|
|
|
GW.ClearNonexistentSelectionItems();
|
|
|
|
|
2008-05-17 06:04:55 +00:00
|
|
|
if(deleted.requests > 0 || deleted.constraints > 0 || deleted.groups > 0) {
|
2008-06-01 00:26:41 +00:00
|
|
|
// All sorts of interesting things could have happened; for example,
|
|
|
|
// the active group or active workplane could have been deleted. So
|
|
|
|
// clear all that out.
|
|
|
|
if(deleted.groups > 0) {
|
|
|
|
SS.TW.ClearSuper();
|
|
|
|
}
|
2008-06-03 18:28:41 +00:00
|
|
|
later.showTW = true;
|
2008-06-01 00:26:41 +00:00
|
|
|
GW.ClearSuper();
|
2008-05-17 06:04:55 +00:00
|
|
|
// Don't display any errors until we've regenerated fully. The
|
|
|
|
// sketch is not necessarily in a consistent state until we've
|
|
|
|
// pruned any orphaned etc. objects, and the message loop for the
|
|
|
|
// messagebox could allow us to repaint and crash. But now we must
|
|
|
|
// be fine.
|
|
|
|
Error("Additional sketch elements were deleted, because they depend "
|
|
|
|
"on the element that was just deleted explicitly. These "
|
|
|
|
"include: \r\n"
|
|
|
|
" %d request%s\r\n"
|
|
|
|
" %d constraint%s\r\n"
|
|
|
|
" %d group%s\r\n\r\n"
|
|
|
|
"Choose Edit -> Undo to undelete all elements.",
|
|
|
|
deleted.requests, deleted.requests == 1 ? "" : "s",
|
|
|
|
deleted.constraints, deleted.constraints == 1 ? "" : "s",
|
|
|
|
deleted.groups, deleted.groups == 1 ? "" : "s");
|
|
|
|
memset(&deleted, 0, sizeof(deleted));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
pruned:
|
|
|
|
// Restore the numerical guesses
|
|
|
|
param.Clear();
|
|
|
|
prev.MoveSelfInto(¶m);
|
|
|
|
// Try again
|
2008-06-02 09:31:26 +00:00
|
|
|
GenerateAll(first, last);
|
2008-04-12 16:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SolveSpace::ForceReferences(void) {
|
2008-04-09 08:39:01 +00:00
|
|
|
// Force the values of the paramters that define the three reference
|
|
|
|
// coordinate systems.
|
|
|
|
static const struct {
|
2008-05-05 06:18:01 +00:00
|
|
|
hRequest hr;
|
|
|
|
Quaternion q;
|
2008-04-09 08:39:01 +00:00
|
|
|
} Quat[] = {
|
2008-05-05 06:18:01 +00:00
|
|
|
{ Request::HREQUEST_REFERENCE_XY, { 1, 0, 0, 0, } },
|
|
|
|
{ Request::HREQUEST_REFERENCE_YZ, { 0.5, 0.5, 0.5, 0.5, } },
|
|
|
|
{ Request::HREQUEST_REFERENCE_ZX, { 0.5, -0.5, -0.5, -0.5, } },
|
2008-04-09 08:39:01 +00:00
|
|
|
};
|
2008-04-12 16:28:48 +00:00
|
|
|
for(int i = 0; i < 3; i++) {
|
2008-04-19 11:09:47 +00:00
|
|
|
hRequest hr = Quat[i].hr;
|
2008-05-05 06:18:01 +00:00
|
|
|
Entity *wrkpl = GetEntity(hr.entity(0));
|
2008-04-09 08:39:01 +00:00
|
|
|
// The origin for our coordinate system, always zero
|
2008-05-05 06:18:01 +00:00
|
|
|
Entity *origin = GetEntity(wrkpl->point[0]);
|
2008-06-01 08:45:11 +00:00
|
|
|
origin->PointForceTo(Vector::From(0, 0, 0));
|
2008-04-27 09:03:01 +00:00
|
|
|
GetParam(origin->param[0])->known = true;
|
|
|
|
GetParam(origin->param[1])->known = true;
|
|
|
|
GetParam(origin->param[2])->known = true;
|
2008-04-09 08:39:01 +00:00
|
|
|
// The quaternion that defines the rotation, from the table.
|
2008-05-05 06:18:01 +00:00
|
|
|
Entity *normal = GetEntity(wrkpl->normal);
|
|
|
|
normal->NormalForceTo(Quat[i].q);
|
|
|
|
GetParam(normal->param[0])->known = true;
|
|
|
|
GetParam(normal->param[1])->known = true;
|
|
|
|
GetParam(normal->param[2])->known = true;
|
|
|
|
GetParam(normal->param[3])->known = true;
|
2008-04-08 12:54:53 +00:00
|
|
|
}
|
2008-03-25 10:02:13 +00:00
|
|
|
}
|
|
|
|
|
2008-05-26 09:56:50 +00:00
|
|
|
void SolveSpace::SolveGroup(hGroup hg) {
|
2008-04-20 11:35:10 +00:00
|
|
|
int i;
|
|
|
|
// Clear out the system to be solved.
|
|
|
|
sys.entity.Clear();
|
|
|
|
sys.param.Clear();
|
|
|
|
sys.eq.Clear();
|
|
|
|
// And generate all the params for requests in this group
|
|
|
|
for(i = 0; i < request.n; i++) {
|
|
|
|
Request *r = &(request.elem[i]);
|
|
|
|
if(r->group.v != hg.v) continue;
|
|
|
|
|
|
|
|
r->Generate(&(sys.entity), &(sys.param));
|
|
|
|
}
|
2008-04-27 09:03:01 +00:00
|
|
|
// And for the group itself
|
|
|
|
Group *g = SS.GetGroup(hg);
|
|
|
|
g->Generate(&(sys.entity), &(sys.param));
|
2008-04-20 11:35:10 +00:00
|
|
|
// Set the initial guesses for all the params
|
|
|
|
for(i = 0; i < sys.param.n; i++) {
|
|
|
|
Param *p = &(sys.param.elem[i]);
|
|
|
|
p->known = false;
|
|
|
|
p->val = GetParam(p->h)->val;
|
|
|
|
}
|
|
|
|
|
2008-05-26 09:56:50 +00:00
|
|
|
sys.Solve(g);
|
2008-04-25 10:11:29 +00:00
|
|
|
FreeAllTemporary();
|
2008-04-20 11:35:10 +00:00
|
|
|
}
|
|
|
|
|
2008-05-28 10:10:31 +00:00
|
|
|
void SolveSpace::RemoveFromRecentList(char *file) {
|
|
|
|
int src, dest;
|
|
|
|
dest = 0;
|
|
|
|
for(src = 0; src < MAX_RECENT; src++) {
|
|
|
|
if(strcmp(file, RecentFile[src]) != 0) {
|
|
|
|
if(src != dest) strcpy(RecentFile[dest], RecentFile[src]);
|
|
|
|
dest++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while(dest < MAX_RECENT) strcpy(RecentFile[dest++], "");
|
|
|
|
RefreshRecentMenus();
|
|
|
|
}
|
|
|
|
void SolveSpace::AddToRecentList(char *file) {
|
|
|
|
RemoveFromRecentList(file);
|
|
|
|
|
|
|
|
int src;
|
|
|
|
for(src = MAX_RECENT - 2; src >= 0; src--) {
|
|
|
|
strcpy(RecentFile[src+1], RecentFile[src]);
|
|
|
|
}
|
|
|
|
strcpy(RecentFile[0], file);
|
|
|
|
RefreshRecentMenus();
|
|
|
|
}
|
|
|
|
|
2008-06-03 18:28:41 +00:00
|
|
|
bool SolveSpace::GetFilenameAndSave(bool saveAs) {
|
|
|
|
char newFile[MAX_PATH];
|
|
|
|
strcpy(newFile, saveFile);
|
|
|
|
if(saveAs || strlen(newFile)==0) {
|
|
|
|
if(!GetSaveFile(newFile, SLVS_EXT, SLVS_PATTERN)) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(SaveToFile(newFile)) {
|
|
|
|
AddToRecentList(newFile);
|
|
|
|
strcpy(saveFile, newFile);
|
|
|
|
unsaved = false;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SolveSpace::OkayToStartNewFile(void) {
|
|
|
|
if(!unsaved) return true;
|
|
|
|
|
|
|
|
switch(SaveFileYesNoCancel()) {
|
|
|
|
case IDYES:
|
|
|
|
return GetFilenameAndSave(false);
|
|
|
|
|
|
|
|
case IDNO:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case IDCANCEL:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
default: oops();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-18 11:11:48 +00:00
|
|
|
void SolveSpace::MenuFile(int id) {
|
2008-05-28 10:10:31 +00:00
|
|
|
|
|
|
|
if(id >= RECENT_OPEN && id < (RECENT_OPEN+MAX_RECENT)) {
|
|
|
|
char newFile[MAX_PATH];
|
|
|
|
strcpy(newFile, RecentFile[id-RECENT_OPEN]);
|
|
|
|
RemoveFromRecentList(newFile);
|
|
|
|
if(SS.LoadFromFile(newFile)) {
|
|
|
|
strcpy(SS.saveFile, newFile);
|
|
|
|
AddToRecentList(newFile);
|
|
|
|
} else {
|
|
|
|
strcpy(SS.saveFile, "");
|
|
|
|
SS.NewFile();
|
|
|
|
}
|
|
|
|
SS.AfterNewFile();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-18 11:11:48 +00:00
|
|
|
switch(id) {
|
|
|
|
case GraphicsWindow::MNU_NEW:
|
2008-06-03 18:28:41 +00:00
|
|
|
if(!SS.OkayToStartNewFile()) break;
|
|
|
|
|
2008-05-28 10:10:31 +00:00
|
|
|
strcpy(SS.saveFile, "");
|
2008-04-24 06:22:16 +00:00
|
|
|
SS.NewFile();
|
2008-05-28 10:10:31 +00:00
|
|
|
SS.AfterNewFile();
|
2008-04-24 06:22:16 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-28 10:10:31 +00:00
|
|
|
case GraphicsWindow::MNU_OPEN: {
|
2008-06-03 18:28:41 +00:00
|
|
|
if(!SS.OkayToStartNewFile()) break;
|
|
|
|
|
2008-05-28 10:10:31 +00:00
|
|
|
char newFile[MAX_PATH] = "";
|
2008-05-29 10:10:12 +00:00
|
|
|
if(GetOpenFile(newFile, SLVS_EXT, SLVS_PATTERN)) {
|
2008-05-28 10:10:31 +00:00
|
|
|
if(SS.LoadFromFile(newFile)) {
|
|
|
|
strcpy(SS.saveFile, newFile);
|
|
|
|
AddToRecentList(newFile);
|
|
|
|
} else {
|
|
|
|
strcpy(SS.saveFile, "");
|
|
|
|
SS.NewFile();
|
|
|
|
}
|
|
|
|
SS.AfterNewFile();
|
|
|
|
}
|
2008-04-24 06:22:16 +00:00
|
|
|
break;
|
2008-05-28 10:10:31 +00:00
|
|
|
}
|
2008-04-18 11:11:48 +00:00
|
|
|
|
|
|
|
case GraphicsWindow::MNU_SAVE:
|
2008-06-03 18:28:41 +00:00
|
|
|
SS.GetFilenameAndSave(false);
|
|
|
|
break;
|
2008-04-18 11:11:48 +00:00
|
|
|
|
2008-06-03 18:28:41 +00:00
|
|
|
case GraphicsWindow::MNU_SAVE_AS:
|
|
|
|
SS.GetFilenameAndSave(true);
|
2008-04-18 11:11:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GraphicsWindow::MNU_EXIT:
|
2008-06-03 18:28:41 +00:00
|
|
|
if(!SS.OkayToStartNewFile()) break;
|
2008-06-11 04:22:52 +00:00
|
|
|
SS.Exit();
|
2008-04-18 11:11:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: oops();
|
|
|
|
}
|
|
|
|
}
|