forked from hills/xosview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fieldmeter.cc
299 lines (261 loc) · 8.56 KB
/
fieldmeter.cc
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
//
// Copyright (c) 1994, 1995, 2006 by Mike Romberg ( [email protected] )
//
// This file may be distributed under terms of the GPL
//
#include "fieldmeter.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <iostream>
FieldMeter::FieldMeter( XOSView *parent, int numfields, const char *title,
const char *legend, int docaptions, int dolegends,
int dousedlegends )
: Meter(parent, title, legend, docaptions, dolegends, dousedlegends){
/* We need to set print_ to something valid -- the meters
* apparently get drawn before the meters have a chance to call
* CheckResources() themselves. */
numWarnings_ = printedZeroTotalMesg_ = 0;
print_ = PERCENT;
metric_ = false;
usedoffset_ = 0;
used_ = 0;
lastused_ = -1;
fields_ = NULL;
colors_ = NULL;
lastvals_ = NULL;
lastx_ = NULL;
setNumFields(numfields);
}
void
FieldMeter::disableMeter ( )
{
setNumFields(1);
setfieldcolor (0, "gray");
Meter::legend ("Disabled");
// And specify the total of 1.0, so the meter is grayed out.
total_ = 1.0;
fields_[0] = 1.0;
}
FieldMeter::~FieldMeter( void ){
delete[] fields_;
delete[] colors_;
delete[] lastvals_;
delete[] lastx_;
}
void FieldMeter::checkResources( void ){
Meter::checkResources();
usedcolor_ = parent_->allocColor( parent_->getResource( "usedLabelColor") );
}
void FieldMeter::SetUsedFormat ( const char * const fmt ) {
/* Do case-insensitive compares. */
if (!strncasecmp (fmt, "percent", 8))
print_ = PERCENT;
else if (!strncasecmp (fmt, "autoscale", 10))
print_ = AUTOSCALE;
else if (!strncasecmp (fmt, "float", 6))
print_ = FLOAT;
else {
std::cerr << "Error: could not parse format of '" << fmt << "'.\n"
<< " I expected one of 'percent', 'autoscale', or 'float'"
<< " (Case-insensitive)." << std::endl;
exit(1);
}
}
void FieldMeter::setUsed (double val, double total)
{
if (print_ == FLOAT)
used_ = val;
else if (print_ == PERCENT)
{
if (total != 0.0)
used_ = val / total * 100.0;
else
{
if (!printedZeroTotalMesg_) {
printedZeroTotalMesg_ = 1;
std::cerr << "Warning: " << name() << " meter had a zero total field! "
<< "Would have caused a div-by-zero exception." << std::endl;
}
used_ = 0.0;
}
}
else if (print_ == AUTOSCALE)
used_ = val;
else {
std::cerr << "Error in " << name() << ": I can't handle a UsedType enum "
<< "value of " << print_ << "!" << std::endl;
exit(1);
}
}
void FieldMeter::reset( void ){
for ( int i = 0 ; i < numfields_ ; i++ )
lastvals_[i] = lastx_[i] = -1;
}
void FieldMeter::setfieldcolor( int field, const char *color ){
colors_[field] = parent_->allocColor( color );
}
void FieldMeter::setfieldcolor( int field, unsigned long color ) {
colors_[field] = color;
}
void FieldMeter::draw( void ){
/* Draw the outline for the fieldmeter. */
parent_->setForeground( parent_->foreground() );
parent_->drawRectangle( x_ - 1, y_ - 1, width_ + 2, height_ + 2 );
if ( dolegends_ ){
parent_->setForeground( textcolor_ );
int offset;
if ( dousedlegends_ )
offset = parent_->textWidth( "XXXXXXXXXX" );
else
offset = parent_->textWidth( "XXXXXX" );
parent_->drawString( x_ - offset + 1, y_ + height_, title_ );
}
drawlegend();
drawfields( 1 );
}
void FieldMeter::drawlegend( void ){
char *tmp1, *tmp2, buff[100];
int n, x = x_;
if (!docaptions_ || !dolegends_)
return;
parent_->clear( x_, y_ - 5 - parent_->textHeight(),
width_ + 5, parent_->textHeight() + 4 );
tmp1 = tmp2 = legend_;
for ( int i = 0 ; i < numfields_ ; i++ ){
n = 0;
while ( (*tmp2 != '/') && (*tmp2 != '\0') ){
if ( (*tmp2 == '\\') && (*(tmp2 + 1) == '/') ) // allow '/' in field as '\/'
memmove( tmp2, tmp2 + 1, strlen(tmp2) );
tmp2++;
n++;
}
tmp2++;
strncpy( buff, tmp1, n );
buff[n] = '\0';
parent_->setStippleN(i%4);
parent_->setForeground( colors_[i] );
parent_->drawString( x, y_ - 5, buff );
x += parent_->textWidth( buff, n );
parent_->setForeground( parent_->foreground() );
if ( i != numfields_ - 1 )
parent_->drawString( x, y_ - 5, "/" );
x += parent_->textWidth( "/", 1 );
tmp1 = tmp2;
}
parent_->setStippleN(0); /* Restore default all-bits stipple. */
}
void FieldMeter::drawused( int mandatory ){
if ( !mandatory )
if ( lastused_ == used_ )
return;
parent_->setStippleN(0); /* Use all-bits stipple. */
static const int onechar = parent_->textWidth( "X" );
if (!usedoffset_) // metric meters need extra space for '-' sign
usedoffset_ = ( metric_ ? parent_->textWidth( "XXXXXX" )
: parent_->textWidth( "XXXXX" ) );
char buf[10];
if (print_ == PERCENT){
snprintf( buf, 10, "%d%%", (int)used_ );
}
else if (print_ == AUTOSCALE){
char scale[2];
double scaled_used = scaleValue(used_, scale, metric_);
/* For now, we can only print 3 characters, plus the optional sign and
* suffix, without overprinting the legends. Thus, we can
* print 965, or we can print 34, but we can't print 34.7 (the
* decimal point takes up one character). bgrayson */
if (scaled_used == 0.0)
snprintf (buf, 10, "0");
else {
if (scaled_used < 0 && !metric_)
snprintf (buf, 10, "-");
else if ( fabs(scaled_used) < 9.95 )
// 9.95 or above would get
// rounded to 10.0, which is too wide.
snprintf (buf, 10, "%.1f%s", scaled_used, scale);
else
snprintf (buf, 10, "%.0f%s", scaled_used, scale);
}
}
else {
if ( fabs(used_) < 99.95 )
snprintf( buf, 10, "%.1f", used_ );
else // drop the decimal if the string gets too long
snprintf( buf, 10, "%.0f", used_ );
}
parent_->clear( x_ - usedoffset_, y_ + height_ - parent_->textHeight(),
usedoffset_ - onechar / 2, parent_->textHeight() + 1 );
parent_->setForeground( usedcolor_ );
parent_->drawString( x_ - (strlen( buf ) + 1 ) * onechar + 2,
y_ + height_, buf );
lastused_ = used_;
}
void FieldMeter::drawfields( int mandatory ){
int twidth, x = x_;
if ( total_ == 0 )
return;
for ( int i = 0 ; i < numfields_ ; i++ ){
/* Look for bogus values. */
if (fields_[i] < 0.0 && !metric_) {
/* Only print a warning 5 times per meter, followed by a
* message about no more warnings. */
numWarnings_ ++;
if (numWarnings_ < 5)
std::cerr << "Warning: meter " << name() << " had a negative value of "
<< fields_[i] << " for field " << i << std::endl;
if (numWarnings_ == 5)
std::cerr << "Future warnings from the " << name() << " meter will not "
<< "be displayed." << std::endl;
}
twidth = (int)fabs(((width_ * fields_[i]) / total_));
if ( (i == numfields_ - 1) && ((x + twidth) != (x_ + width_)) )
twidth = width_ + x_ - x;
if ( mandatory || (twidth != lastvals_[i]) || (x != lastx_[i]) ){
parent_->setForeground( colors_[i] );
parent_->setStippleN(i%4);
parent_->drawFilledRectangle( x, y_, twidth, height_ );
parent_->setStippleN(0); /* Restore all-bits stipple. */
lastvals_[i] = twidth;
lastx_[i] = x;
}
x += twidth;
}
if ( dousedlegends_ )
drawused( mandatory );
}
void FieldMeter::checkevent( void ){
drawfields(0);
}
void FieldMeter::setNumFields(int n){
numfields_ = n;
delete[] fields_;
delete[] colors_;
delete[] lastvals_;
delete[] lastx_;
fields_ = new double[numfields_];
colors_ = new unsigned long[numfields_];
lastvals_ = new int[numfields_];
lastx_ = new int[numfields_];
total_ = 0;
for ( int i = 0 ; i < numfields_ ; i++ ){
fields_[i] = 0.0; /* egcs 2.91.66 bug !? don't do this and */
lastvals_[i] = lastx_[i] = 0; /* that in a single statement or it'll */
/* overwrite too much with 0 ... */
/* Thomas Waldmann ( [email protected] ) */
}
}
bool FieldMeter::checkX(int x, int width) const {
if ((x < x_) || (x + width < x_)
|| (x > x_ + width_) || (x + width > x_ + width_)){
std::cerr << "FieldMeter::checkX() : bad horiz values for meter : "
<< name() << std::endl;
std::cerr <<"value "<<x<<", width "<<width<<", total_ = "<<total_<<std::endl;
for (int i = 0 ; i < numfields_ ; i++)
std::cerr <<"fields_[" <<i <<"] = " <<fields_[i] <<",";
std::cerr <<std::endl;
return false;
}
return true;
}