diff options
Diffstat (limited to 'app/bin/csensor.c')
-rw-r--r-- | app/bin/csensor.c | 720 |
1 files changed, 365 insertions, 355 deletions
diff --git a/app/bin/csensor.c b/app/bin/csensor.c index b6f2224..761b511 100644 --- a/app/bin/csensor.c +++ b/app/bin/csensor.c @@ -4,8 +4,8 @@ /* -*- C -*- **************************************************************** * - * System : - * Module : + * System : + * Module : * Object Name : $RCSfile$ * Revision : $Revision$ * Date : $Date$ @@ -14,12 +14,12 @@ * Created : Sun Mar 5 16:01:37 2017 * Last Modified : <170314.1407> * - * Description + * Description * * Notes * * History - * + * **************************************************************************** * * Copyright (C) 2017 Robert Heller D/B/A Deepwoods Software @@ -38,13 +38,13 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * * - * * ****************************************************************************/ -static const char rcsid[] = "@(#) : $Id$"; +//static const char rcsid[] = "@(#) : $Id$"; #include "compound.h" #include "cselect.h" @@ -54,7 +54,6 @@ static const char rcsid[] = "@(#) : $Id$"; #include "layout.h" #include "param.h" #include "track.h" -#include "trackx.h" #include "common-ui.h" #ifdef UTFCONVERT #include "include/utf8convert.h" @@ -73,257 +72,261 @@ static drawCmd_t sensorD = { 1.0, 0.0, {0.0,0.0}, {0.0,0.0}, - Pix2CoOrd, CoOrd2Pix }; + Pix2CoOrd, CoOrd2Pix +}; static char sensorName[STR_SHORT_SIZE]; static char sensorScript[STR_LONG_SIZE]; #endif typedef struct sensorData_t { - extraDataBase_t base; - coOrd orig; - BOOL_T IsHilite; - char * name; - char * script; + extraDataBase_t base; + coOrd orig; + BOOL_T IsHilite; + char * name; + char * script; } sensorData_t, *sensorData_p; static sensorData_p GetsensorData ( track_p trk ) { - return GET_EXTRA_DATA( trk, T_SENSOR, sensorData_t ); + return GET_EXTRA_DATA( trk, T_SENSOR, sensorData_t ); } #define RADIUS 6 #define sensor_SF (3.0) -static void DDrawSensor(drawCmd_p d, coOrd orig, DIST_T scaleRatio, - wDrawColor color ) +static void DDrawSensor(drawCmd_p d, coOrd orig, DIST_T scaleRatio, + wDrawColor color ) { - coOrd p1, p2; - - p1 = orig; - DrawFillCircle(d,p1, RADIUS * sensor_SF / scaleRatio,color); - Translate (&p2, orig, 45, RADIUS * sensor_SF / scaleRatio); - DrawLine(d, p1, p2, 2, wDrawColorWhite); - Translate (&p2, orig, 45+90, RADIUS * sensor_SF / scaleRatio); - DrawLine(d, p1, p2, 2, wDrawColorWhite); - Translate (&p2, orig, 45+180, RADIUS * sensor_SF / scaleRatio); - DrawLine(d, p1, p2, 2, wDrawColorWhite); - Translate (&p2, orig, 45+270, RADIUS * sensor_SF / scaleRatio); - DrawLine(d, p1, p2, 2, wDrawColorWhite); + coOrd p1, p2; + + p1 = orig; + DrawFillCircle(d,p1, RADIUS * sensor_SF / scaleRatio,color); + Translate (&p2, orig, 45, RADIUS * sensor_SF / scaleRatio); + DrawLine(d, p1, p2, 2, wDrawColorWhite); + Translate (&p2, orig, 45+90, RADIUS * sensor_SF / scaleRatio); + DrawLine(d, p1, p2, 2, wDrawColorWhite); + Translate (&p2, orig, 45+180, RADIUS * sensor_SF / scaleRatio); + DrawLine(d, p1, p2, 2, wDrawColorWhite); + Translate (&p2, orig, 45+270, RADIUS * sensor_SF / scaleRatio); + DrawLine(d, p1, p2, 2, wDrawColorWhite); } static void DrawSensor (track_p t, drawCmd_p d, wDrawColor color ) { - sensorData_p xx = GetsensorData(t); - DDrawSensor(d,xx->orig,GetScaleRatio(GetTrkScale(t)),color); + sensorData_p xx = GetsensorData(t); + DDrawSensor(d,xx->orig,GetScaleRatio(GetTrkScale(t)),color); } -static void SensorBoundingBox (coOrd orig, DIST_T scaleRatio, coOrd *hi, - coOrd *lo) +static void SensorBoundingBox (coOrd orig, DIST_T scaleRatio, coOrd *hi, + coOrd *lo) { - coOrd p1, p2; - - p1 = orig; - Translate (&p1, orig, 0, -RADIUS * sensor_SF / scaleRatio); - Translate (&p2, orig, 0, RADIUS * sensor_SF / scaleRatio); - *hi = p1; *lo = p1; - if (p2.x > hi->x) hi->x = p2.x; - if (p2.x < lo->x) lo->x = p2.x; - if (p2.y > hi->y) hi->y = p2.y; - if (p2.y < lo->y) lo->y = p2.y; -} + coOrd p1, p2; + + p1 = orig; + Translate (&p1, orig, 0, -RADIUS * sensor_SF / scaleRatio); + Translate (&p2, orig, 0, RADIUS * sensor_SF / scaleRatio); + *hi = p1; *lo = p1; + if (p2.x > hi->x) { hi->x = p2.x; } + if (p2.x < lo->x) { lo->x = p2.x; } + if (p2.y > hi->y) { hi->y = p2.y; } + if (p2.y < lo->y) { lo->y = p2.y; } +} static void ComputeSensorBoundingBox (track_p t ) { - coOrd lo, hi; - sensorData_p xx = GetsensorData(t); - SensorBoundingBox(xx->orig, GetScaleRatio(GetTrkScale(t)), &hi, &lo); - SetBoundingBox(t, hi, lo); + coOrd lo, hi; + sensorData_p xx = GetsensorData(t); + SensorBoundingBox(xx->orig, GetScaleRatio(GetTrkScale(t)), &hi, &lo); + SetBoundingBox(t, hi, lo); } static DIST_T DistanceSensor (track_p t, coOrd * p ) { - sensorData_p xx = GetsensorData(t); - return FindDistance(xx->orig, *p); + sensorData_p xx = GetsensorData(t); + return FindDistance(xx->orig, *p); } static struct { - char name[STR_SHORT_SIZE]; - coOrd pos; - char script[STR_LONG_SIZE]; + char name[STR_SHORT_SIZE]; + coOrd pos; + char script[STR_LONG_SIZE]; } sensorProperties; typedef enum { NM, PS, SC } sensorDesc_e; static descData_t sensorDesc[] = { - /* NM */ { DESC_STRING, N_("Name"), &sensorProperties.name, sizeof(sensorProperties.name) }, - /* PS */ { DESC_POS, N_("Position"), &sensorProperties.pos }, - /* SC */ { DESC_STRING, N_("Script"), &sensorProperties.script, sizeof(sensorProperties.script) }, - { DESC_NULL } }; + /* NM */ { DESC_STRING, N_("Name"), &sensorProperties.name, sizeof(sensorProperties.name) }, + /* PS */ { DESC_POS, N_("Position"), &sensorProperties.pos }, + /* SC */ { DESC_STRING, N_("Script"), &sensorProperties.script, sizeof(sensorProperties.script) }, + { DESC_NULL } +}; static void UpdateSensorProperties ( track_p trk, int inx, descData_p - descUpd, BOOL_T needUndoStart ) + descUpd, BOOL_T needUndoStart ) { - sensorData_p xx = GetsensorData(trk); - const char *thename, *thescript; - char *newName, *newScript; - unsigned int max_str; - BOOL_T changed, nChanged, pChanged, sChanged; - - switch (inx) { - case NM: - break; - case PS: - break; - case SC: - break; - case -1: - changed = nChanged = pChanged = sChanged = FALSE; - thename = wStringGetValue( (wString_p) sensorDesc[NM].control0 ); - if (strcmp(thename,xx->name) != 0) { - nChanged = changed = TRUE; - max_str = sensorDesc[NM].max_string; + sensorData_p xx = GetsensorData(trk); + const char *thename, *thescript; + char *newName, *newScript = NULL; + unsigned int max_str; + BOOL_T changed, nChanged, pChanged, sChanged; + + switch (inx) { + case NM: + break; + case PS: + break; + case SC: + break; + case -1: + changed = nChanged = pChanged = sChanged = FALSE; + thename = wStringGetValue( (wString_p) sensorDesc[NM].control0 ); + if (strcmp(thename,xx->name) != 0) { + nChanged = changed = TRUE; + max_str = sensorDesc[NM].max_string; if (max_str && strlen(thename)>max_str-1) { newName = MyMalloc(max_str); newName[max_str-1] = '\0'; strncat(newName,thename,max_str-1); NoticeMessage2(0, MSG_ENTERED_STRING_TRUNCATED, _("Ok"), NULL, max_str-1); - } else newName = MyStrdup(thename); - } + } else { newName = MyStrdup(thename); } + } - thescript = wStringGetValue( (wString_p) sensorDesc[SC].control0 ); - if (strcmp(thescript,xx->script) != 0) { - sChanged = changed = TRUE; - max_str = sensorDesc[SC].max_string; + thescript = wStringGetValue( (wString_p) sensorDesc[SC].control0 ); + if (strcmp(thescript,xx->script) != 0) { + sChanged = changed = TRUE; + max_str = sensorDesc[SC].max_string; if (max_str && strlen(thename)>max_str-1) { newScript = MyMalloc(max_str); newScript[max_str-1] = '\0'; strncat(newScript,thescript,max_str-1); NoticeMessage2(0, MSG_ENTERED_STRING_TRUNCATED, _("Ok"), NULL, max_str-1); - } else newScript = MyStrdup(thescript); - } - - if (sensorProperties.pos.x != xx->orig.x || - sensorProperties.pos.y != xx->orig.y) { - pChanged = changed = TRUE; - } - if (!changed) break; - if (needUndoStart) - UndoStart( _("Change Sensor"), "Change Sensor" ); - UndoModify( trk ); - if (nChanged) { - MyFree(xx->name); - xx->name = newName; - } - if (pChanged) { - UndrawNewTrack( trk ); - } - if (pChanged) { - xx->orig = sensorProperties.pos; - } - if (sChanged) { - MyFree(xx->script); - xx->script = newScript; - } - if (pChanged) { - ComputeSensorBoundingBox( trk ); - DrawNewTrack( trk ); - } - break; - } + } else { newScript = MyStrdup(thescript); } + } + + if (sensorProperties.pos.x != xx->orig.x || + sensorProperties.pos.y != xx->orig.y) { + pChanged = changed = TRUE; + } + if (!changed) { break; } + if (needUndoStart) { + UndoStart( _("Change Sensor"), "Change Sensor" ); + } + UndoModify( trk ); + if (nChanged) { + MyFree(xx->name); + xx->name = newName; + } + if (pChanged) { + UndrawNewTrack( trk ); + } + if (pChanged) { + xx->orig = sensorProperties.pos; + } + if (sChanged) { + MyFree(xx->script); + xx->script = newScript; + } + if (pChanged) { + ComputeSensorBoundingBox( trk ); + DrawNewTrack( trk ); + } + break; + } } - + static void DescribeSensor (track_p trk, char * str, CSIZE_T len ) { - sensorData_p xx = GetsensorData(trk); - - strcpy( str, _(GetTrkTypeName( trk )) ); - str++; - while (*str) { - *str = tolower((unsigned char)*str); - str++; - } - sprintf( str, _("(%d [%s]): Layer=%u, at %0.3f,%0.3f"), - GetTrkIndex(trk), - xx->name,GetTrkLayer(trk)+1, xx->orig.x, xx->orig.y); - strncpy(sensorProperties.name,xx->name,STR_SHORT_SIZE-1); - sensorProperties.name[STR_SHORT_SIZE-1] = '\0'; - strncpy(sensorProperties.script,xx->script,STR_LONG_SIZE-1); - sensorProperties.script[STR_LONG_SIZE-1] = '\0'; - sensorProperties.pos = xx->orig; - sensorDesc[NM].mode = - sensorDesc[SC].mode = DESC_NOREDRAW; - DoDescribe( _("Sensor"), trk, sensorDesc, UpdateSensorProperties ); + sensorData_p xx = GetsensorData(trk); + + strcpy( str, _(GetTrkTypeName( trk )) ); + str++; + while (*str) { + *str = tolower((unsigned char)*str); + str++; + } + sprintf( str, _("(%d [%s]): Layer=%u, at %0.3f,%0.3f"), + GetTrkIndex(trk), + xx->name,GetTrkLayer(trk)+1, xx->orig.x, xx->orig.y); + strncpy(sensorProperties.name,xx->name,STR_SHORT_SIZE-1); + sensorProperties.name[STR_SHORT_SIZE-1] = '\0'; + strncpy(sensorProperties.script,xx->script,STR_LONG_SIZE-1); + sensorProperties.script[STR_LONG_SIZE-1] = '\0'; + sensorProperties.pos = xx->orig; + sensorDesc[NM].mode = + sensorDesc[SC].mode = DESC_NOREDRAW; + DoDescribe( _("Sensor"), trk, sensorDesc, UpdateSensorProperties ); } -static void DeleteSensor ( track_p trk ) +static void DeleteSensor ( track_p trk ) { - sensorData_p xx = GetsensorData(trk); - MyFree(xx->name); xx->name = NULL; - MyFree(xx->script); xx->script = NULL; + sensorData_p xx = GetsensorData(trk); + MyFree(xx->name); xx->name = NULL; + MyFree(xx->script); xx->script = NULL; } static BOOL_T WriteSensor ( track_p t, FILE * f ) { - BOOL_T rc = TRUE; - sensorData_p xx = GetsensorData(t); + BOOL_T rc = TRUE; + sensorData_p xx = GetsensorData(t); char *sensorName = MyStrdup(xx->name); #ifdef UTFCONVERT sensorName = Convert2UTF8(sensorName); #endif // UTFCONVERT - rc &= fprintf(f, "SENSOR %d %u %s %d %0.6f %0.6f \"%s\" \"%s\"\n", - GetTrkIndex(t), GetTrkLayer(t), GetTrkScaleName(t), - GetTrkVisible(t), xx->orig.x, xx->orig.y, sensorName, - xx->script)>0; + rc &= fprintf(f, "SENSOR %d %u %s %d %0.6f %0.6f \"%s\" \"%s\"\n", + GetTrkIndex(t), GetTrkLayer(t), GetTrkScaleName(t), + GetTrkVisible(t), xx->orig.x, xx->orig.y, sensorName, + xx->script)>0; MyFree(sensorName); - return rc; + return rc; } static BOOL_T ReadSensor ( char * line ) { - wIndex_t index; - /*TRKINX_T trkindex;*/ - track_p trk; - /*char * cp = NULL;*/ - char *name; - char *script; - coOrd orig; - BOOL_T visible; - char scale[10]; - wIndex_t layer; - sensorData_p xx; - if (!GetArgs(line+7,"dLsdpqq",&index,&layer,scale, &visible, &orig,&name,&script)) { - return FALSE; - } + wIndex_t index; + /*TRKINX_T trkindex;*/ + track_p trk; + /*char * cp = NULL;*/ + char *name; + char *script; + coOrd orig; + BOOL_T visible; + char scale[10]; + wIndex_t layer; + sensorData_p xx; + if (!GetArgs(line+7,"dLsdpqq",&index,&layer,scale, &visible, &orig,&name, + &script)) { + return FALSE; + } #ifdef UTFCONVERT ConvertUTF8ToSystem(name); #endif // UTFCONVERT - trk = NewTrack(index, T_SENSOR, 0, sizeof(sensorData_t)); - SetTrkVisible(trk, visible); - SetTrkScale(trk, LookupScale( scale )); - SetTrkLayer(trk, layer); - xx = GetsensorData ( trk ); - xx->name = name; - xx->orig = orig; - xx->script = script; - ComputeSensorBoundingBox(trk); - return TRUE; + trk = NewTrack(index, T_SENSOR, 0, sizeof(sensorData_t)); + SetTrkVisible(trk, visible); + SetTrkScale(trk, LookupScale( scale )); + SetTrkLayer(trk, layer); + xx = GetsensorData ( trk ); + xx->name = name; + xx->orig = orig; + xx->script = script; + ComputeSensorBoundingBox(trk); + return TRUE; } static void MoveSensor (track_p trk, coOrd orig ) { - sensorData_p xx = GetsensorData ( trk ); - xx->orig.x += orig.x; - xx->orig.y += orig.y; - ComputeSensorBoundingBox(trk); + sensorData_p xx = GetsensorData ( trk ); + xx->orig.x += orig.x; + xx->orig.y += orig.y; + ComputeSensorBoundingBox(trk); } static void RotateSensor (track_p trk, coOrd orig, ANGLE_T angle ) @@ -334,45 +337,45 @@ static void RescaleSensor (track_p trk, FLOAT_T ratio ) { } -static void FlipSensor (track_p trk, coOrd orig, ANGLE_T angle ) +static void FlipSensor (track_p trk, coOrd orig, ANGLE_T angle ) { - sensorData_p xx = GetsensorData ( trk ); - FlipPoint(&(xx->orig), orig, angle); - ComputeSensorBoundingBox(trk); + sensorData_p xx = GetsensorData ( trk ); + FlipPoint(&(xx->orig), orig, angle); + ComputeSensorBoundingBox(trk); } static trackCmd_t sensorCmds = { - "SENSOR", - DrawSensor, - DistanceSensor, - DescribeSensor, - DeleteSensor, - WriteSensor, - ReadSensor, - MoveSensor, - RotateSensor, - RescaleSensor, - NULL, /* audit */ - NULL, /* getAngle */ - NULL, /* split */ - NULL, /* traverse */ - NULL, /* enumerate */ - NULL, /* redraw */ - NULL, /* trim */ - NULL, /* merge */ - NULL, /* modify */ - NULL, /* getLength */ - NULL, /* getTrkParams */ - NULL, /* moveEndPt */ - NULL, /* query */ - NULL, /* ungroup */ - FlipSensor, /* flip */ - NULL, /* drawPositionIndicator */ - NULL, /* advancePositionIndicator */ - NULL, /* checkTraverse */ - NULL, /* makeParallel */ - NULL /* drawDesc */ + "SENSOR", + DrawSensor, + DistanceSensor, + DescribeSensor, + DeleteSensor, + WriteSensor, + ReadSensor, + MoveSensor, + RotateSensor, + RescaleSensor, + NULL, /* audit */ + NULL, /* getAngle */ + NULL, /* split */ + NULL, /* traverse */ + NULL, /* enumerate */ + NULL, /* redraw */ + NULL, /* trim */ + NULL, /* merge */ + NULL, /* modify */ + NULL, /* getLength */ + NULL, /* getTrkParams */ + NULL, /* moveEndPt */ + NULL, /* query */ + NULL, /* ungroup */ + FlipSensor, /* flip */ + NULL, /* drawPositionIndicator */ + NULL, /* advancePositionIndicator */ + NULL, /* checkTraverse */ + NULL, /* makeParallel */ + NULL /* drawDesc */ }; static coOrd sensorEditOrig; @@ -383,13 +386,13 @@ static char sensorEditScript[STR_LONG_SIZE]; static paramFloatRange_t r_1000_1000 = { -1000.0, 1000.0, 80 }; static paramData_t sensorEditPLs[] = { #define I_SENSORNAME (0) - /*0*/ { PD_STRING, sensorEditName, "name", PDO_NOPREF|PDO_NOTBLANK, I2VP(200), N_("Name"), 0, 0, sizeof(sensorEditName)}, + /*0*/ { PD_STRING, sensorEditName, "name", PDO_NOPREF|PDO_NOTBLANK, I2VP(200), N_("Name"), 0, 0, sizeof(sensorEditName)}, #define I_ORIGX (1) - /*1*/ { PD_FLOAT, &sensorEditOrig.x, "origx", PDO_DIM, &r_1000_1000, N_("Origin X") }, + /*1*/ { PD_FLOAT, &sensorEditOrig.x, "origx", PDO_DIM, &r_1000_1000, N_("Origin X") }, #define I_ORIGY (2) - /*2*/ { PD_FLOAT, &sensorEditOrig.y, "origy", PDO_DIM, &r_1000_1000, N_("Origin Y") }, + /*2*/ { PD_FLOAT, &sensorEditOrig.y, "origy", PDO_DIM, &r_1000_1000, N_("Origin Y") }, #define I_SENSORSCRIPT (3) - /*3*/ { PD_STRING, sensorEditScript, "script", PDO_NOPREF, I2VP(350), N_("Script"), 0, 0, sizeof(sensorEditScript)}, + /*3*/ { PD_STRING, sensorEditScript, "script", PDO_NOPREF, I2VP(350), N_("Script"), 0, 0, sizeof(sensorEditScript)}, }; static paramGroup_t sensorEditPG = { "sensorEdit", 0, sensorEditPLs, COUNT( sensorEditPLs ) }; @@ -397,109 +400,113 @@ static wWin_p sensorEditW; static void SensorEditOk ( void * junk ) { - track_p trk; - sensorData_p xx; - - if (sensorEditTrack == NULL) { - UndoStart( _("Create Sensor"), "Create Sensor"); - trk = NewTrack(0, T_SENSOR, 0, sizeof(sensorData_t)); - } else { - UndoStart( _("Modify Sensor"), "Modify Sensor"); - trk = sensorEditTrack; - } - xx = GetsensorData(trk); - xx->orig = sensorEditOrig; - if ( xx->name == NULL || strncmp (xx->name, sensorEditName, STR_SHORT_SIZE) != 0) { - MyFree(xx->name); - xx->name = MyStrdup(sensorEditName); - } - if ( xx->script == NULL || strncmp (xx->script, sensorEditScript, STR_LONG_SIZE) != 0) { - MyFree(xx->script); - xx->script = MyStrdup(sensorEditScript); - } - UndoEnd(); - DoRedraw(); - ComputeSensorBoundingBox(trk); - wHide( sensorEditW ); + track_p trk; + sensorData_p xx; + + if (sensorEditTrack == NULL) { + UndoStart( _("Create Sensor"), "Create Sensor"); + trk = NewTrack(0, T_SENSOR, 0, sizeof(sensorData_t)); + } else { + UndoStart( _("Modify Sensor"), "Modify Sensor"); + trk = sensorEditTrack; + } + xx = GetsensorData(trk); + xx->orig = sensorEditOrig; + if ( xx->name == NULL + || strncmp (xx->name, sensorEditName, STR_SHORT_SIZE) != 0) { + MyFree(xx->name); + xx->name = MyStrdup(sensorEditName); + } + if ( xx->script == NULL + || strncmp (xx->script, sensorEditScript, STR_LONG_SIZE) != 0) { + MyFree(xx->script); + xx->script = MyStrdup(sensorEditScript); + } + UndoEnd(); + DoRedraw(); + ComputeSensorBoundingBox(trk); + wHide( sensorEditW ); } #if 0 static void SensorEditCancel ( wWin_p junk ) { - wHide( sensorEditW ); + wHide( sensorEditW ); } #endif static void EditSensorDialog() { - sensorData_p xx; - - if ( !sensorEditW ) { - ParamRegister( &sensorEditPG ); - sensorEditW = ParamCreateDialog (&sensorEditPG, - MakeWindowTitle(_("Edit sensor")), - _("Ok"), SensorEditOk, - wHide, TRUE, NULL, - F_BLOCK, - NULL ); - } - if (sensorEditTrack == NULL) { - sensorEditName[0] = '\0'; - sensorEditScript[0] = '\0'; - } else { - xx = GetsensorData ( sensorEditTrack ); - strncpy(sensorEditName,xx->name,STR_SHORT_SIZE); - strncpy(sensorEditScript,xx->script,STR_LONG_SIZE); - sensorEditOrig = xx->orig; - } - ParamLoadControls( &sensorEditPG ); - wShow( sensorEditW ); + sensorData_p xx; + + if ( !sensorEditW ) { + ParamRegister( &sensorEditPG ); + sensorEditW = ParamCreateDialog (&sensorEditPG, + MakeWindowTitle(_("Edit sensor")), + _("Ok"), SensorEditOk, + wHide, TRUE, NULL, + F_BLOCK, + NULL ); + } + if (sensorEditTrack == NULL) { + sensorEditName[0] = '\0'; + sensorEditScript[0] = '\0'; + } else { + xx = GetsensorData ( sensorEditTrack ); + strncpy(sensorEditName,xx->name,STR_SHORT_SIZE); + strncpy(sensorEditScript,xx->script,STR_LONG_SIZE); + sensorEditOrig = xx->orig; + } + ParamLoadControls( &sensorEditPG ); + wShow( sensorEditW ); } static void EditSensor (track_p trk) { - sensorEditTrack = trk; - EditSensorDialog(); + sensorEditTrack = trk; + EditSensorDialog(); } static void CreateNewSensor (coOrd orig) { - sensorEditOrig = orig; - sensorEditTrack = NULL; - EditSensorDialog(); + sensorEditOrig = orig; + sensorEditTrack = NULL; + EditSensorDialog(); } static STATUS_T CmdSensor ( wAction_t action, coOrd pos ) { static coOrd sensor_pos; static BOOL_T create; - switch (action) { - case C_START: - InfoMessage(_("Place sensor")); - SetAllTrackSelect( FALSE ); - create = FALSE; - return C_CONTINUE; - case C_DOWN: - create = TRUE; - /* no break */ + switch (action) { + case C_START: + InfoMessage(_("Place sensor")); + SetAllTrackSelect( FALSE ); + create = FALSE; + return C_CONTINUE; + case C_DOWN: + create = TRUE; + /* no break */ case C_MOVE: SnapPos(&pos); sensor_pos = pos; - return C_CONTINUE; - case C_UP: - SnapPos(&pos); - CreateNewSensor(pos); - return C_TERMINATE; - case C_REDRAW: - if (create) - DDrawSensor( &tempD, sensor_pos, GetScaleRatio(GetLayoutCurScale()), wDrawColorBlack ); - return C_CONTINUE; - case C_CANCEL: - create = FALSE; - return C_CONTINUE; - default: - return C_CONTINUE; - } + return C_CONTINUE; + case C_UP: + SnapPos(&pos); + CreateNewSensor(pos); + return C_TERMINATE; + case C_REDRAW: + if (create) { + DDrawSensor( &tempD, sensor_pos, GetScaleRatio(GetLayoutCurScale()), + wDrawColorBlack ); + } + return C_CONTINUE; + case C_CANCEL: + create = FALSE; + return C_CONTINUE; + default: + return C_CONTINUE; + } } static coOrd ctlhiliteOrig, ctlhiliteSize; @@ -507,92 +514,95 @@ static POS_T ctlhiliteBorder; static wDrawColor ctlhiliteColor = 0; static void DrawSensorTrackHilite( void ) { - if (ctlhiliteColor==0) + if (ctlhiliteColor==0) { ctlhiliteColor = wDrawColorGray(87); - DrawRectangle( &tempD, ctlhiliteOrig, ctlhiliteSize, ctlhiliteColor, DRAW_TRANSPARENT ); + } + DrawRectangle( &tempD, ctlhiliteOrig, ctlhiliteSize, ctlhiliteColor, + DRAW_TRANSPARENT ); } static int SensorMgmProc ( int cmd, void * data ) { - track_p trk = (track_p) data; - sensorData_p xx = GetsensorData(trk); - /*char msg[STR_SIZE];*/ - - switch ( cmd ) { - case CONTMGM_CAN_EDIT: - return TRUE; - break; - case CONTMGM_DO_EDIT: - EditSensor(trk); - return TRUE; - break; - case CONTMGM_CAN_DELETE: - return TRUE; - break; - case CONTMGM_DO_DELETE: - DeleteTrack(trk, FALSE); - return TRUE; - break; - case CONTMGM_DO_HILIGHT: - if (!xx->IsHilite) { - ctlhiliteBorder = mainD.scale*0.1; - if ( ctlhiliteBorder < trackGauge ) ctlhiliteBorder = trackGauge; - GetBoundingBox( trk, &ctlhiliteSize, &ctlhiliteOrig ); - ctlhiliteOrig.x -= ctlhiliteBorder; - ctlhiliteOrig.y -= ctlhiliteBorder; - ctlhiliteSize.x -= ctlhiliteOrig.x-ctlhiliteBorder; - ctlhiliteSize.y -= ctlhiliteOrig.y-ctlhiliteBorder; - DrawSensorTrackHilite(); - xx->IsHilite = TRUE; - } - break; - case CONTMGM_UN_HILIGHT: - if (xx->IsHilite) { - ctlhiliteBorder = mainD.scale*0.1; - if ( ctlhiliteBorder < trackGauge ) ctlhiliteBorder = trackGauge; - GetBoundingBox( trk, &ctlhiliteSize, &ctlhiliteOrig ); - ctlhiliteOrig.x -= ctlhiliteBorder; - ctlhiliteOrig.y -= ctlhiliteBorder; - ctlhiliteSize.x -= ctlhiliteOrig.x-ctlhiliteBorder; - ctlhiliteSize.y -= ctlhiliteOrig.y-ctlhiliteBorder; - DrawSensorTrackHilite(); - xx->IsHilite = FALSE; - } - break; - case CONTMGM_GET_TITLE: - sprintf(message,"\t%s\t",xx->name); - break; - } - return FALSE; + track_p trk = (track_p) data; + sensorData_p xx = GetsensorData(trk); + /*char msg[STR_SIZE];*/ + + switch ( cmd ) { + case CONTMGM_CAN_EDIT: + return TRUE; + break; + case CONTMGM_DO_EDIT: + EditSensor(trk); + return TRUE; + break; + case CONTMGM_CAN_DELETE: + return TRUE; + break; + case CONTMGM_DO_DELETE: + DeleteTrack(trk, FALSE); + return TRUE; + break; + case CONTMGM_DO_HILIGHT: + if (!xx->IsHilite) { + ctlhiliteBorder = mainD.scale*0.1; + if ( ctlhiliteBorder < trackGauge ) { ctlhiliteBorder = trackGauge; } + GetBoundingBox( trk, &ctlhiliteSize, &ctlhiliteOrig ); + ctlhiliteOrig.x -= ctlhiliteBorder; + ctlhiliteOrig.y -= ctlhiliteBorder; + ctlhiliteSize.x -= ctlhiliteOrig.x-ctlhiliteBorder; + ctlhiliteSize.y -= ctlhiliteOrig.y-ctlhiliteBorder; + DrawSensorTrackHilite(); + xx->IsHilite = TRUE; + } + break; + case CONTMGM_UN_HILIGHT: + if (xx->IsHilite) { + ctlhiliteBorder = mainD.scale*0.1; + if ( ctlhiliteBorder < trackGauge ) { ctlhiliteBorder = trackGauge; } + GetBoundingBox( trk, &ctlhiliteSize, &ctlhiliteOrig ); + ctlhiliteOrig.x -= ctlhiliteBorder; + ctlhiliteOrig.y -= ctlhiliteBorder; + ctlhiliteSize.x -= ctlhiliteOrig.x-ctlhiliteBorder; + ctlhiliteSize.y -= ctlhiliteOrig.y-ctlhiliteBorder; + DrawSensorTrackHilite(); + xx->IsHilite = FALSE; + } + break; + case CONTMGM_GET_TITLE: + sprintf(message,"\t%s\t",xx->name); + break; + } + return FALSE; } -#include "bitmaps/sensor.xpm" +#include "bitmaps/sensor.xpm3" EXPORT void SensorMgmLoad ( void ) { - track_p trk; - static wIcon_p sensorI = NULL; - - if (sensorI == NULL) { - sensorI = wIconCreatePixMap( sensor_xpm[iconSize] ); - } - - TRK_ITERATE(trk) { - if (GetTrkType(trk) != T_SENSOR) continue; - ContMgmLoad (sensorI, SensorMgmProc, trk ); - } + track_p trk; + static wIcon_p sensorI = NULL; + + if (sensorI == NULL) { + sensorI = wIconCreatePixMap( sensor_xpm3[iconSize] ); + } + + TRK_ITERATE(trk) { + if (GetTrkType(trk) != T_SENSOR) { continue; } + ContMgmLoad (sensorI, SensorMgmProc, trk ); + } } #define ACCL_SENSOR 0 EXPORT void InitCmdSensor ( wMenu_p menu ) { - AddMenuButton( menu, CmdSensor, "cmdSensor", _("Sensor"), - wIconCreatePixMap( sensor_xpm[iconSize] ), LEVEL0_50, IC_STICKY|IC_POPUP2, ACCL_SENSOR, NULL ); + AddMenuButton( menu, CmdSensor, "cmdSensor", _("Sensor"), + wIconCreatePixMap( sensor_xpm3[iconSize] ), LEVEL0_50, IC_STICKY|IC_POPUP2, + ACCL_SENSOR, NULL ); } EXPORT void InitTrkSensor ( void ) { - T_SENSOR = InitObject ( &sensorCmds ); - log_sensor = LogFindIndex ( "sensor" ); + T_SENSOR = InitObject ( &sensorCmds ); + log_sensor = LogFindIndex ( "sensor" ); } |