File: a_basic.nw

package info (click to toggle)
libgeda 20010722-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,208 kB
  • ctags: 1,564
  • sloc: ansic: 15,815; sh: 7,883; makefile: 135; awk: 131; perl: 59
file content (518 lines) | stat: -rw-r--r-- 12,415 bytes parent folder | download
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
@c -*- mode: Noweb; noweb-doc-mode: texinfo-mode; noweb-code-mode: c-mode -*-

@node File a_basic.c,,,Top
@chapter File @file{a_basic.c}

@section File header

<<a_basic.c : *>>=
<<a_basic.c : copyright and license>>

/* DO NOT read or edit this file ! Use ../noweb/a_basic.nw instead */

<<a_basic.c : include directives>>
<<a_basic.c : o_save_embedded()>>
<<a_basic.c : o_save_write_header()>>
<<a_basic.c : o_save()>>
<<a_basic.c : o_read()>>
<<a_basic.c : o_scale()>>
@


<<a_basic.c : copyright and license>>=
/* gEDA - GPL Electronic Design Automation
 * libgeda - gEDA's library
 * Copyright (C) 1998-2000 Ales V. Hvezda
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) 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 General Public License for more details.
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA 02111 USA
 */

@ 


<<a_basic.c : include directives>>=
#include <config.h>
#include <stdio.h>
#include <string.h>

#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include <gdk/gdkx.h>

#include <guile/gh.h>

#include "defines.h"
#include "struct.h"
#include "globals.h"
#include "o_types.h"
#include "colors.h"

#include "../include/prototype.h"

@


@section Function @code{o_save_embedded()}

@defun o_save_embedded w_current object_list fp
@end defun

<<a_basic.c : o_save_embedded()>>=
void
o_save_embedded(TOPLEVEL *w_current, OBJECT *object_list, FILE *fp)
{
  OBJECT *o_current=NULL;
  char buf[1024];
  char *out;

  /* make sure you init net_consolide to false (default) in all */
  /* programs */
  if (w_current->net_consolidate == TRUE) {
    o_net_consolidate(w_current);
  }
	
  o_current = object_list;

  while ( o_current != NULL ) {

    if (o_current->type != OBJ_HEAD) {

      if (o_current->attribute == 0) {

        switch (o_current->type) {

          case(OBJ_LINE):
            out = (char *) o_line_save(buf, o_current);
            break;
	
          case(OBJ_NET):
            out = (char *) o_net_save(buf, o_current);
            break;

          case(OBJ_BUS):
            out = (char *) o_bus_save(buf, o_current);
            break;
	
          case(OBJ_BOX):
            out = (char *) o_box_save(buf, o_current);
            break;
			
          case(OBJ_CIRCLE):
            out = (char *) o_circle_save(buf, o_current);
            break;

          case(OBJ_COMPLEX):
            out = (char *) o_complex_save(buf, o_current);
            if (strncmp(
                        o_current->complex_clib, 
                        "EMBEDDED", 8) == 0) {
              fprintf(fp, "[\n");
								
              o_save_embedded(
                              w_current,
                              o_current->
                              complex->prim_objs,
                              fp);

              fprintf(fp, "]\n");
            }
            break;

          case(OBJ_TEXT):
            out = (char *) o_text_save(buf, o_current);
            break;

          case(OBJ_PIN):
            out = (char *) o_pin_save(buf, o_current);
            break;
	
          case(OBJ_ARC):
            out = (char *) o_arc_save(buf, o_current);
            break;

          default:
            fprintf(stderr, "Error type!\n");
            exit(-1);
            break;
        }

				/* output the line */
        fprintf(fp, "%s\n", out);

				/* save those attributes */
        if (o_current->attribs != NULL) {
          if (o_current->attribs->next != NULL) {
            o_save_attribs(fp, o_current->attribs->next);
          }
        }

      }
    } 
    o_current = o_current->next;
  }
}


@ %def o_save_embedded


@section Function @code{o_save_write_header()}

@defun o_save_write_header fp
@end defun

<<a_basic.c : o_save_write_header()>>=
void
o_save_write_header(FILE *fp)
{
  fprintf(fp, "v %s\n", VERSION);
}


