summaryrefslogtreecommitdiffstats
path: root/filters/karbon/xcf/xcfexport.cpp
blob: 215c4f0185944e2a152a1ccd69b61ac1857a44a2 (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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/* This file is part of the KDE project
   Copyright (C) 2002, The Karbon Developers

   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 <tqcstring.h>
#include <tqdatastream.h>
#include <tqdom.h>
#include <tqfile.h>
#include <tqstring.h>
#include <tqvaluelist.h>

#include <kgenericfactory.h>
#include <KoFilter.h>
#include <KoFilterChain.h>
#include <KoStore.h>

#include "vdocument.h"
#include "vlayer.h"
#include "xcfexport.h"

#include <kdebug.h>


// Tile size constants.
const unsigned XcfExport::m_tileWidth  = 64;
const unsigned XcfExport::m_tileHeight = 64;


typedef KGenericFactory<XcfExport, KoFilter> XcfExportFactory;
K_EXPORT_COMPONENT_FACTORY( libkarbonxcfexport, XcfExportFactory( "kofficefilters" ) )


XcfExport::XcfExport( KoFilter*, const char*, const TQStringList& )
	: KoFilter()
{
	m_zoomX = 1.0;
	m_zoomY = 1.0;
}

KoFilter::ConversionStatus
XcfExport::convert( const TQCString& from, const TQCString& to )
{
	if( to != "image/x-xcf-gimp" || from != "application/x-karbon" )
	{
		return KoFilter::NotImplemented;
	}


	KoStoreDevice* storeIn = m_chain->storageFile( "root", KoStore::Read );

	if( !storeIn )
		return KoFilter::StupidError;


	TQFile fileOut( m_chain->outputFile() );

	if( !fileOut.open( IO_WriteOnly ) )
		return KoFilter::StupidError;


	TQDomDocument domIn;
	domIn.setContent( storeIn );
	TQDomElement docNode = domIn.documentElement();

	m_stream = new TQDataStream( &fileOut );


	// Load the document.
	VDocument doc;
	doc.load( docNode );

	// Process the document.
	doc.accept( *this );


	delete m_stream;
	fileOut.close();

	return KoFilter::OK;
}

void
XcfExport::visitVDocument( VDocument& document )
{
	// Offsets.
	TQIODevice::Offset current = 0;
	TQIODevice::Offset start = 0;
	TQIODevice::Offset end = 0;

	// Save width and height for layer saving.
	m_width  = static_cast<unsigned>( document.width()  * m_zoomX );
	m_height = static_cast<unsigned>( document.height() * m_zoomY );


	// Header tag (size 14 bytes).
	m_stream->writeRawBytes( "gimp xcf file", 14 );

	// Image width.
	*m_stream << static_cast<TQ_UINT32>( m_width );

	// Image height.
	*m_stream << static_cast<TQ_UINT32>( m_height );

	// Image type = RGB.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Do not save any properties currently.
	*m_stream
		// "END".
		<< static_cast<TQ_UINT32>( 0 )
		// Property size in bytes.
		<< static_cast<TQ_UINT32>( 0 );


	// Save current offset.
	current = m_stream->device()->at();

	// Leave space for layer and channel offsets.
	m_stream->device()->at(
		// current position + (number layers + number channels + 2) * 4.
		current + ( document.layers().count() + 3 + 2 ) * 4 );


	// Iterate over layers.
	VLayerListIterator itr( document.layers() );

	for( ; itr.current(); ++itr )
	{
		// Save start offset.
		start = m_stream->device()->at();


		// Write layer.
		itr.current()->accept( *this );


		// Save end offset.
		end = m_stream->device()->at();

		// Return to current offset.
		m_stream->device()->at( current );

		// Save layer offset.
		*m_stream << start;

		// Increment offset.
		current = m_stream->device()->at();

		// Return to end offset.
		m_stream->device()->at( end );
	}


	// Return to current offset.
	m_stream->device()->at( current );

	// Append a zero offset to indicate end of layer offsets.
	*m_stream << static_cast<TQ_UINT32>( 0 );


	// Return to end offset.
	m_stream->device()->at( end );

	// Append a zero offset to indicate end of channel offsets.
	*m_stream << static_cast<TQ_UINT32>( 0 );
}

void
XcfExport::visitVLayer( VLayer& layer )
{
	// Layer width = image width.
	*m_stream << static_cast<TQ_UINT32>( m_width );

	// Layer height = image height.
	*m_stream << static_cast<TQ_UINT32>( m_height );

	// Layer type = RGBA.
	*m_stream << static_cast<TQ_UINT32>( 1 );

	// Layer name.
	*m_stream << layer.name().latin1();

	// Layer opacity.
	*m_stream << static_cast<TQ_UINT32>( 6 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// Fully opaque = 255.
	*m_stream << static_cast<TQ_UINT32>( 255 );

	// Layer visible?
	*m_stream << static_cast<TQ_UINT32>( 8 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// True.
	*m_stream << static_cast<TQ_UINT32>( 1 );

	// Layer linked?
	*m_stream << static_cast<TQ_UINT32>( 9 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// False.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Preserve transparency?
	*m_stream << static_cast<TQ_UINT32>( 10 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// False.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Apply mask?
	*m_stream << static_cast<TQ_UINT32>( 11 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// False.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Edit mask?
	*m_stream << static_cast<TQ_UINT32>( 12 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// False.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Show mask?
	*m_stream << static_cast<TQ_UINT32>( 13 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// False.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Layer offsets.
	*m_stream << static_cast<TQ_UINT32>( 15 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 8 );
	// X-Offset.
	*m_stream << static_cast<TQ_UINT32>( 0 );
	// Y-Offset.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Layer mode.
	*m_stream << static_cast<TQ_UINT32>( 7 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// Normal mode.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// TODO: Tattoo.
	*m_stream << static_cast<TQ_UINT32>( 20 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 4 );
	// False.
	*m_stream << static_cast<TQ_UINT32>( 0 );

	// Layer properties end.
	*m_stream << static_cast<TQ_UINT32>( 0 );
	// Property size in bytes.
	*m_stream << static_cast<TQ_UINT32>( 0 );


	// Offsets.
	TQIODevice::Offset current = 0;
	TQIODevice::Offset start = 0;
	TQIODevice::Offset end = 0;

	// Save current offset.
	current = m_stream->device()->at();

	// Leave space for hierarchy offsets.
	m_stream->device()->at( current + 8 );

	// Save start offset.
	start = m_stream->device()->at();


	// Write hierarchy.
	writeHierarchy();


	// Save end offset.
	end = m_stream->device()->at();

	// Return to current offset.
	m_stream->device()->at( current );

	// Save hierarchy offset.
	*m_stream << start;


	// Append a zero offset to indicate end of layer mask offsets.
	*m_stream << static_cast<TQ_UINT32>( 0 );
}

void
XcfExport::writeHierarchy()
{
	// Offsets.
	TQIODevice::Offset current = 0;
	TQIODevice::Offset start = 0;
	TQIODevice::Offset end = 0;

	// Width (again?).
	*m_stream << m_width;

	// Height (again?).
	*m_stream << m_height;

	// Color depth.
	*m_stream << static_cast<TQ_UINT32>( 3 );


	// Calculate level number.
	int levX = levels( m_width, m_tileWidth );
	int levY = levels( m_height, m_tileHeight );
	int levels = TQMAX( levX, levY );

	int width = m_width;
	int height = m_height;

	// Save current offset.
	current = m_stream->device()->at();

	// Leave space for level offsets.
	m_stream->device()->at( current + ( levels + 1 ) * 4 );

	for( int i = 0; i < levels; ++i )
	{
		// Save start offset.
		start = m_stream->device()->at();

		if( i == 0 )
		{
			// Write level.
			writeLevel();
		}
		else
		{
			// Fake an empty level.
			width  /= 2;
			height /= 2;

			*m_stream << static_cast<TQ_UINT32>( width );
			*m_stream << static_cast<TQ_UINT32>( height );
			*m_stream << static_cast<TQ_UINT32>( 0 );
		}

		// Save end offset.
		end = m_stream->device()->at();

		// Return to current offset.
		m_stream->device()->at( current );

		// Save level offset.
		*m_stream << start;

		// Increment offset.
		current = m_stream->device()->at();

		// Return to end offset.
		m_stream->device()->at( end );
	}

	// Return to current offset.
	m_stream->device()->at( current );

	// Append a zero offset to indicate end of level offsets.
	*m_stream << static_cast<TQ_UINT32>( 0 );
}

void
XcfExport::writeLevel()
{
	// Offsets.
	TQIODevice::Offset current = 0;
	TQIODevice::Offset start = 0;
	TQIODevice::Offset end = 0;

	*m_stream << static_cast<TQ_UINT32>( m_width );
	*m_stream << static_cast<TQ_UINT32>( m_height );

	int rows = ( m_height + m_tileHeight - 1 ) / m_tileHeight;
	int cols = ( m_width  + m_tileWidth  - 1 ) / m_tileWidth;
	int tiles = rows * cols;

	// Save current offset.
	current = m_stream->device()->at();

	// Leave space for tile offsets.
	m_stream->device()->at( current + ( tiles + 1 ) * 4 );

	for( int i = 0; i < tiles; ++i )
	{
		// Save start offset.
		start = m_stream->device()->at();


		// TODO: Save tile.
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );
		*m_stream << static_cast<TQ_UINT8>( 1 );


		// Save end offset.
		end = m_stream->device()->at();

		// Return to current offset.
		m_stream->device()->at( current );

		// Save tile offset.
		*m_stream << start;

		// Increment offset.
		current = m_stream->device()->at();

		// Return to end offset.
		m_stream->device()->at( end );
	}
}

int
XcfExport::levels( int layerSize, int tileSize )
{
	int l = 1;

	while( layerSize > tileSize )
	{
		layerSize /= 2;
		l += 1;
	}

	return l;
}

#include "xcfexport.moc"