-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathinset.c
459 lines (398 loc) · 20.3 KB
/
inset.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
* Author: Paul Wessel
* Date: 10-Oct-2018
* Version: 6 API
*
* Brief synopsis: gmt inset determines dimensions and offsets for a figure inset.
* It has two modes of operation:
* 1) Initialize a new inset, which determines dimensions and sets parameters:
* gmt inset begin -D<params> [-C<side><clearance>] [-F<panel>] [-N] [-V]
* Sugsequent plot calls will be placed in the inset window.
* 2) Exit inset mode, which resets plot origin and previous -R -J parameters:
* gmt inset end [-V]
*/
#include "gmt_dev.h"
#include "longopt/inset_inc.h"
#define THIS_MODULE_CLASSIC_NAME "inset"
#define THIS_MODULE_MODERN_NAME "inset"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Manage figure inset setup and completion"
#define THIS_MODULE_KEYS ">X}"
#define THIS_MODULE_NEEDS "JR"
#define THIS_MODULE_OPTIONS "JRVXY"
/* Control structure for inset */
#define INSET_CM_TO_INCH (1.0/2.54)
#define INSET_BEGIN 1
#define INSET_END 0
struct INSET_CTRL {
struct INSET_In { /* begin | end */
bool active;
unsigned int mode; /* INSET_BEGIN|END*/
} In;
struct INSET_C { /* -C[side]<clearance> */
bool active;
bool set[4]; /* separate active for each side */
double gap[4]; /* Internal margins (in inches) on the 4 sides [0/0/0/0] */
} C;
struct INSET_D { /* -D[g|j|n|x]<refpoint>+w<width>[/<height>][+j<justify>[+o<dx>[/<dy>]][+t] or <xmin>/<xmax>/<ymin>/<ymax>[+r][+t][+u] */
bool active;
struct GMT_MAP_INSET inset;
} D;
struct INSET_F { /* -F[+c<clearance>][+g<fill>][+i[<off>/][<pen>]][+p[<pen>]][+r[<radius>]][+s[<dx>/<dy>/][<shade>]][+d] */
bool active;
/* The panel is a member of GMT_MAP_INSET */
} F;
struct INSET_N { /* -N (no clip) */
bool active;
} N;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct INSET_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct INSET_CTRL);
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct INSET_CTRL *C) { /* Deallocate control structure */
gmt_M_unused (GMT);
if (!C) return;
if (C->D.inset.refpoint) gmt_free_refpoint (GMT, &C->D.inset.refpoint);
gmt_M_free (GMT, C->D.inset.panel);
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s begin -D%s | -D%s [-C[<side>]<clearance>] [-F%s] [-N] [%s] [%s]",
name, GMT_INSET_A, GMT_INSET_B, GMT_PANEL, GMT_V_OPT, GMT_PAR_OPT);
GMT_Usage (API, 0, "\nusage: %s end [%s]", name, GMT_V_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
gmt_mapinset_syntax (API->GMT, 'D', "Design a simple map inset as specified below:");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
GMT_Usage (API, 1, "\n-C[<side>]<clearance>");
GMT_Usage (API, -2, "Specify a gap of dimension <clearance> to the <side> (w|e|s|n) of the plottable inset. "
"Shrinks the size for the inset plot to make room for margins. "
"Repeatable for more than one side. Use <side> = x or y to set w&e or s&n, respectively. "
"No specified <side> means we set the same clearance on all sides, or you can "
"give <xmargin>/<ymargin> or <wmargin>/<emargin>/<smargin>/<nmargin> for different values [no clearances].");
gmt_mappanel_syntax (API->GMT, 'F', "Specify a rectangular panel behind the map inset.", 3);
GMT_Usage (API, 1, "\n-N Do Not clip anything that exceeds the map inset boundaries [Default will clip].");
GMT_Option (API, "V,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct INSET_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to inset and sets parameters in CTRL.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
unsigned int n_errors = 0, k, side;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
opt = options; /* The first argument is the inset command */
if (opt->option != GMT_OPT_INFILE) {
GMT_Report (API, GMT_MSG_ERROR, "No inset command given\n");
return GMT_PARSE_ERROR;
}
if (!strncmp (opt->arg, "begin", 5U)) { /* Initiate new inset */
Ctrl->In.mode = INSET_BEGIN;
}
else if (!strncmp (opt->arg, "end", 3U))
Ctrl->In.mode = INSET_END;
else {
GMT_Report (API, GMT_MSG_ERROR, "Not an inset command: %s\n", opt->arg);
return GMT_PARSE_ERROR;
}
opt = opt->next; /* Position to the next argument */
while (opt) { /* Process all the options given */
switch (opt->option) {
case 'D': /* Draw map inset */
n_errors += gmt_M_repeated_module_option (API, Ctrl->D.active);
n_errors += gmt_getinset (GMT, 'D', opt->arg, &Ctrl->D.inset);
break;
case 'F':
n_errors += gmt_M_repeated_module_option (API, Ctrl->F.active);
if (gmt_getpanel (GMT, opt->option, opt->arg, &(Ctrl->D.inset.panel))) {
gmt_mappanel_syntax (GMT, 'F', "Specify a rectangular panel for the map inset", 3);
n_errors++;
}
break;
case 'M': /* inset margins */
GMT_Report (API, GMT_MSG_COMPAT, "-M option is deprecated; use -C instead.\n");
/* Fall through on purpose */
case 'C': /* Clearance/inside margins (repeatable) */
Ctrl->C.active = true;
if (opt->arg[0] == 0) { /* Gave nothing */
GMT_Report (API, GMT_MSG_ERROR, "Option -C: No clearance specified.\n");
n_errors++;
}
else if (strchr ("wesnxy", opt->arg[0])) { /* Gave a specific side directive */
switch (opt->arg[0]) {
case 'w': side = XLO; Ctrl->C.gap[XLO] = gmt_M_to_inch (GMT, &opt->arg[1]); break;
case 'e': side = XHI; Ctrl->C.gap[XHI] = gmt_M_to_inch (GMT, &opt->arg[1]); break;
case 's': side = YLO; Ctrl->C.gap[YLO] = gmt_M_to_inch (GMT, &opt->arg[1]); break;
case 'n': side = YHI; Ctrl->C.gap[YHI] = gmt_M_to_inch (GMT, &opt->arg[1]); break;
case 'x': side = XLO; Ctrl->C.gap[XLO] = Ctrl->C.gap[XHI] = gmt_M_to_inch (GMT, &opt->arg[1]); break;
case 'y': side = YLO; Ctrl->C.gap[YLO] = Ctrl->C.gap[YHI] = gmt_M_to_inch (GMT, &opt->arg[1]); break;
}
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.set[side]);
if (strchr ("xy", opt->arg[0])) Ctrl->C.set[side+1] = true; /* Since two margins are set */
}
else { /* Process 1, 2, or 4 margin values (and also because of deprecated -M) */
k = GMT_Get_Values (API, opt->arg, Ctrl->C.gap, 4);
if (k == 1) /* Same page margin in all directions */
Ctrl->C.gap[XHI] = Ctrl->C.gap[YLO] = Ctrl->C.gap[YHI] = Ctrl->C.gap[XLO];
else if (k == 2) { /* Separate page margins in x and y */
Ctrl->C.gap[YLO] = Ctrl->C.gap[YHI] = Ctrl->C.gap[XHI];
Ctrl->C.gap[XHI] = Ctrl->C.gap[XLO];
}
else if (k != 4) {
GMT_Report (API, GMT_MSG_ERROR, "Option -C: Bad number (%d) of margins given.\n", k);
n_errors++;
}
/* Since GMT_Get_Values returns in default project length unit, convert to inch */
for (k = 0; k < 4; k++) Ctrl->C.gap[k] *= GMT->session.u2u[GMT->current.setting.proj_length_unit][GMT_INCH];
for (side = XLO; side <= YHI; side++) {
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.set[side]);
}
}
break;
case 'N': /* Turn off clipping */
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
opt = opt->next;
}
if (Ctrl->In.mode == INSET_BEGIN) {
/* Was -R -J given? */
n_errors += gmt_M_check_condition (GMT, !Ctrl->D.active, "Option -D is required for gmt inset begin\n");
n_errors += gmt_M_check_condition (GMT, GMT->common.J.active && !GMT->common.R.active[RSET], "Option -J: Requires -R as well!\n");
}
else { /* gmt inset end was given, when -C -D -F -N are not allowed */
if (Ctrl->C.active) {
GMT_Report (API, GMT_MSG_ERROR, "Option -C: Not valid for gmt inset end.\n");
n_errors++;
}
if (Ctrl->D.active) {
GMT_Report (API, GMT_MSG_ERROR, "Option -D: Not valid for gmt inset end.\n");
n_errors++;
}
if (Ctrl->F.active) {
GMT_Report (API, GMT_MSG_ERROR, "Option -F: Not valid for gmt inset end.\n");
n_errors++;
}
if (Ctrl->N.active) {
GMT_Report (API, GMT_MSG_ERROR, "Option -N: Not valid for gmt inset end.\n");
n_errors++;
}
}
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
#define bailout(code) {gmt_M_free_options (mode); return (code);}
#define Return(code) {Free_Ctrl (GMT, Ctrl); gmt_end_module (GMT, GMT_cpy); bailout (code);}
EXTERN_MSC int GMT_inset (void *V_API, int mode, void *args) {
int error = 0, fig, k;
bool exist, got_RJ = false;
char tag[GMT_LEN16] = {""}, file[PATH_MAX] = {""}, ffile[PATH_MAX] = {""}, Bopts[GMT_LEN256] = {""};
char inset_history[GMT_LEN256] = {""};
double dim[2] = {0.0, 0.0};
FILE *fp = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL;
struct PSL_CTRL *PSL = NULL; /* General PSL internal parameters */
struct GMT_OPTION *options = NULL, *R = NULL, *J = NULL;
struct INSET_CTRL *Ctrl = NULL;
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
/*----------------------- Standard module initialization and parsing ----------------------*/
if (API == NULL) return (GMT_NOT_A_SESSION);
if (mode == GMT_MODULE_PURPOSE) return (usage (API, GMT_MODULE_PURPOSE)); /* Return the purpose of program */
options = GMT_Create_Options (API, mode, args); if (API->error) return (API->error); /* Set or get option list */
if ((error = gmt_report_usage (API, options, 0, usage)) != GMT_NOERROR) bailout (error); /* Give usage if requested */
if (API->GMT->current.setting.run_mode == GMT_CLASSIC) {
GMT_Report (API, GMT_MSG_ERROR, "module inset is not available in classic mode\n");
bailout (GMT_NOT_MODERN_MODE);
}
/* Check if -R -J was given explicitly on the command line to define the inset size */
if ((R = GMT_Find_Option (API, 'R', options)) && (J = GMT_Find_Option (API, 'J', options))) { /* Yes they were */
/* Create a mapproject command with -R -J -W -Di to get the dimensions of the inset */
char ofile[GMT_VF_LEN] = {""}, cmd[GMT_LEN128] = {""};
struct GMT_DATASET *Out = NULL;
/* We also will need to make a special gmt.history file for commands to follow in the inset */
sprintf(inset_history, "# GMT 6 Session common arguments shelf\nBEGIN GMT %s\nJ\t%c\nJ%c\t%s\nR\t%s\n", GMT_version(), J->arg[0], J->arg[0], J->arg, R->arg);
/* Open Virtual file to hold the result from mapproject */
if (GMT_Open_VirtualFile (API, GMT_IS_DATASET, GMT_IS_POINT, GMT_OUT|GMT_IS_REFERENCE, NULL, ofile) == GMT_NOTSET)
bailout (API->error);
/* Build the mapproject command that takes no input but returns dimensions in inches. Turn off updating of history file */
sprintf (cmd, "-R%s -J%s -W -Di ->%s --GMT_HISTORY=false", R->arg, J->arg, ofile);
if (GMT_Call_Module (API, "mapproject", GMT_MODULE_CMD, cmd) != GMT_OK) /* Get the inset size via mapproject */
return (API->error);
/* Retrieve the answers */
if ((Out = GMT_Read_VirtualFile (API, ofile)) == NULL)
bailout (API->error);
/* Store the size in dim */
dim[GMT_X] = Out->table[0]->segment[0]->data[GMT_X][0];
dim[GMT_Y] = Out->table[0]->segment[0]->data[GMT_Y][0];
/* Close virtual file and free the Out dataset */
if (GMT_Close_VirtualFile (API, ofile) != GMT_NOERROR)
bailout (API->error);
if (GMT_Destroy_Data (API, &Out) != GMT_OK)
bailout (API->error);
/* Remove the -R -J options from the options list to process below (since we expect -R -J to come from history */
if (GMT_Delete_Option (API, R, &options))
bailout (API->error);
if (GMT_Delete_Option (API, J, &options))
bailout (API->error);
gmt_reload_history (API->GMT); /* Prevent gmt from copying previous -R -J history to this inset */
got_RJ = true; /* Meaning we got the -R -J to be used inside the inset before the inset was finalized */
}
/* Parse the command-line arguments */
if ((GMT = gmt_init_module (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_KEYS, THIS_MODULE_NEEDS, module_kw, &options, &GMT_cpy)) == NULL) bailout (API->error); /* Save current state */
if (GMT_Parse_Common (API, THIS_MODULE_OPTIONS, options)) Return (API->error);
Ctrl = New_Ctrl (GMT); /* Allocate and initialize a new control structure */
if ((error = parse (GMT, Ctrl, options)) != 0) Return (error);
/*---------------------------- This is the inset main code ----------------------------*/
if (got_RJ) { /* Copy the saved inset size determined from -R -J above */
if (Ctrl->D.inset.dim[GMT_X] > 0.0 || Ctrl->D.inset.dim[GMT_Y] > 0.0) {
GMT_Report (API, GMT_MSG_ERROR, "Cannot define inset size both via -D..,+w as well as -R -J\n");
Return (GMT_RUNTIME_ERROR);
}
gmt_M_memcpy (Ctrl->D.inset.dim, dim, 2U, double);
}
fig = gmt_get_current_figure (API); /* Get current figure number */
if ((k = gmt_set_psfilename (GMT)) == GMT_NOTSET) { /* Get hidden file name for PS */
GMT_Report (GMT->parent, GMT_MSG_ERROR, "No active plot file to append to\n");
Return (GMT_ERROR_ON_FOPEN);
}
sprintf (file, "%s/gmt.inset.%d", API->gwf_dir, fig); /* Inset information file */
exist = !access (file, F_OK); /* Determine if an inset information file exists */
if (Ctrl->In.mode == INSET_BEGIN && exist) { /* Inset information file already exists which is a failure */
GMT_Report (API, GMT_MSG_ERROR, "In begin mode but inset information file already exists: %s\n", file);
Return (GMT_RUNTIME_ERROR);
}
else if (Ctrl->In.mode == INSET_END && !exist) { /* Inset information file does not exist which is a failure */
GMT_Report (API, GMT_MSG_ERROR, "In end mode and information file does not exist: %s\n", file);
Return (GMT_RUNTIME_ERROR);
}
if ((PSL = gmt_plotinit (GMT, options)) == NULL) Return (GMT_RUNTIME_ERROR);
if (Ctrl->In.mode == INSET_BEGIN) { /* Determine and save inset attributes */
/* Here we need to compute dimensions and save those plus current plot -R -J to the inset information file,
* then inset a gsave command, translate origin to the inset, adjust for any clearances, compute new scales/widths
* and maybe draw the panel. */
char *cmd = NULL;
/* Was -R -J given via history? */
if (GMT->common.J.active && gmt_map_setup (GMT, GMT->common.R.wesn)) { /* Compute map height */
Return (GMT_RUNTIME_ERROR);
}
/* OK, no other inset set for this figure (or panel). Save graphics state before we draw the inset */
PSL_command (PSL, "V %% Begin inset\n");
gmt_draw_map_inset (GMT, &Ctrl->D.inset, !Ctrl->N.active); /* Draw the inset background */
/* Set the new origin as indicated */
PSL_setorigin (PSL, Ctrl->D.inset.refpoint->x + Ctrl->C.gap[XLO], Ctrl->D.inset.refpoint->y + Ctrl->C.gap[YLO], 0.0, PSL_FWD); /* Shift plot a bit */
/* First get the -B options in place before inset was called */
sprintf (ffile, "%s/gmt.frame.%d", API->gwf_dir, fig);
if ((fp = fopen (ffile, "r")) == NULL)
GMT_Report (API, GMT_MSG_INFORMATION, "No file %s with frame information - no adjustments made\n", ffile);
else {
fgets (Bopts, GMT_LEN256, fp);
gmt_chop (Bopts);
fclose (fp);
}
/* Write out the inset information file */
if ((fp = fopen (file, "w")) == NULL) { /* Not good */
GMT_Report (API, GMT_MSG_ERROR, "Cannot create inset file %s\n", file);
Return (GMT_ERROR_ON_FOPEN);
}
fprintf (fp, "# Figure inset information file\n");
cmd = GMT_Create_Cmd (API, options);
fprintf (fp, "# Command: %s %s\n", THIS_MODULE_CLASSIC_NAME, cmd);
gmt_M_free (GMT, cmd);
fprintf (fp, "# ORIGIN: %g %g\n", Ctrl->D.inset.refpoint->x, Ctrl->D.inset.refpoint->y);
fprintf (fp, "# DIMENSION: %g %g\n", Ctrl->D.inset.dim[GMT_X], Ctrl->D.inset.dim[GMT_Y]);
fprintf (fp, "# MARGINS: %g %g %g %g\n", Ctrl->C.gap[XLO], Ctrl->C.gap[XHI], Ctrl->C.gap[YLO], Ctrl->C.gap[YHI]);
fprintf (fp, "# REGION: %s\n", GMT->common.R.string);
fprintf (fp, "# PROJ: %s\n", GMT->common.J.string);
fprintf (fp, "# FRAME: %s\n", Bopts);
fclose (fp);
GMT_Report (API, GMT_MSG_DEBUG, "inset: Wrote inset settings to information file %s\n", file);
gmt_reset_history (GMT); /* Prevent gmt from copying previous -R -J history to this inset */
if (got_RJ) { /* Must write the given -R -J to inset history so subsequent commands can use them */
gmt_hierarchy_tag (API, GMT_HISTORY_FILE, GMT_OUT, tag);
sprintf (ffile, "%s/%s%s", API->gwf_dir, GMT_HISTORY_FILE, tag);
if ((fp = fopen (ffile, "w")) == NULL) { /* Not good */
GMT_Report (API, GMT_MSG_ERROR, "Cannot create inset history file %s\n", ffile);
Return (GMT_ERROR_ON_FOPEN);
}
fprintf (fp, "%s", inset_history); /* Write just the -R -J history */
fclose (fp);
}
}
else { /* INSET_END */
/* Here we need to finish the inset with a grestore and restate the original -R -J in the history file,
* and finally remove the inset information file */
char legend_justification[4] = {""}, pen[GMT_LEN32] = {""}, fill[GMT_LEN32] = {""}, off[GMT_LEN32] = {""};
double legend_width = 0.0, legend_scale = 1.0;
if (gmt_get_legend_info (API, &legend_width, &legend_scale, legend_justification, pen, fill, off)) { /* Unplaced legend file */
char cmd[GMT_LEN64] = {""};
/* Default to white legend with 1p frame offset 0.2 cm from selected justification point [TR] */
snprintf (cmd, GMT_LEN64, "-Dj%s+w%gi+o%s -F+p%s+g%s -S%g", legend_justification, legend_width, off, pen, fill, legend_scale);
if ((error = GMT_Call_Module (API, "legend", GMT_MODULE_CMD, cmd))) {
GMT_Report (API, GMT_MSG_ERROR, "Failed to place legend on current inset figure\n");
Return (error);
}
}
PSL_command (PSL, "PSL_inset_clip 1 eq {cliprestore /PSL_inset_clip 0 def} if\n"); /* Restore graphics state to what it was before the map inset */
PSL_command (PSL, "U %% End inset\n"); /* Restore graphics state to what it was before the map inset */
/* Remove the inset history file */
gmt_hierarchy_tag (API, GMT_HISTORY_FILE, GMT_OUT, tag);
sprintf (ffile, "%s/%s.%s", API->gwf_dir, GMT_HISTORY_FILE, tag);
gmt_remove_file (GMT, ffile);
/* Remove the gmt settings file */
gmt_hierarchy_tag (API, GMT_SETTINGS_FILE, GMT_OUT, tag);
sprintf (ffile, "%s/%s.%s", API->gwf_dir, GMT_HISTORY_FILE, tag);
gmt_remove_file (GMT, ffile);
/* Restore the old frame B setting to what it was before inset begin was called, if any */
if ((fp = fopen (file, "r"))) { /* There is a gmt.frame.<fig> file */
while (fgets (Bopts, GMT_LEN256, fp) && strncmp (Bopts, "# FRAME: ", 9U)); /* Wind to reading the frame setting */
gmt_chop (Bopts);
fclose (fp); /* Done reading the gmt.frame.<fig> file */
if (!strncmp (Bopts, "# FRAME: ", 9U) && strlen (Bopts) > 9 && Bopts[9]) { /* Got a previously saved -B frame setting */
sprintf (ffile, "%s/gmt.frame.%d", API->gwf_dir, fig);
if ((fp = fopen (ffile, "w")) == NULL) { /* Not good */
GMT_Report (API, GMT_MSG_ERROR, "Cannot create frame file %s\n", ffile);
Return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (API, GMT_MSG_DEBUG, "inset: Restore previous frame in %s\n", ffile);
/* Restore the previous frame setting in gmt.frame.<fig> */
fprintf (fp, "%s\n", &Bopts[9]);
fclose (fp);
}
}
/* Remove the inset information file */
gmt_remove_file (GMT, file);
GMT_Report (API, GMT_MSG_DEBUG, "inset: Removed inset file\n");
gmt_reload_history (API->GMT);
gmt_reload_settings (API->GMT);
/* Undo any shrink scaling memory */
API->inset_shrink_scale = 1.0;
API->inset_shrink = false;
}
gmt_plotend (GMT);
Return (error);
}