@ %def o_save_write_header


@section Function @code{o_save()}

@defun o_save w_current filename
@end defun

<<a_basic.c : o_save()>>=
void
o_save(TOPLEVEL *w_current, char *filename)
{
  OBJECT *o_current=NULL;
  FILE *fp;
  char buf[200];
  char *out;
  int already_wrote=0;
	
  fp = fopen(filename, "w");
	
  if (fp == NULL) {
    s_log_message("o_save: Could not open [%s]\n", filename);
    return;
  }


  o_current = w_current->page_current->object_head;

  /* make sure you init net_consolide to false (default) in all */
  /* programs */
  if (w_current->net_consolidate == TRUE) {
    o_net_consolidate(w_current);
  }

  o_save_write_header(fp);

  while ( o_current != NULL ) {

    if (o_current->type != OBJ_HEAD) {

      if (o_current->attribute == 0) {

        switch (o_current->type) {

          case(OBJ_LINE):
            out = (char *) o_line_save(buf, o_current);
            break;
	
          case(OBJ_NET):
            out = (char *) o_net_save(buf, o_current);
            break;

          case(OBJ_BUS):
            out = (char *) o_bus_save(buf, o_current);
            break;
	
          case(OBJ_BOX):
            out = (char *) o_box_save(buf, o_current);
            break;
			
          case(OBJ_CIRCLE):
            out = (char *) o_circle_save(buf, o_current);
            break;

          case(OBJ_COMPLEX):
            out = (char *) o_complex_save(buf, o_current);
            fprintf(fp, "%s\n", out);
            already_wrote=1;
            if (strncmp(
                        o_current->complex_clib, 
                        "EMBEDDED", 8) == 0) {
              fprintf(fp, "[\n");
								
              o_save_embedded(
                              w_current,
                              o_current->
                              complex->prim_objs,
                              fp);

              fprintf(fp, "]\n");
            }
            break;

          case(OBJ_TEXT):
            out = (char *) o_text_save(buf, o_current);
            break;

          case(OBJ_PIN):
            out = (char *) o_pin_save(buf, o_current);
            break;
	
          case(OBJ_ARC):
            out = (char *) o_arc_save(buf, o_current);
            break;

          default:
            fprintf(stderr, "Error type!\n");
            exit(-1);
            break;
        }

				/* output the line */
        if (!already_wrote) {
          fprintf(fp, "%s\n", out);
        } else {
          already_wrote=0;
        }

				/* save those attributes */
        if (o_current->attribs != NULL) {
          if (o_current->attribs->next != NULL) {
            o_save_attribs(fp, o_current->attribs->next);
          }
        }

      }
    } 
    o_current = o_current->next;
  }

  fclose(fp);

}


@ %def o_save


@section Function @code{o_read()}

@defun o_read w_current object_list filename
@end defun

