summaryrefslogtreecommitdiffstats
path: root/ksvg/impl/SVGAngleImpl.cc
blob: b69d95e85ff314a626e42cc944b192bd88f2c58a (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
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
/*
    Copyright (C) 2001-2003 KSVG Team
    This file is part of the KDE project

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#include <kdebug.h>

#include "SVGAngle.h"

#include "SVGAngleImpl.h"

using namespace KSVG;

#include "SVGAngleImpl.lut.h"
#include "ksvg_scriptinterpreter.h"
#include "ksvg_bridge.h"
#include "ksvg_cacheimpl.h"

const double deg2rad = 0.017453292519943295769; // pi/180
const double deg2grad = 400.0 / 360.0;
const double rad2grad = deg2grad / deg2rad;

SVGAngleImpl::SVGAngleImpl()
{
	KSVG_EMPTY_FLAGS

	m_unitType = SVG_ANGLETYPE_UNKNOWN;
	m_valueInSpecifiedUnits = 0;
	m_value = 0;
}

SVGAngleImpl::~SVGAngleImpl()
{
}

unsigned short SVGAngleImpl::unitType() const
{
	return m_unitType;
}

void SVGAngleImpl::setValue(float value)
{
	m_value = value;
}

float SVGAngleImpl::value() const
{
	return m_value;
}

// calc m_value
void SVGAngleImpl::calculate()
{
	if(m_unitType == SVG_ANGLETYPE_GRAD)
		m_value = m_valueInSpecifiedUnits / deg2grad;
	else if(m_unitType == SVG_ANGLETYPE_RAD)
		m_value = m_valueInSpecifiedUnits / deg2rad;
	else if(m_unitType == SVG_ANGLETYPE_UNSPECIFIED || m_unitType == SVG_ANGLETYPE_DEG)
		m_value = m_valueInSpecifiedUnits;
}

void SVGAngleImpl::setValueInSpecifiedUnits(float valueInSpecifiedUnits)
{
	m_valueInSpecifiedUnits = valueInSpecifiedUnits;
	calculate();
}

float SVGAngleImpl::valueInSpecifiedUnits() const
{
	return m_valueInSpecifiedUnits;
}

void SVGAngleImpl::setValueAsString(const DOM::DOMString &valueAsString)
{
	m_valueAsString = valueAsString;

	TQString s = valueAsString.string();
	
	bool bOK;
	m_valueInSpecifiedUnits = s.toFloat(&bOK);
	m_unitType = SVG_ANGLETYPE_UNSPECIFIED;
	
	if(!bOK)
    {
		if(s.endsWith("deg"))
			m_unitType = SVG_ANGLETYPE_DEG;
		else if(s.endsWith("grad"))
			m_unitType = SVG_ANGLETYPE_GRAD;
		else if(s.endsWith("rad"))
			m_unitType = SVG_ANGLETYPE_RAD;
	}
	
	calculate();
}

DOM::DOMString SVGAngleImpl::valueAsString() const
{
	m_valueAsString.string().setNum(m_valueInSpecifiedUnits);
	
	switch(m_unitType)
	{
		case SVG_ANGLETYPE_UNSPECIFIED:
		case SVG_ANGLETYPE_DEG:
			m_valueAsString.string() += "deg";
			break;
		case SVG_ANGLETYPE_RAD:
			m_valueAsString.string() += "rad";
			break;
		case SVG_ANGLETYPE_GRAD:
			m_valueAsString.string() += "grad";
			break;
	}
	
	return m_valueAsString;
}

void SVGAngleImpl::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits)
{
	m_unitType = unitType;
	m_valueInSpecifiedUnits = valueInSpecifiedUnits;
	calculate();
}

void SVGAngleImpl::convertToSpecifiedUnits(unsigned short unitType)
{
	if(m_unitType == unitType)
		return;

	if(m_unitType == SVG_ANGLETYPE_DEG && unitType == SVG_ANGLETYPE_RAD)
		m_valueInSpecifiedUnits *= deg2rad;
	else if(m_unitType == SVG_ANGLETYPE_GRAD && unitType == SVG_ANGLETYPE_RAD)
		m_valueInSpecifiedUnits /= rad2grad;
	else if(m_unitType == SVG_ANGLETYPE_DEG && unitType == SVG_ANGLETYPE_GRAD)
		m_valueInSpecifiedUnits *= deg2grad;
	else if(m_unitType == SVG_ANGLETYPE_RAD && unitType == SVG_ANGLETYPE_GRAD)
		m_valueInSpecifiedUnits *= rad2grad;
	else if(m_unitType == SVG_ANGLETYPE_RAD && unitType == SVG_ANGLETYPE_DEG)
		m_valueInSpecifiedUnits /= deg2rad;
	else if(m_unitType == SVG_ANGLETYPE_GRAD && unitType == SVG_ANGLETYPE_DEG)
		m_valueInSpecifiedUnits /= deg2grad;

	m_unitType = unitType;
}

// Helpers
double SVGAngleImpl::todeg(double rad)
{
	return rad / deg2rad;
}

double SVGAngleImpl::torad(double deg)
{
	return deg * deg2rad;
}

double SVGAngleImpl::shortestArcBisector(double angle1, double angle2)
{
	double bisector = (angle1 + angle2) / 2;

	if(fabs(angle1 - angle2) > 180)
		bisector += 180;

	return bisector;
}

// Ecma stuff

/*
@namespace KSVG
@begin SVGAngleImpl::s_hashTable 5
 value						SVGAngleImpl::Value					DontDelete
 valueInSpecifiedUnits		SVGAngleImpl::ValueInSpecifiedUnits	DontDelete
 valueAsString				SVGAngleImpl::ValueAsString			DontDelete
 unitType					SVGAngleImpl::UnitType				DontDelete
@end
@namespace KSVG
@begin SVGAngleImplProto::s_hashTable 3
 convertToSpecifiedUnits	SVGAngleImpl::ConvertToSpecifiedUnits	DontDelete|Function 1
 newValueSpecifiedUnits		SVGAngleImpl::NewValueSpecifiedUnits	DontDelete|Function 2
@end
*/

KSVG_IMPLEMENT_PROTOTYPE("SVGAngle", SVGAngleImplProto, SVGAngleImplProtoFunc)

Value SVGAngleImpl::getValueProperty(ExecState *, int token) const
{
	switch(token)
	{
		case Value:
			return Number(value());
		case ValueInSpecifiedUnits:
			return Number(valueInSpecifiedUnits());
		case ValueAsString:
			return String(valueAsString().string());
		case UnitType:
			return Number(unitType());
		default:
			kdWarning() << "Unhandled token in " << k_funcinfo << " : " << token << endl;
			return Undefined();
	}
}

void SVGAngleImpl::putValueProperty(ExecState *exec, int token, const KJS::Value &value, int)
{
	switch(token)
	{
		case Value:
			setValue(value.toNumber(exec));
			break;
		case ValueInSpecifiedUnits:
			setValueInSpecifiedUnits(value.toNumber(exec));
			break;
		case ValueAsString:
			setValueAsString(value.toString(exec).string());
			break;
		default:
			kdWarning() << "Unhandled token in " << k_funcinfo << " : " << token << endl;
	}
}

Value SVGAngleImplProtoFunc::call(ExecState *exec, Object &thisObj, const List &args)
{
	KSVG_CHECK_THIS(SVGAngleImpl)

	switch(id)
	{
		case SVGAngleImpl::ConvertToSpecifiedUnits:
			obj->convertToSpecifiedUnits(static_cast<unsigned short>(args[0].toNumber(exec)));
			break;
		case SVGAngleImpl::NewValueSpecifiedUnits:
			obj->newValueSpecifiedUnits(static_cast<unsigned short>(args[0].toNumber(exec)), args[1].toNumber(exec));
			break;
		default:
			kdWarning() << "Unhandled function id in " << k_funcinfo << " : " << id << endl;
			break;
	}

	return Undefined();
}

/*
@namespace KSVG
@begin SVGAngleImplConstructor::s_hashTable 7
 SVG_ANGLETYPE_UNKNOWN 		KSVG::SVG_ANGLETYPE_UNKNOWN			DontDelete|ReadOnly
 SVG_ANGLETYPE_UNSPECIFIED 	KSVG::SVG_ANGLETYPE_UNSPECIFIED		DontDelete|ReadOnly
 SVG_ANGLETYPE_RAD 			KSVG::SVG_ANGLETYPE_RAD				DontDelete|ReadOnly
 SVG_ANGLETYPE_DEG 			KSVG::SVG_ANGLETYPE_DEG				DontDelete|ReadOnly
 SVG_ANGLETYPE_GRAD			KSVG::SVG_ANGLETYPE_GRAD			DontDelete|ReadOnly
@end
*/

Value SVGAngleImplConstructor::getValueProperty(ExecState *, int token) const
{
	return Number(token);
}

Value KSVG::getSVGAngleImplConstructor(ExecState *exec)
{
	return cacheGlobalBridge<SVGAngleImplConstructor>(exec, "[[svgangle.constructor]]");
}