2008-06-23 08:37:12 +00:00
|
|
|
#include "solvespace.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2008-07-10 06:11:56 +00:00
|
|
|
// A navigation bar that always appears at the top of the window, with a
|
|
|
|
// link to bring us back home.
|
2008-06-23 08:37:12 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2008-07-10 06:11:56 +00:00
|
|
|
void TextWindow::ScreenHome(int link, DWORD v) {
|
|
|
|
SS.TW.GoToScreen(SCREEN_LIST_OF_GROUPS);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
void TextWindow::ShowHeader(bool withNav) {
|
|
|
|
ClearScreen();
|
|
|
|
|
|
|
|
char *cd = SS.GW.LockedInWorkplane() ?
|
2009-04-19 05:53:16 +00:00
|
|
|
SK.GetEntity(SS.GW.ActiveWorkplane())->DescriptionString() :
|
2008-06-23 08:37:12 +00:00
|
|
|
"free in 3d";
|
|
|
|
|
|
|
|
// Navigation buttons
|
|
|
|
if(withNav) {
|
2008-07-10 06:11:56 +00:00
|
|
|
Printf(false, " %Fl%Lh%fhome%E %Bt%Ft wrkpl:%Fd %s",
|
|
|
|
(&TextWindow::ScreenHome),
|
2008-06-23 08:37:12 +00:00
|
|
|
cd);
|
|
|
|
} else {
|
2008-07-10 06:11:56 +00:00
|
|
|
Printf(false, " %Bt%Ft wrkpl:%Fd %s", cd);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define hs(b) ((b) ? 's' : 'h')
|
|
|
|
Printf(false, "%Bt%Ftshow: "
|
|
|
|
"%Fp%Ll%D%fwrkpls%E "
|
|
|
|
"%Fp%Ll%D%fnormals%E "
|
|
|
|
"%Fp%Ll%D%fpoints%E "
|
|
|
|
"%Fp%Ll%D%fconstraints%E ",
|
|
|
|
hs(SS.GW.showWorkplanes), (DWORD)&(SS.GW.showWorkplanes), &(SS.GW.ToggleBool),
|
|
|
|
hs(SS.GW.showNormals), (DWORD)&(SS.GW.showNormals), &(SS.GW.ToggleBool),
|
|
|
|
hs(SS.GW.showPoints), (DWORD)&(SS.GW.showPoints), &(SS.GW.ToggleBool),
|
|
|
|
hs(SS.GW.showConstraints), (DWORD)(&SS.GW.showConstraints), &(SS.GW.ToggleBool)
|
|
|
|
);
|
|
|
|
Printf(false, "%Bt%Ft "
|
|
|
|
"%Fp%Ll%D%fshaded%E "
|
2009-03-18 04:26:04 +00:00
|
|
|
"%Fp%Ll%D%fedges%E "
|
2008-06-23 08:37:12 +00:00
|
|
|
"%Fp%Ll%D%fmesh%E "
|
2009-03-18 04:26:04 +00:00
|
|
|
"%Fp%Ll%D%ffaces%E "
|
|
|
|
"%Fp%Ll%D%fhidden-lns%E",
|
2008-06-23 08:37:12 +00:00
|
|
|
hs(SS.GW.showShaded), (DWORD)(&SS.GW.showShaded), &(SS.GW.ToggleBool),
|
2009-03-18 04:26:04 +00:00
|
|
|
hs(SS.GW.showEdges), (DWORD)(&SS.GW.showEdges), &(SS.GW.ToggleBool),
|
2008-06-23 08:37:12 +00:00
|
|
|
hs(SS.GW.showMesh), (DWORD)(&SS.GW.showMesh), &(SS.GW.ToggleBool),
|
2009-03-18 04:26:04 +00:00
|
|
|
hs(SS.GW.showFaces), (DWORD)(&SS.GW.showFaces), &(SS.GW.ToggleBool),
|
2008-06-23 08:37:12 +00:00
|
|
|
hs(SS.GW.showHdnLines), (DWORD)(&SS.GW.showHdnLines), &(SS.GW.ToggleBool)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// The screen that shows a list of every group in the sketch, with options
|
|
|
|
// to hide or show them, and to view them in detail. This is our home page.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TextWindow::ScreenSelectGroup(int link, DWORD v) {
|
2008-07-10 06:11:56 +00:00
|
|
|
SS.TW.GoToScreen(SCREEN_GROUP_INFO);
|
|
|
|
SS.TW.shown.group.v = v;
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
void TextWindow::ScreenToggleGroupShown(int link, DWORD v) {
|
|
|
|
hGroup hg = { v };
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(hg);
|
2008-06-23 08:37:12 +00:00
|
|
|
g->visible = !(g->visible);
|
|
|
|
// If a group was just shown, then it might not have been generated
|
|
|
|
// previously, so regenerate.
|
|
|
|
SS.GenerateAll();
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenShowGroupsSpecial(int link, DWORD v) {
|
|
|
|
int i;
|
2009-04-19 05:53:16 +00:00
|
|
|
for(i = 0; i < SK.group.n; i++) {
|
|
|
|
Group *g = &(SK.group.elem[i]);
|
2008-06-23 08:37:12 +00:00
|
|
|
|
|
|
|
if(link == 's') {
|
|
|
|
g->visible = true;
|
|
|
|
} else {
|
|
|
|
g->visible = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenActivateGroup(int link, DWORD v) {
|
|
|
|
hGroup hg = { v };
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(hg);
|
2008-06-23 08:37:12 +00:00
|
|
|
g->visible = true;
|
|
|
|
SS.GW.activeGroup.v = v;
|
2009-04-19 05:53:16 +00:00
|
|
|
SK.GetGroup(SS.GW.activeGroup)->Activate();
|
2008-06-23 08:37:12 +00:00
|
|
|
SS.GW.ClearSuper();
|
|
|
|
}
|
|
|
|
void TextWindow::ReportHowGroupSolved(hGroup hg) {
|
|
|
|
SS.GW.ClearSuper();
|
2008-07-10 06:11:56 +00:00
|
|
|
SS.TW.GoToScreen(SCREEN_GROUP_SOLVE_INFO);
|
|
|
|
SS.TW.shown.group.v = hg.v;
|
2008-06-23 08:37:12 +00:00
|
|
|
SS.later.showTW = true;
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenHowGroupSolved(int link, DWORD v) {
|
|
|
|
if(SS.GW.activeGroup.v != v) {
|
|
|
|
ScreenActivateGroup(link, v);
|
|
|
|
}
|
2008-07-10 06:11:56 +00:00
|
|
|
SS.TW.GoToScreen(SCREEN_GROUP_SOLVE_INFO);
|
|
|
|
SS.TW.shown.group.v = v;
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
void TextWindow::ScreenShowConfiguration(int link, DWORD v) {
|
2008-07-10 06:11:56 +00:00
|
|
|
SS.TW.GoToScreen(SCREEN_CONFIGURATION);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
2008-02-09 13:52:01 +00:00
|
|
|
void TextWindow::ScreenGoToWebsite(int link, DWORD v) {
|
2009-10-01 10:35:11 +00:00
|
|
|
OpenWebsite("http://solvespace.com/txtlink");
|
2008-02-09 13:52:01 +00:00
|
|
|
}
|
2008-06-23 08:37:12 +00:00
|
|
|
void TextWindow::ShowListOfGroups(void) {
|
|
|
|
Printf(true, "%Ftactv show ok group-name%E");
|
|
|
|
int i;
|
|
|
|
bool afterActive = false;
|
2009-04-19 05:53:16 +00:00
|
|
|
for(i = 0; i < SK.group.n; i++) {
|
|
|
|
Group *g = &(SK.group.elem[i]);
|
2008-06-23 08:37:12 +00:00
|
|
|
char *s = g->DescriptionString();
|
|
|
|
bool active = (g->h.v == SS.GW.activeGroup.v);
|
|
|
|
bool shown = g->visible;
|
2009-04-20 07:30:09 +00:00
|
|
|
bool ok = (g->solved.how == System::SOLVED_OKAY);
|
2008-06-23 08:37:12 +00:00
|
|
|
bool ref = (g->h.v == Group::HGROUP_REFERENCES.v);
|
|
|
|
Printf(false, "%Bp%Fd "
|
|
|
|
"%Fp%D%f%s%Ll%s%E%s "
|
|
|
|
"%Fp%D%f%Ll%s%E%Fh%s%E "
|
|
|
|
"%Fp%D%f%s%Ll%s%E "
|
|
|
|
"%Fl%Ll%D%f%s",
|
|
|
|
// Alternate between light and dark backgrounds, for readability
|
|
|
|
(i & 1) ? 'd' : 'a',
|
|
|
|
// Link that activates the group
|
|
|
|
active ? 's' : 'h', g->h.v, (&TextWindow::ScreenActivateGroup),
|
|
|
|
active ? "yes" : (ref ? " " : ""),
|
|
|
|
active ? "" : (ref ? "" : "no"),
|
|
|
|
active ? "" : " ",
|
|
|
|
// Link that hides or shows the group
|
|
|
|
shown ? 's' : 'h', g->h.v, (&TextWindow::ScreenToggleGroupShown),
|
|
|
|
afterActive ? "" : (shown ? "yes" : "no"),
|
|
|
|
afterActive ? " - " : (shown ? "" : " "),
|
|
|
|
// Link to the errors, if a problem occured while solving
|
|
|
|
ok ? 's' : 'x', g->h.v, (&TextWindow::ScreenHowGroupSolved),
|
|
|
|
ok ? "ok" : "",
|
|
|
|
ok ? "" : "NO",
|
|
|
|
// Link to a screen that gives more details on the group
|
|
|
|
g->h.v, (&TextWindow::ScreenSelectGroup), s);
|
|
|
|
|
|
|
|
if(active) afterActive = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Printf(true, " %Fl%Ls%fshow all%E / %Fl%Lh%fhide all%E",
|
|
|
|
&(TextWindow::ScreenShowGroupsSpecial),
|
|
|
|
&(TextWindow::ScreenShowGroupsSpecial));
|
2009-09-18 08:14:15 +00:00
|
|
|
Printf(true, " %Fl%Ls%fline styles%E / %Fl%Ls%fconfiguration%E",
|
|
|
|
&(TextWindow::ScreenShowListOfStyles),
|
2008-06-23 08:37:12 +00:00
|
|
|
&(TextWindow::ScreenShowConfiguration));
|
2008-02-09 13:52:01 +00:00
|
|
|
|
|
|
|
// Show license info
|
|
|
|
Printf(false, "");
|
|
|
|
if(SS.license.licensed) {
|
|
|
|
Printf(false, "%FtLicensed to:");
|
|
|
|
Printf(false, "%Fg %s", SS.license.line1);
|
|
|
|
if(strlen(SS.license.line2)) {
|
|
|
|
Printf(false, "%Fg %s", SS.license.line2);
|
|
|
|
}
|
|
|
|
Printf(false, "%Fg %s", SS.license.users);
|
|
|
|
} else {
|
2008-08-21 09:47:03 +00:00
|
|
|
Printf(false, "%Fx*** NO LICENSE FILE IS PRESENT ***");
|
2009-06-10 06:57:27 +00:00
|
|
|
if(SS.license.trialDaysRemaining > 0) {
|
|
|
|
Printf(false, "%Fx running as full demo, %d day%s remaining",
|
|
|
|
SS.license.trialDaysRemaining,
|
|
|
|
SS.license.trialDaysRemaining == 1 ? "" : "s");
|
|
|
|
} else {
|
|
|
|
Printf(false, "%Fx demo expired, now running in light mode");
|
|
|
|
}
|
2009-10-01 10:35:11 +00:00
|
|
|
Printf(false, "%Fx buy at %Fl%f%Llhttp://solvespace.com/%E",
|
2008-02-09 13:52:01 +00:00
|
|
|
&ScreenGoToWebsite);
|
|
|
|
}
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// The screen that shows information about a specific group, and allows the
|
|
|
|
// user to edit various things about it.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TextWindow::ScreenHoverConstraint(int link, DWORD v) {
|
|
|
|
if(!SS.GW.showConstraints) return;
|
|
|
|
|
|
|
|
hConstraint hc = { v };
|
2009-04-19 05:53:16 +00:00
|
|
|
Constraint *c = SK.GetConstraint(hc);
|
2008-06-23 08:37:12 +00:00
|
|
|
if(c->group.v != SS.GW.activeGroup.v) {
|
|
|
|
// Only constraints in the active group are visible
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SS.GW.hover.Clear();
|
|
|
|
SS.GW.hover.constraint = hc;
|
|
|
|
SS.GW.hover.emphasized = true;
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenHoverRequest(int link, DWORD v) {
|
|
|
|
SS.GW.hover.Clear();
|
|
|
|
hRequest hr = { v };
|
|
|
|
SS.GW.hover.entity = hr.entity(0);
|
|
|
|
SS.GW.hover.emphasized = true;
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenSelectConstraint(int link, DWORD v) {
|
|
|
|
SS.GW.ClearSelection();
|
2009-11-03 18:54:49 +00:00
|
|
|
GraphicsWindow::Selection sel;
|
|
|
|
ZERO(&sel);
|
|
|
|
sel.constraint.v = v;
|
|
|
|
SS.GW.selection.Add(&sel);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
void TextWindow::ScreenSelectRequest(int link, DWORD v) {
|
|
|
|
SS.GW.ClearSelection();
|
2009-11-03 18:54:49 +00:00
|
|
|
GraphicsWindow::Selection sel;
|
|
|
|
ZERO(&sel);
|
|
|
|
hRequest hr = { v };
|
|
|
|
sel.entity = hr.entity(0);
|
|
|
|
SS.GW.selection.Add(&sel);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
|
2009-10-09 12:57:10 +00:00
|
|
|
void TextWindow::ScreenChangeGroupOption(int link, DWORD v) {
|
2008-06-23 08:37:12 +00:00
|
|
|
SS.UndoRemember();
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
|
2009-10-09 12:57:10 +00:00
|
|
|
switch(link) {
|
|
|
|
case 's':
|
|
|
|
if(g->subtype == Group::ONE_SIDED) {
|
|
|
|
g->subtype = Group::TWO_SIDED;
|
|
|
|
} else {
|
|
|
|
g->subtype = Group::ONE_SIDED;
|
|
|
|
}
|
|
|
|
break;
|
2009-05-22 10:02:02 +00:00
|
|
|
|
2009-10-09 12:57:10 +00:00
|
|
|
case 'k':
|
|
|
|
(g->skipFirst) = !(g->skipFirst);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
g->meshCombine = v;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'P':
|
|
|
|
g->suppress = !(g->suppress);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
g->relaxConstraints = !(g->relaxConstraints);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
g->forceToMesh = !(g->forceToMesh);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
2008-02-15 11:35:15 +00:00
|
|
|
|
|
|
|
SS.MarkGroupDirty(g->h);
|
|
|
|
SS.GenerateAll();
|
|
|
|
SS.GW.ClearSuper();
|
|
|
|
}
|
2009-10-01 11:22:56 +00:00
|
|
|
|
2008-06-23 08:37:12 +00:00
|
|
|
void TextWindow::ScreenChangeRightLeftHanded(int link, DWORD v) {
|
|
|
|
SS.UndoRemember();
|
|
|
|
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
if(g->subtype == Group::RIGHT_HANDED) {
|
|
|
|
g->subtype = Group::LEFT_HANDED;
|
|
|
|
} else {
|
|
|
|
g->subtype = Group::RIGHT_HANDED;
|
|
|
|
}
|
|
|
|
SS.MarkGroupDirty(g->h);
|
|
|
|
SS.GenerateAll();
|
|
|
|
SS.GW.ClearSuper();
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenChangeHelixParameter(int link, DWORD v) {
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
char str[1024];
|
|
|
|
int r;
|
|
|
|
if(link == 't') {
|
|
|
|
sprintf(str, "%.3f", g->valA);
|
|
|
|
SS.TW.edit.meaning = EDIT_HELIX_TURNS;
|
|
|
|
r = 12;
|
2009-09-29 11:35:19 +00:00
|
|
|
} else if(link == 'i') {
|
2008-06-23 08:37:12 +00:00
|
|
|
strcpy(str, SS.MmToString(g->valB));
|
|
|
|
SS.TW.edit.meaning = EDIT_HELIX_PITCH;
|
|
|
|
r = 14;
|
|
|
|
} else if(link == 'r') {
|
|
|
|
strcpy(str, SS.MmToString(g->valC));
|
|
|
|
SS.TW.edit.meaning = EDIT_HELIX_DRADIUS;
|
|
|
|
r = 16;
|
|
|
|
} else oops();
|
|
|
|
SS.TW.edit.group.v = v;
|
|
|
|
ShowTextEditControl(r, 9, str);
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenColor(int link, DWORD v) {
|
|
|
|
SS.UndoRemember();
|
|
|
|
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
if(v < 0 || v >= SS.MODEL_COLORS) return;
|
|
|
|
g->color = SS.modelColor[v];
|
|
|
|
SS.MarkGroupDirty(g->h);
|
|
|
|
SS.GenerateAll();
|
|
|
|
SS.GW.ClearSuper();
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenChangeExprA(int link, DWORD v) {
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
|
|
|
|
// There's an extra line for the skipFirst parameter in one-sided groups.
|
|
|
|
int r = (g->subtype == Group::ONE_SIDED) ? 15 : 13;
|
|
|
|
|
|
|
|
char str[1024];
|
|
|
|
sprintf(str, "%d", (int)g->valA);
|
|
|
|
ShowTextEditControl(r, 9, str);
|
|
|
|
SS.TW.edit.meaning = EDIT_TIMES_REPEATED;
|
|
|
|
SS.TW.edit.group.v = v;
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenChangeGroupName(int link, DWORD v) {
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
ShowTextEditControl(7, 14, g->DescriptionString()+5);
|
|
|
|
SS.TW.edit.meaning = EDIT_GROUP_NAME;
|
|
|
|
SS.TW.edit.group.v = v;
|
|
|
|
}
|
2009-12-15 12:26:22 +00:00
|
|
|
void TextWindow::ScreenChangeGroupScale(int link, DWORD v) {
|
|
|
|
Group *g = SK.GetGroup(SS.TW.shown.group);
|
|
|
|
|
|
|
|
char str[1024];
|
|
|
|
sprintf(str, "%.3f", g->scale);
|
|
|
|
ShowTextEditControl(17, 9, str);
|
|
|
|
SS.TW.edit.meaning = EDIT_GROUP_SCALE;
|
|
|
|
SS.TW.edit.group.v = v;
|
|
|
|
}
|
2008-06-23 08:37:12 +00:00
|
|
|
void TextWindow::ScreenDeleteGroup(int link, DWORD v) {
|
|
|
|
SS.UndoRemember();
|
|
|
|
|
2008-07-10 06:11:56 +00:00
|
|
|
hGroup hg = SS.TW.shown.group;
|
2008-06-23 08:37:12 +00:00
|
|
|
if(hg.v == SS.GW.activeGroup.v) {
|
|
|
|
Error("This group is currently active; activate a different group "
|
|
|
|
"before proceeding.");
|
|
|
|
return;
|
|
|
|
}
|
2009-04-19 05:53:16 +00:00
|
|
|
SK.group.RemoveById(SS.TW.shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
// This is a major change, so let's re-solve everything.
|
|
|
|
SS.TW.ClearSuper();
|
|
|
|
SS.GW.ClearSuper();
|
|
|
|
SS.GenerateAll(0, INT_MAX);
|
|
|
|
}
|
|
|
|
void TextWindow::ShowGroupInfo(void) {
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.group.FindById(shown.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
char *s, *s2, *s3;
|
|
|
|
|
2008-07-10 06:11:56 +00:00
|
|
|
if(shown.group.v == Group::HGROUP_REFERENCES.v) {
|
2008-06-23 08:37:12 +00:00
|
|
|
Printf(true, "%FtGROUP %E%s", g->DescriptionString());
|
|
|
|
} else {
|
|
|
|
Printf(true, "%FtGROUP %E%s "
|
|
|
|
"[%Fl%Ll%D%frename%E/%Fl%Ll%D%fdel%E]",
|
|
|
|
g->DescriptionString(),
|
|
|
|
g->h.v, &TextWindow::ScreenChangeGroupName,
|
|
|
|
g->h.v, &TextWindow::ScreenDeleteGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::EXTRUDE) {
|
|
|
|
s = "EXTRUDE ";
|
|
|
|
} else if(g->type == Group::TRANSLATE) {
|
|
|
|
s = "TRANSLATE";
|
|
|
|
s2 ="REPEAT ";
|
|
|
|
s3 ="START ";
|
|
|
|
} else if(g->type == Group::ROTATE) {
|
|
|
|
s = "ROTATE ";
|
|
|
|
s2 ="REPEAT ";
|
|
|
|
s3 ="START ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::EXTRUDE || g->type == Group::ROTATE ||
|
|
|
|
g->type == Group::TRANSLATE)
|
|
|
|
{
|
|
|
|
bool one = (g->subtype == Group::ONE_SIDED);
|
2009-10-09 12:57:10 +00:00
|
|
|
Printf(true, "%Ft%s%E %Fh%f%Ls%s%E%Fs%s%E / %Fh%f%Ls%s%E%Fs%s%E", s,
|
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
(one ? "" : "one side"), (one ? "one side" : ""),
|
2009-10-09 12:57:10 +00:00
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
(!one ? "" : "two sides"), (!one ? "two sides" : ""));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::LATHE) {
|
|
|
|
Printf(true, "%FtLATHE");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::SWEEP) {
|
|
|
|
Printf(true, "%FtSWEEP");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::HELICAL_SWEEP) {
|
|
|
|
bool rh = (g->subtype == Group::RIGHT_HANDED);
|
|
|
|
Printf(true,
|
|
|
|
"%FtHELICAL%E %Fh%f%Ll%s%E%Fs%s%E / %Fh%f%Ll%s%E%Fs%s%E",
|
|
|
|
&ScreenChangeRightLeftHanded,
|
|
|
|
(rh ? "" : "right-hand"), (rh ? "right-hand" : ""),
|
|
|
|
&ScreenChangeRightLeftHanded,
|
|
|
|
(!rh ? "" : "left-hand"), (!rh ? "left-hand" : ""));
|
|
|
|
Printf(false, "%FtTHROUGH%E %@ turns %Fl%Lt%D%f[change]%E",
|
|
|
|
g->valA, g->h.v, &ScreenChangeHelixParameter);
|
2009-09-29 11:35:19 +00:00
|
|
|
Printf(false, "%FtPITCH%E %s axially per turn %Fl%Li%D%f[change]%E",
|
2008-06-23 08:37:12 +00:00
|
|
|
SS.MmToString(g->valB), g->h.v, &ScreenChangeHelixParameter);
|
|
|
|
Printf(false, "%FtdRADIUS%E %s radially per turn %Fl%Lr%D%f[change]%E",
|
|
|
|
SS.MmToString(g->valC), g->h.v, &ScreenChangeHelixParameter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::ROTATE || g->type == Group::TRANSLATE) {
|
|
|
|
bool space;
|
|
|
|
if(g->subtype == Group::ONE_SIDED) {
|
|
|
|
bool skip = g->skipFirst;
|
2009-10-09 12:57:10 +00:00
|
|
|
Printf(true, "%Ft%s%E %Fh%f%Lk%s%E%Fs%s%E / %Fh%f%Lk%s%E%Fs%s%E",
|
2008-06-23 08:37:12 +00:00
|
|
|
s3,
|
2009-10-09 12:57:10 +00:00
|
|
|
&ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
(!skip ? "" : "with original"), (!skip ? "with original" : ""),
|
2009-10-09 12:57:10 +00:00
|
|
|
&ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
(skip ? "":"with copy #1"), (skip ? "with copy #1":""));
|
|
|
|
space = false;
|
|
|
|
} else {
|
|
|
|
space = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int times = (int)(g->valA);
|
|
|
|
Printf(space, "%Ft%s%E %d time%s %Fl%Ll%D%f[change]%E",
|
|
|
|
s2, times, times == 1 ? "" : "s",
|
|
|
|
g->h.v, &TextWindow::ScreenChangeExprA);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::IMPORTED) {
|
2008-06-25 05:14:49 +00:00
|
|
|
Printf(true, "%FtIMPORT%E '%s'", g->impFileRel);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(g->type == Group::EXTRUDE ||
|
|
|
|
g->type == Group::LATHE ||
|
|
|
|
g->type == Group::SWEEP ||
|
|
|
|
g->type == Group::HELICAL_SWEEP ||
|
|
|
|
g->type == Group::IMPORTED)
|
|
|
|
{
|
|
|
|
bool un = (g->meshCombine == Group::COMBINE_AS_UNION);
|
|
|
|
bool diff = (g->meshCombine == Group::COMBINE_AS_DIFFERENCE);
|
|
|
|
bool asy = (g->meshCombine == Group::COMBINE_AS_ASSEMBLE);
|
|
|
|
bool asa = (g->type == Group::IMPORTED);
|
|
|
|
|
|
|
|
Printf((g->type == Group::HELICAL_SWEEP),
|
2009-10-09 12:57:10 +00:00
|
|
|
"%FtMERGE AS%E %Fh%f%D%Lc%s%E%Fs%s%E / %Fh%f%D%Lc%s%E%Fs%s%E %s "
|
|
|
|
"%Fh%f%D%Lc%s%E%Fs%s%E",
|
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
Group::COMBINE_AS_UNION,
|
|
|
|
(un ? "" : "union"), (un ? "union" : ""),
|
2009-10-09 12:57:10 +00:00
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
Group::COMBINE_AS_DIFFERENCE,
|
|
|
|
(diff ? "" : "difference"), (diff ? "difference" : ""),
|
|
|
|
asa ? "/" : "",
|
2009-10-09 12:57:10 +00:00
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-06-23 08:37:12 +00:00
|
|
|
Group::COMBINE_AS_ASSEMBLE,
|
|
|
|
(asy || !asa ? "" : "assemble"), (asy && asa ? "assemble" : ""));
|
|
|
|
}
|
2008-02-15 11:35:15 +00:00
|
|
|
if(g->type == Group::IMPORTED) {
|
|
|
|
bool sup = g->suppress;
|
2009-10-09 12:57:10 +00:00
|
|
|
Printf(false, "%FtSUPPRESS%E %Fh%f%LP%s%E%Fs%s%E / %Fh%f%LP%s%E%Fs%s%E",
|
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-02-15 11:35:15 +00:00
|
|
|
(sup ? "" : "yes"), (sup ? "yes" : ""),
|
2009-10-09 12:57:10 +00:00
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2008-02-15 11:35:15 +00:00
|
|
|
(!sup ? "" : "no"), (!sup ? "no" : ""));
|
2009-10-09 12:57:10 +00:00
|
|
|
|
2009-12-15 12:26:22 +00:00
|
|
|
Printf(true, "%FtSCALE BY%E %# %Fl%Ll%f%D[change]%E",
|
|
|
|
g->scale,
|
|
|
|
&TextWindow::ScreenChangeGroupScale, g->h.v);
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
|
2009-10-01 11:22:56 +00:00
|
|
|
bool relax = g->relaxConstraints;
|
2009-10-09 12:57:10 +00:00
|
|
|
Printf(true, "%FtSOLVING%E %Fh%f%Lr%s%E%Fs%s%E / %Fh%f%Lr%s%E%Fs%s%E",
|
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2009-10-01 11:22:56 +00:00
|
|
|
(!relax ? "" : "with all constraints"),
|
|
|
|
(!relax ? "with all constraints" : ""),
|
2009-10-09 12:57:10 +00:00
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2009-10-01 11:22:56 +00:00
|
|
|
(relax ? "" : "no"), (relax ? "no" : ""));
|
|
|
|
|
2008-06-23 08:37:12 +00:00
|
|
|
if(g->type == Group::EXTRUDE ||
|
|
|
|
g->type == Group::LATHE ||
|
|
|
|
g->type == Group::SWEEP ||
|
|
|
|
g->type == Group::HELICAL_SWEEP)
|
|
|
|
{
|
|
|
|
#define TWOX(v) v v
|
|
|
|
Printf(true, "%FtM_COLOR%E " TWOX(TWOX(TWOX("%Bp%D%f%Ln %Bd%E "))),
|
|
|
|
0x80000000 | SS.modelColor[0], 0, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[1], 1, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[2], 2, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[3], 3, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[4], 4, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[5], 5, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[6], 6, &TextWindow::ScreenColor,
|
|
|
|
0x80000000 | SS.modelColor[7], 7, &TextWindow::ScreenColor);
|
|
|
|
}
|
|
|
|
|
2009-05-22 10:02:02 +00:00
|
|
|
if(shown.group.v != Group::HGROUP_REFERENCES.v &&
|
|
|
|
(g->runningMesh.l.n > 0 ||
|
|
|
|
g->runningShell.surface.n > 0))
|
|
|
|
{
|
|
|
|
Group *pg = g->PreviousGroup();
|
2009-05-24 11:37:07 +00:00
|
|
|
if(pg->runningMesh.IsEmpty() && g->thisMesh.IsEmpty()) {
|
2009-05-22 10:02:02 +00:00
|
|
|
bool fm = g->forceToMesh;
|
|
|
|
Printf(true,
|
2009-10-09 12:57:10 +00:00
|
|
|
"%FtSURFACES%E %Fh%f%Lf%s%E%Fs%s%E / %Fh%f%Lf%s%E%Fs%s%E",
|
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2009-05-22 10:02:02 +00:00
|
|
|
(!fm ? "" : "as NURBS"), (!fm ? "as NURBS" : ""),
|
2009-10-09 12:57:10 +00:00
|
|
|
&TextWindow::ScreenChangeGroupOption,
|
2009-05-22 10:02:02 +00:00
|
|
|
(fm ? "" : "as mesh"), (fm ? "as mesh" : ""));
|
|
|
|
} else {
|
|
|
|
Printf(false,
|
2009-05-24 11:37:07 +00:00
|
|
|
"%FtSURFACES%E %Fsas mesh%E");
|
2009-05-22 10:02:02 +00:00
|
|
|
}
|
2009-05-30 08:49:09 +00:00
|
|
|
|
|
|
|
if(g->booleanFailed) {
|
|
|
|
Printf(true, "The Boolean operation failed. It may be ");
|
|
|
|
Printf(false, "possible to fix the problem by choosing ");
|
|
|
|
Printf(false, "surfaces 'as mesh' instead of 'as NURBS'.");
|
|
|
|
}
|
2009-05-22 10:02:02 +00:00
|
|
|
}
|
|
|
|
|
2008-06-23 08:37:12 +00:00
|
|
|
// Leave more space if the group has configuration stuff above the req/
|
|
|
|
// constraint list (as all but the drawing groups do).
|
|
|
|
if(g->type == Group::DRAWING_3D || g->type == Group::DRAWING_WORKPLANE) {
|
|
|
|
Printf(true, "%Ftrequests in group");
|
|
|
|
} else {
|
|
|
|
Printf(false, "");
|
|
|
|
Printf(false, "%Ftrequests in group");
|
|
|
|
}
|
|
|
|
|
|
|
|
int i, a = 0;
|
2009-04-19 05:53:16 +00:00
|
|
|
for(i = 0; i < SK.request.n; i++) {
|
|
|
|
Request *r = &(SK.request.elem[i]);
|
2008-06-23 08:37:12 +00:00
|
|
|
|
2008-07-10 06:11:56 +00:00
|
|
|
if(r->group.v == shown.group.v) {
|
2008-06-23 08:37:12 +00:00
|
|
|
char *s = r->DescriptionString();
|
|
|
|
Printf(false, "%Bp %Fl%Ll%D%f%h%s%E",
|
|
|
|
(a & 1) ? 'd' : 'a',
|
|
|
|
r->h.v, (&TextWindow::ScreenSelectRequest),
|
|
|
|
&(TextWindow::ScreenHoverRequest), s);
|
|
|
|
a++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(a == 0) Printf(false, "%Ba (none)");
|
|
|
|
|
|
|
|
a = 0;
|
2008-07-10 07:42:35 +00:00
|
|
|
Printf(true, "%Ftconstraints in group (%d DOF)", g->solved.dof);
|
2009-04-19 05:53:16 +00:00
|
|
|
for(i = 0; i < SK.constraint.n; i++) {
|
|
|
|
Constraint *c = &(SK.constraint.elem[i]);
|
2008-06-23 08:37:12 +00:00
|
|
|
|
2008-07-10 06:11:56 +00:00
|
|
|
if(c->group.v == shown.group.v) {
|
2008-06-23 08:37:12 +00:00
|
|
|
char *s = c->DescriptionString();
|
2008-07-02 06:59:49 +00:00
|
|
|
Printf(false, "%Bp %Fl%Ll%D%f%h%s%E %s",
|
2008-06-23 08:37:12 +00:00
|
|
|
(a & 1) ? 'd' : 'a',
|
|
|
|
c->h.v, (&TextWindow::ScreenSelectConstraint),
|
2008-07-02 06:59:49 +00:00
|
|
|
(&TextWindow::ScreenHoverConstraint), s,
|
|
|
|
c->reference ? "(ref)" : "");
|
2008-06-23 08:37:12 +00:00
|
|
|
a++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(a == 0) Printf(false, "%Ba (none)");
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// The screen that's displayed when the sketch fails to solve. A report of
|
|
|
|
// what failed, and (if the problem is a singular Jacobian) a list of
|
|
|
|
// constraints that could be removed to fix it.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TextWindow::ShowGroupSolveInfo(void) {
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.group.FindById(shown.group);
|
2009-04-20 07:30:09 +00:00
|
|
|
if(g->solved.how == System::SOLVED_OKAY) {
|
2008-06-23 08:37:12 +00:00
|
|
|
// Go back to the default group info screen
|
2008-07-10 06:11:56 +00:00
|
|
|
shown.screen = SCREEN_GROUP_INFO;
|
2008-06-23 08:37:12 +00:00
|
|
|
Show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Printf(true, "%FtGROUP %E%s", g->DescriptionString());
|
|
|
|
switch(g->solved.how) {
|
2009-04-20 07:30:09 +00:00
|
|
|
case System::DIDNT_CONVERGE:
|
2008-09-05 11:25:53 +00:00
|
|
|
Printf(true, "%FxSOLVE FAILED!%Fd no convergence");
|
|
|
|
Printf(true, "the following constraints are unsatisfied");
|
2008-06-23 08:37:12 +00:00
|
|
|
break;
|
|
|
|
|
2009-04-20 07:30:09 +00:00
|
|
|
case System::SINGULAR_JACOBIAN:
|
2008-06-23 08:37:12 +00:00
|
|
|
Printf(true, "%FxSOLVE FAILED!%Fd inconsistent system");
|
|
|
|
Printf(true, "remove any one of these to fix it");
|
|
|
|
break;
|
2009-04-19 20:37:51 +00:00
|
|
|
|
2009-04-20 07:30:09 +00:00
|
|
|
case System::TOO_MANY_UNKNOWNS:
|
2009-04-19 20:37:51 +00:00
|
|
|
Printf(true, "Too many unknowns in a single group!");
|
|
|
|
return;
|
2008-09-05 11:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = 0; i < g->solved.remove.n; i++) {
|
|
|
|
hConstraint hc = g->solved.remove.elem[i];
|
2009-04-19 05:53:16 +00:00
|
|
|
Constraint *c = SK.constraint.FindByIdNoOops(hc);
|
2008-09-05 11:25:53 +00:00
|
|
|
if(!c) continue;
|
|
|
|
|
|
|
|
Printf(false, "%Bp %Fl%Ll%D%f%h%s%E",
|
|
|
|
(i & 1) ? 'd' : 'a',
|
|
|
|
c->h.v, (&TextWindow::ScreenSelectConstraint),
|
|
|
|
(&TextWindow::ScreenHoverConstraint),
|
|
|
|
c->DescriptionString());
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
2008-07-10 07:17:35 +00:00
|
|
|
|
|
|
|
Printf(true, "It may be possible to fix the problem ");
|
|
|
|
Printf(false, "by selecting Edit -> Undo.");
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
|
|
|
|
2008-07-20 11:27:22 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// When we're stepping a dimension. User specifies the finish value, and
|
|
|
|
// how many steps to take in between current and finish, re-solving each
|
|
|
|
// time.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TextWindow::ScreenStepDimFinish(int link, DWORD v) {
|
|
|
|
SS.TW.edit.meaning = EDIT_STEP_DIM_FINISH;
|
|
|
|
char s[1024];
|
|
|
|
if(SS.TW.shown.dimIsDistance) {
|
|
|
|
strcpy(s, SS.MmToString(SS.TW.shown.dimFinish));
|
|
|
|
} else {
|
|
|
|
sprintf(s, "%.3f", SS.TW.shown.dimFinish);
|
|
|
|
}
|
|
|
|
ShowTextEditControl(12, 11, s);
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenStepDimSteps(int link, DWORD v) {
|
|
|
|
char str[1024];
|
|
|
|
sprintf(str, "%d", SS.TW.shown.dimSteps);
|
|
|
|
SS.TW.edit.meaning = EDIT_STEP_DIM_STEPS;
|
|
|
|
ShowTextEditControl(14, 11, str);
|
|
|
|
}
|
|
|
|
void TextWindow::ScreenStepDimGo(int link, DWORD v) {
|
|
|
|
hConstraint hc = SS.TW.shown.constraint;
|
2009-04-19 05:53:16 +00:00
|
|
|
Constraint *c = SK.constraint.FindByIdNoOops(hc);
|
2008-07-20 11:27:22 +00:00
|
|
|
if(c) {
|
|
|
|
SS.UndoRemember();
|
|
|
|
double start = c->valA, finish = SS.TW.shown.dimFinish;
|
|
|
|
int i, n = SS.TW.shown.dimSteps;
|
|
|
|
for(i = 1; i <= n; i++) {
|
2009-04-19 05:53:16 +00:00
|
|
|
c = SK.GetConstraint(hc);
|
2008-07-20 11:27:22 +00:00
|
|
|
c->valA = start + ((finish - start)*i)/n;
|
|
|
|
SS.MarkGroupDirty(c->group);
|
|
|
|
SS.GenerateAll();
|
|
|
|
if(!SS.AllGroupsOkay()) {
|
|
|
|
// Failed to solve, so quit
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PaintGraphics();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
InvalidateGraphics();
|
|
|
|
SS.TW.GoToScreen(SCREEN_LIST_OF_GROUPS);
|
|
|
|
}
|
|
|
|
void TextWindow::ShowStepDimension(void) {
|
2009-04-19 05:53:16 +00:00
|
|
|
Constraint *c = SK.constraint.FindByIdNoOops(shown.constraint);
|
2008-07-20 11:27:22 +00:00
|
|
|
if(!c) {
|
|
|
|
shown.screen = SCREEN_LIST_OF_GROUPS;
|
|
|
|
Show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Printf(true, "%FtSTEP DIMENSION%E %s", c->DescriptionString());
|
|
|
|
|
|
|
|
if(shown.dimIsDistance) {
|
|
|
|
Printf(true, "%Ba %FtSTART%E %s", SS.MmToString(c->valA));
|
|
|
|
Printf(false, "%Bd %FtFINISH%E %s %Fl%Ll%f[change]%E",
|
|
|
|
SS.MmToString(shown.dimFinish), &ScreenStepDimFinish);
|
|
|
|
} else {
|
|
|
|
Printf(true, "%Ba %FtSTART%E %@", c->valA);
|
|
|
|
Printf(false, "%Bd %FtFINISH%E %@ %Fl%Ll%f[change]%E",
|
|
|
|
shown.dimFinish, &ScreenStepDimFinish);
|
|
|
|
}
|
|
|
|
Printf(false, "%Ba %FtSTEPS%E %d %Fl%Ll%f%D[change]%E",
|
|
|
|
shown.dimSteps, &ScreenStepDimSteps);
|
|
|
|
|
|
|
|
Printf(true, " %Fl%Ll%fstep dimension now%E", &ScreenStepDimGo);
|
|
|
|
|
|
|
|
Printf(true, "(or %Fl%Ll%fcancel operation%E)", &ScreenHome);
|
|
|
|
}
|
|
|
|
|
2008-02-07 09:53:52 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// A report of the volume of the mesh. No interaction, output-only.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TextWindow::ShowMeshVolume(void) {
|
|
|
|
Printf(true, "%FtMESH VOLUME");
|
|
|
|
|
|
|
|
if(SS.viewUnits == SolveSpace::UNIT_INCHES) {
|
|
|
|
Printf(true, " %3 in^3", shown.volume/(25.4*25.4*25.4));
|
|
|
|
} else {
|
|
|
|
Printf(true, " %2 mm^3", shown.volume);
|
|
|
|
Printf(false, " %2 mL", shown.volume/(10*10*10));
|
|
|
|
}
|
|
|
|
|
|
|
|
Printf(true, "%Fl%Ll%f(back)%E", &ScreenHome);
|
|
|
|
}
|
|
|
|
|
2008-06-23 08:37:12 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// The edit control is visible, and the user just pressed enter.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TextWindow::EditControlDone(char *s) {
|
|
|
|
switch(edit.meaning) {
|
|
|
|
case EDIT_TIMES_REPEATED: {
|
|
|
|
Expr *e = Expr::From(s);
|
|
|
|
if(e) {
|
|
|
|
SS.UndoRemember();
|
|
|
|
|
2008-07-09 06:13:49 +00:00
|
|
|
double ev = e->Eval();
|
|
|
|
if((int)ev < 1) {
|
|
|
|
Error("Can't repeat fewer than 1 time.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(edit.group);
|
2008-07-09 06:13:49 +00:00
|
|
|
g->valA = ev;
|
|
|
|
|
|
|
|
if(g->type == Group::ROTATE) {
|
|
|
|
int i, c = 0;
|
2009-04-19 05:53:16 +00:00
|
|
|
for(i = 0; i < SK.constraint.n; i++) {
|
|
|
|
if(SK.constraint.elem[i].group.v == g->h.v) c++;
|
2008-07-09 06:13:49 +00:00
|
|
|
}
|
|
|
|
// If the group does not contain any constraints, then
|
|
|
|
// set the numerical guess to space the copies uniformly
|
|
|
|
// over one rotation. Don't touch the guess if we're
|
|
|
|
// already constrained, because that would break
|
|
|
|
// convergence.
|
|
|
|
if(c == 0) {
|
2009-09-18 08:14:15 +00:00
|
|
|
double copies = (g->skipFirst) ? (ev + 1) : ev;
|
|
|
|
SK.GetParam(g->h.param(3))->val = PI/(2*copies);
|
2008-07-09 06:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-23 08:37:12 +00:00
|
|
|
|
|
|
|
SS.MarkGroupDirty(g->h);
|
|
|
|
SS.later.generateAll = true;
|
|
|
|
} else {
|
|
|
|
Error("Not a valid number or expression: '%s'", s);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EDIT_GROUP_NAME: {
|
2009-09-18 08:14:15 +00:00
|
|
|
if(!StringAllPrintable(s) || !*s) {
|
2008-06-23 08:37:12 +00:00
|
|
|
Error("Invalid characters. Allowed are: A-Z a-z 0-9 _ -");
|
|
|
|
} else {
|
|
|
|
SS.UndoRemember();
|
|
|
|
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(edit.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
g->name.strcpy(s);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2009-12-15 12:26:22 +00:00
|
|
|
case EDIT_GROUP_SCALE: {
|
|
|
|
Expr *e = Expr::From(s);
|
|
|
|
if(e) {
|
|
|
|
double ev = e->Eval();
|
|
|
|
if(fabs(ev) < 1e-6) {
|
|
|
|
Error("Scale cannot be zero.");
|
|
|
|
} else {
|
|
|
|
Group *g = SK.GetGroup(edit.group);
|
|
|
|
g->scale = ev;
|
|
|
|
SS.MarkGroupDirty(g->h);
|
|
|
|
SS.later.generateAll = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Error("Not a valid number or expression: '%s'", s);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-06-23 08:37:12 +00:00
|
|
|
case EDIT_HELIX_TURNS:
|
|
|
|
case EDIT_HELIX_PITCH:
|
|
|
|
case EDIT_HELIX_DRADIUS: {
|
|
|
|
SS.UndoRemember();
|
2009-04-19 05:53:16 +00:00
|
|
|
Group *g = SK.GetGroup(edit.group);
|
2008-06-23 08:37:12 +00:00
|
|
|
Expr *e = Expr::From(s);
|
|
|
|
if(!e) {
|
|
|
|
Error("Not a valid number or expression: '%s'", s);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(edit.meaning == EDIT_HELIX_TURNS) {
|
|
|
|
g->valA = min(30, fabs(e->Eval()));
|
|
|
|
} else if(edit.meaning == EDIT_HELIX_PITCH) {
|
|
|
|
g->valB = SS.ExprToMm(e);
|
|
|
|
} else {
|
|
|
|
g->valC = SS.ExprToMm(e);
|
|
|
|
}
|
|
|
|
SS.MarkGroupDirty(g->h);
|
|
|
|
SS.later.generateAll = true;
|
|
|
|
break;
|
|
|
|
}
|
2008-06-30 09:09:17 +00:00
|
|
|
case EDIT_TTF_TEXT: {
|
|
|
|
SS.UndoRemember();
|
2009-04-19 05:53:16 +00:00
|
|
|
Request *r = SK.request.FindByIdNoOops(edit.request);
|
2008-06-30 09:09:17 +00:00
|
|
|
if(r) {
|
|
|
|
r->str.strcpy(s);
|
|
|
|
SS.MarkGroupDirty(r->group);
|
|
|
|
SS.later.generateAll = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-09-17 10:13:37 +00:00
|
|
|
case EDIT_STEP_DIM_FINISH: {
|
|
|
|
Expr *e = Expr::From(s);
|
|
|
|
if(!e) {
|
|
|
|
Error("Not a valid number or expression: '%s'", s);
|
|
|
|
break;
|
|
|
|
}
|
2008-07-20 11:27:22 +00:00
|
|
|
if(shown.dimIsDistance) {
|
2008-09-17 10:13:37 +00:00
|
|
|
shown.dimFinish = SS.ExprToMm(e);
|
2008-07-20 11:27:22 +00:00
|
|
|
} else {
|
2008-09-17 10:13:37 +00:00
|
|
|
shown.dimFinish = e->Eval();
|
2008-07-20 11:27:22 +00:00
|
|
|
}
|
|
|
|
break;
|
2008-09-17 10:13:37 +00:00
|
|
|
}
|
2008-07-20 11:27:22 +00:00
|
|
|
case EDIT_STEP_DIM_STEPS:
|
|
|
|
shown.dimSteps = min(300, max(1, atoi(s)));
|
|
|
|
break;
|
2009-09-03 08:13:09 +00:00
|
|
|
|
2009-09-29 13:14:47 +00:00
|
|
|
default: {
|
2009-12-15 12:26:22 +00:00
|
|
|
int cnt = 0;
|
|
|
|
if(EditControlDoneForStyles(s)) cnt++;
|
|
|
|
if(EditControlDoneForConfiguration(s)) cnt++;
|
|
|
|
if(EditControlDoneForPaste(s)) cnt++;
|
|
|
|
if(cnt > 1) {
|
2009-09-29 13:14:47 +00:00
|
|
|
// The identifiers were somehow assigned not uniquely?
|
|
|
|
oops();
|
2009-09-03 08:13:09 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-06-23 08:37:12 +00:00
|
|
|
}
|
2008-06-30 09:09:17 +00:00
|
|
|
InvalidateGraphics();
|
2008-06-23 08:37:12 +00:00
|
|
|
SS.later.showTW = true;
|
|
|
|
HideTextEditControl();
|
|
|
|
edit.meaning = EDIT_NOTHING;
|
|
|
|
}
|
|
|
|
|