<<a_basic.c : o_read()>>=
OBJECT *
o_read(TOPLEVEL *w_current, OBJECT *object_list, char *filename)
{
  FILE *fp;
  char buf[1024];
  char string[1024];
  char objtype;
  char version[20]; /* 20 should be big enough hack */
  OBJECT *object_list_save=NULL;
  OBJECT *temp_tail=NULL;
  OBJECT *temp_parent=NULL;
  OBJECT *object_before_attr=NULL;

  /* fill version with default string, the current version */
  strcpy(version, VERSION); 

  fp = fopen(filename, "r");

  if (fp == NULL) {
    s_log_message("Could not open [%s]\n", filename);
    return(NULL);
  }

  while ( fgets(buf, 1024, fp) != NULL) {

    sscanf(buf, "%c", &objtype);
    switch (objtype) {

      case(OBJ_LINE):
        object_list = (OBJECT *) o_line_read(w_current, object_list, buf, version);
        break;


      case(OBJ_NET):
        object_list = (OBJECT *) o_net_read(w_current, object_list, buf, version);
        break;

      case(OBJ_BUS):
        object_list = (OBJECT *) o_bus_read(w_current, object_list, buf, version);
        break;

      case(OBJ_BOX):
        object_list = (OBJECT *) o_box_read(w_current, object_list, buf, version);
        break;
		
      case(OBJ_CIRCLE):
        object_list = (OBJECT *) o_circle_read(w_current, object_list, buf, version);
        break;

      case(OBJ_COMPLEX):
        object_list = (OBJECT *) o_complex_read(w_current, object_list, buf, version);

				/* this is necessary because complex may add
				   attributes which float */
				/* needed now? */
        object_list = (OBJECT *) return_tail(object_list);
        break;

      case(OBJ_TEXT):
        fgets(string, 1024, fp); /* check if invalid */
        object_list = (OBJECT *) o_text_read(w_current, object_list, buf, string, version);
        break;

      case(OBJ_PIN):
        object_list = (OBJECT *) o_pin_read(w_current, object_list, buf, version);
        break;

      case(OBJ_ARC):
        object_list = (OBJECT *) o_arc_read(w_current, object_list, buf, version);
        break;

      case(STARTATTACH_ATTR): 
        object_before_attr = object_list;
				/* first is the fp */
				/* 2nd is the object to get the attributes */ 
        object_list = (OBJECT *) o_read_attribs(w_current, fp, object_list, version);

				/* slots only apply to complex objects */
        if (object_before_attr->type == OBJ_COMPLEX) {
          o_attrib_slot_update(w_current, object_before_attr);	
        }

				/* need this? */
				/*object_list = return_tail(object_list);*/
        object_before_attr = NULL;
        break;

      case(START_EMBEDDED): 
        object_list_save = object_list;
        object_list = object_list_save->complex->
          prim_objs;
				
        temp_tail =
          w_current->page_current->object_tail;
        temp_parent =
          w_current->page_current->object_parent;
        w_current->page_current->object_parent = 
          object_list;
        break;

      case(END_EMBEDDED): 
        object_list = object_list_save;
				/* don't do this since objects are already
				 * stored/read translated 
                                 o_complex_world_translate(w_current, 
                                 object_list->x, 
                                 object_list->y, 
                                 object_list->complex);
				*/
        w_current->page_current->object_tail = temp_tail;
        w_current->page_current->object_parent = temp_parent;
        break;

      case(ENDATTACH_ATTR): 
        break;	

      case(INFO_FONT): 
        o_text_set_info_font(buf);
        break;	

      case(COMMENT):
				/* do nothing */
        break;

      case(VERSION_CHAR):
        sscanf(buf, "v %s\n", version);

#if DEBUG 
        printf("Found version: %s\n", version);
#endif
				/* do nothing for now */
        break;

      default:
        fprintf(stderr, "Read garbage in [%s] :\n>>\n%s<<\n",
                filename, buf);
        break;
    }

  }
  fclose(fp);
  return(object_list);
}


@ %def o_read


@section Function @code{o_scale()}

@defun o_scale w_current list x_scale y_scale
@end defun

<<a_basic.c : o_scale()>>=
/* this really doesn't belong here */
/* you need more of a core routine first */
/* yes.. this is the core routine, just strip out the drawing stuff */
/* move it to o_complex_scale */
void
o_scale(TOPLEVEL *w_current, OBJECT *list, int x_scale, int y_scale)
{
  OBJECT *o_current;

  /* this is okay if you just hit scale and have nothing selected */
  if (list == NULL) { 
    /* w_current->event_state = SELECT;*/
    /* i_update_status(w_current, "Select Mode"); not here */
    /*		w_current->inside_action = 0;*/
    return;
  }


  o_current = list;


  while (o_current != NULL) {

    switch(o_current->type) {

      case(OBJ_LINE):
				/* erase the current selection */
        w_current->override_color =
          w_current->background_color;
        o_redraw_single(w_current, o_current);
                                /* o_line_draw(w_current, o_current);*/
        w_current->override_color = -1;

        o_line_scale_world(w_current, 
                           x_scale, y_scale, o_current);
        break;
    }

    o_current = o_current->next;
  }

  /* don't do this at this level */
  /* w_current->page_current->CHANGED=1;*/
}


@ %def o_scale