File: read_rc.C

package info (click to toggle)
gmod 3.1-2
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 1,348 kB
  • ctags: 808
  • sloc: cpp: 7,755; makefile: 82
file content (48 lines) | stat: -rw-r--r-- 1,033 bytes parent folder | download | duplicates (7)
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
// -*-C++-*-
// This file is part of the gmod package
// Copyright (C) 1997 by Andrew J. Robinson

#include <stdio.h>
#include <string.h>

#include "defines.h"
#include "structs.h"

void
readRc (FILE * rcFp, char *filename, struct optionsInfo *options)
{
  char *strPtr;
  int nameLen;
  char rcLine[MAX_RC_LEN];

  if ((strPtr = strrchr (filename, '/')) == NULL)
    strPtr = filename;
  else
    strPtr++;

  if ((nameLen = strlen (strPtr)) > 0)
    {
      fseek (rcFp, 0, SEEK_SET);

      while (fgets (rcLine, MAX_RC_LEN, rcFp) != NULL)
	{
	  if (!strncmp (strPtr, rcLine, nameLen))
	    {
#ifndef USE_X
	      //fprintf (stderr, "rc: %s\n", rcLine);
#endif

	      if (strstr (rcLine, "nobpm") != NULL)
		options->bpmTempos = 0;
	      if (strstr (rcLine, "ntsc") != NULL)
		options->ntsc = 1;
	      if (strstr (rcLine, "nospeed0") != NULL)
		options->tolerant = 1;
	      if (strstr (rcLine, "extend") != NULL)
		options->extendOct = 1;
	      if (strstr (rcLine, "50hz") != NULL)
		options->use_50hz = 1;
	    }
	}
    }
}