File: radius.c

package info (click to toggle)
garlic 1.5-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,324 kB
  • ctags: 1,378
  • sloc: ansic: 50,306; makefile: 1,088
file content (83 lines) | stat: -rw-r--r-- 1,994 bytes parent folder | download | duplicates (6)
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
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				radius.c

Purpose:
	Execute radius command:  define the radius of the sphere around
	the geometric center calculated for the current selection. This
	radius  may be used to select  all atoms  which are inside this
	sphere. Default (hard-coded) value is 8.0 angstroms.

Input:
	(1) Pointer to RuntimeS structure.
	(2) Pointer to the remainder of the command string.

Output:
	(1) The sphere radius set.
	(2) Return value.

Return value:
	(1) Positive (command) code on success.
	(2) Negative (error) code on failure.

========includes:============================================================*/

#include <stdio.h>

#include <string.h>
#include <ctype.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "commands.h"
#include "typedefs.h"


/*======execute radius command:==============================================*/

int Radius_ (RuntimeS *runtimeSP, char *stringP)
{
char		*P;
int		n;
double		value;

/* Replace each non-numeric character (except */
/* minus sign and  decimal point) with space: */
P = stringP;
while ((n = *P++) != '\0')
	{
	if (!isdigit (n) && (n != '-') && (n != '.')) *(P - 1) = ' ';
	}

/* Try to extract the radius: */
if (sscanf (stringP, "%lf", &value) != 1)
	{
	strcpy (runtimeSP->messageA, "Failed to extract the sphere radius!");
	runtimeSP->message_length = strlen (runtimeSP->messageA);
	return ERROR_RADIUS;
	}

/* Check the radius (must be positive): */
if (value < 0.0)
	{
	strcpy (runtimeSP->messageA, "Positive value expected!");
	runtimeSP->message_length = strlen (runtimeSP->messageA);
	return ERROR_RADIUS;
	}

/* On success, copy the extracted radius to RuntimeS structure: */
runtimeSP->sphere_radius = value;

/* Return the command code: */
return COMMAND_RADIUS;
}

/*===========================================================================*/