blob: abbc759d83fa2ac2891bd7ad78d932e2238c047b (
plain)
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
|
#ifndef SEEN_NUMBER_OPT_NUMBER_H
#define SEEN_NUMBER_OPT_NUMBER_H
/** \file
* <number-opt-number> implementation.
*/
/*
* Authors:
* Hugo Rodrigues <haa.rodrigues@gmail.com>
*
* Copyright (C) 2006 Hugo Rodrigues
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include <glib/gprintf.h>
//todo: use glib instead of stdlib
#include <stdlib.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
class NumberOptNumber {
public:
gfloat number;
gfloat optNumber;
guint _set : 1;
guint optNumber_set : 1;
NumberOptNumber()
{
number = 0.0;
optNumber = 0.0;
_set = FALSE;
optNumber_set = FALSE;
}
gfloat getNumber()
{
if(_set)
return number;
return -1;
}
gfloat getOptNumber()
{
if(optNumber_set)
return optNumber;
return -1;
}
void setOptNumber(gfloat num)
{
optNumber_set = true;
optNumber = num;
}
void setNumber(gfloat num)
{
_set = true;
number = num;
}
gchar *getValueString(gchar *str)
{
if( _set )
{
if( optNumber_set )
{
g_sprintf(str, "%lf %lf", number, optNumber);
}
else {
g_sprintf(str, "%lf", number);
}
}
return str;
}
void set(gchar const *str)
{
if(!str)
return;
gchar **values = g_strsplit(str, " ", 2);
if( values[0] != NULL )
{
number = strtof(values[0], NULL);
_set = TRUE;
if( values[1] != NULL )
{
// optNumber = g_ascii_strtod(values[1], NULL);
optNumber = strtof(values[1], NULL);
optNumber_set = TRUE;
}
else
optNumber_set = FALSE;
}
else {
_set = FALSE;
optNumber_set = FALSE;
}
}
};
#endif /* !SEEN_NUMBER_OPT_NUMBER_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|