File: compare.c

package info (click to toggle)
garlic 1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 4,516 kB
  • sloc: ansic: 52,465; makefile: 2,254
file content (202 lines) | stat: -rw-r--r-- 5,781 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
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
/* Copyright (C) 2000 Damir Zucic */

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

				compare.c

Purpose:
	Execute compare command:  compare the sequence from the general
	purpose buffer with the sequence from the reference buffer. The
	keywords are: OFF, ZOOM, CORNER.

Input:
	(1) Pointer to MolComplexS structure.
	(2) The number of macromolecular complexes.
	(3) Pointer to RuntimeS structure.
	(4) Pointer to ConfigS structure.
	(5) Pointer to GUIS structure.
	(6) Pointer to NearestAtomS structure.
	(7) The number of pixels in the main window free area.
	(8) Pointer to refreshI.
	(9) Pointer to the remainder of the command string. The command
	    may be given with a list of keywords.

Output:
	(1) The main window mode changed to 5 (default is zero).
	(2) Return value.

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

Notes:
	(1) This command reinitializes the  NearestAtomS array,  except
	    if at additional keyword is not recognized.

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

#include <stdio.h>

#include <string.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"

/*======function prototypes:=================================================*/

char		*ExtractToken_ (char *, int, char *, char *);
void		InitNearest_ (NearestAtomS *, size_t);
size_t		MainRefresh_ (MolComplexS *, int,
			      RuntimeS *, ConfigS *, GUIS *,
			      NearestAtomS *, size_t, unsigned int);
int		ControlRefresh_ (MolComplexS *, ConfigS *, GUIS *);
int		ExtractIndex_ (char *);
int		ExtractTwoIntegers_ (int *, int *, char *);

/*======execute compare command:=============================================*/

int Compare_ (MolComplexS *mol_complexSP, int mol_complexesN,
	      RuntimeS *runtimeSP, ConfigS *configSP, GUIS *guiSP,
	      NearestAtomS *nearest_atomSP, size_t pixelsN,
	      unsigned int *refreshIP, char *stringP)
{
char		*remainderP;
char		tokenA[SHORTSTRINGSIZE];
int		zoom_factor;
int		residue1I, residue2I;
int		segment_width, minimal_score;

/* Extract the first token: */
remainderP = ExtractToken_ (tokenA, STRINGSIZE, stringP, " \t\n");

/* If no token  is available,  set  the main window  drawing */
/* mode, refresh the main and the control window and return: */
if (!remainderP)
	{
	/* Set the main window drawing mode index: */
	guiSP->main_window_modeI = 5;
	}

/* If keyword OFF is present, switch to default drawing mode: */
else if (strstr (tokenA, "OFF") == tokenA)
	{
	/* Reset drawing mode index: */
	guiSP->main_window_modeI = 0;
	}

/* If keyword ZOOM is present: */
else if (strstr (tokenA, "ZOO") == tokenA)
	{
	/* Try to read the zoom factor: */
	zoom_factor = ExtractIndex_ (stringP);
	if (zoom_factor <= 0)
		{
		strcpy (runtimeSP->messageA, "Bad zoom factor!");
		runtimeSP->message_length = strlen (runtimeSP->messageA);
		return ERROR_COMPARE;
		}

	/* Store the zoom factor: */
	runtimeSP->zoom_factor = zoom_factor;

	/* Set the main window drawing mode index: */
	guiSP->main_window_modeI = 5;
	}

/* If keyword CORNER is present: */
else if (strstr (tokenA, "COR") == tokenA)
	{
	/* Try to extract two offsets: */
	if (ExtractTwoIntegers_ (&residue1I, &residue2I, stringP) < 0)
		{
		strcpy (runtimeSP->messageA,
			"Unable to read corner position!");
		runtimeSP->message_length = strlen (runtimeSP->messageA);
		return ERROR_COMPARE;
		}

	/* Check signs: */
	if ((residue1I < 0) || (residue2I < 0))
		{
		strcpy (runtimeSP->messageA, "Both indices must be positive!");
		runtimeSP->message_length = strlen (runtimeSP->messageA);
		return ERROR_COMPARE;
		}

	/* Check upper limits: */
	if ((residue1I >= MAXRESIDUES) || (residue2I >= MAXRESIDUES))
		{
		strcpy (runtimeSP->messageA,
			"At least one index is too large!");
		return ERROR_COMPARE;
		}

	/* Store offsets: */
	runtimeSP->reference_offset = residue1I;
	runtimeSP->sequence_offset  = residue2I;

	/* Set the main window drawing mode index: */
	guiSP->main_window_modeI = 5;
	}

/* If keyword recognition  failes,  try to extract the segment width and */
/* the minimal score. Do not forget to set the main window drawing mode! */
else
	{
	/* Try to extract two integers: */
	if (ExtractTwoIntegers_ (&minimal_score, &segment_width, stringP) < 0)
		{
		strcpy (runtimeSP->messageA, "Syntax error!");
		runtimeSP->message_length = strlen (runtimeSP->messageA);
		return ERROR_COMPARE;
		}

	/* Check values: */
	if ((segment_width < 1) || (minimal_score < 1))
		{
		strcpy (runtimeSP->messageA, "Positive integers expected!");
		runtimeSP->message_length = strlen (runtimeSP->messageA);
		return ERROR_COMPARE;
		}
	else if (minimal_score > segment_width)
		{
		strcpy (runtimeSP->messageA, "The minimal score should not");
		strcat (runtimeSP->messageA, " exceed the segment width!");
		runtimeSP->message_length = strlen (runtimeSP->messageA);
		return ERROR_COMPARE;
		}

	/* Store segment width and minimal score: */
	runtimeSP->minimal_score = minimal_score;
	runtimeSP->segment_width = segment_width;

	/* Set the main window drawing mode index: */
	guiSP->main_window_modeI = 5;
	}

/* Reinitialize the NearestAtomS array and refresh index: */
InitNearest_ (nearest_atomSP, pixelsN);
*refreshIP = 1;

/* Refresh the main window: */
(*refreshIP)++;
MainRefresh_ (mol_complexSP, mol_complexesN,
	      runtimeSP, configSP, guiSP,
	      nearest_atomSP, pixelsN, *refreshIP);

/* Refresh the control window: */
ControlRefresh_ (mol_complexSP + runtimeSP->default_complexI, configSP, guiSP);

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

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