]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/image/crn.cpp
85e1e5cbc02675f396cdd716d46994e602f5feb7
[xonotic/netradiant.git] / plugins / image / crn.cpp
1 /*
2    Copyright (C) 2018, Unvanquished Developers
3    All Rights Reserved.
4
5    This file is part of NetRadiant.
6
7    NetRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    NetRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with NetRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22
23 #include "crn.h"
24
25 #include <stdlib.h>
26
27 #include "ifilesystem.h"
28 #include "iarchive.h"
29 #include "idatastream.h"
30
31 #include "crn_rgba.h"
32 #include "ddslib.h"
33 #include "imagelib.h"
34
35 Image *LoadCRNBuff(const byte *buffer, int length)
36 {
37     int width, height;
38     if (!GetCRNImageSize(buffer, length, &width, &height)) {
39         globalErrorStream() << "ERROR: Error getting crn imag dimensions.\n";
40         return nullptr;
41     }
42     RGBAImage *image = new RGBAImage(width, height);
43     if (!ConvertCRNtoRGBA(buffer, length, width * height, image->getRGBAPixels())) {
44         globalErrorStream() << "ERROR: Error decoding crn image.\n";
45         image->release();
46         return nullptr;
47     }
48     return image;
49 }
50
51 Image *LoadCRN(ArchiveFile &file)
52 {
53     ScopedArchiveBuffer buffer(file);
54     return LoadCRNBuff(buffer.buffer, buffer.length);
55 }