~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to engines/sword25/gfx/image/swimage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ScummVM - Graphic Adventure Engine
 
2
 *
 
3
 * ScummVM is the legal property of its developers, whose names
 
4
 * are too numerous to list here. Please refer to the COPYRIGHT
 
5
 * file distributed with this source distribution.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU General Public License
 
9
 * as published by the Free Software Foundation; either version 2
 
10
 * of the License, or (at your option) any later version.
 
11
 
 
12
 * This program 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 this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
 *
 
21
 * $URL$
 
22
 * $Id$
 
23
 *
 
24
 */
 
25
 
 
26
/*
 
27
 * This code is based on Broken Sword 2.5 engine
 
28
 *
 
29
 * Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsdoerfer
 
30
 *
 
31
 * Licensed under GNU GPL v2
 
32
 *
 
33
 */
 
34
 
 
35
#include "sword25/package/packagemanager.h"
 
36
#include "sword25/gfx/image/pngloader.h"
 
37
#include "sword25/gfx/image/swimage.h"
 
38
 
 
39
namespace Sword25 {
 
40
 
 
41
SWImage::SWImage(const Common::String &filename, bool &result) :
 
42
        _imageDataPtr(0),
 
43
        _width(0),
 
44
        _height(0) {
 
45
        result = false;
 
46
 
 
47
        PackageManager *pPackage = Kernel::getInstance()->getPackage();
 
48
        assert(pPackage);
 
49
 
 
50
        // Load file
 
51
        byte *pFileData;
 
52
        uint fileSize;
 
53
        pFileData = pPackage->getFile(filename, &fileSize);
 
54
        if (!pFileData) {
 
55
                error("File \"%s\" could not be loaded.", filename.c_str());
 
56
                return;
 
57
        }
 
58
 
 
59
        // Determine image properties
 
60
        int pitch;
 
61
        if (!PNGLoader::imageProperties(pFileData, fileSize, _width, _height)) {
 
62
                error("Could not read image properties.");
 
63
                return;
 
64
        }
 
65
 
 
66
        // Uncompress the image
 
67
        byte *pUncompressedData;
 
68
        if (!PNGLoader::decodeImage(pFileData, fileSize, pUncompressedData, _width, _height, pitch)) {
 
69
                error("Could not decode image.");
 
70
                return;
 
71
        }
 
72
 
 
73
        // Cleanup FileData
 
74
        delete[] pFileData;
 
75
 
 
76
        _imageDataPtr = (uint *)pUncompressedData;
 
77
 
 
78
        result = true;
 
79
        return;
 
80
}
 
81
 
 
82
SWImage::~SWImage() {
 
83
        delete[] _imageDataPtr;
 
84
}
 
85
 
 
86
 
 
87
bool SWImage::blit(int posX, int posY,
 
88
                      int flipping,
 
89
                      Common::Rect *pPartRect,
 
90
                      uint color,
 
91
                      int width, int height) {
 
92
        error("Blit() is not supported.");
 
93
        return false;
 
94
}
 
95
 
 
96
bool SWImage::fill(const Common::Rect *pFillRect, uint color) {
 
97
        error("Fill() is not supported.");
 
98
        return false;
 
99
}
 
100
 
 
101
bool SWImage::setContent(const byte *pixeldata, uint size, uint offset, uint stride) {
 
102
        error("SetContent() is not supported.");
 
103
        return false;
 
104
}
 
105
 
 
106
uint SWImage::getPixel(int x, int y) {
 
107
        assert(x >= 0 && x < _width);
 
108
        assert(y >= 0 && y < _height);
 
109
 
 
110
        return _imageDataPtr[_width * y + x];
 
111
}
 
112
 
 
113
} // End of namespace Sword25