File: PycapResources.h

package info (click to toggle)
libtuxcap 1.4.0.dfsg2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,176 kB
  • sloc: cpp: 43,203; ansic: 3,095; python: 774; objc: 242; makefile: 100; xml: 87
file content (114 lines) | stat: -rw-r--r-- 4,829 bytes parent folder | download | duplicates (3)
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
//--------------------------------------------------
// PycapResources
//
// Pycap application resources
// Handles access to images, sounds etc by python
//
// Jarrad 'Farbs' Woods
// W.P. van Paassen
// Tony Oakden
//--------------------------------------------------

// includes
#include "SexyAppBase.h"
#include <vector>
#include <list>

#ifndef __PYCAPRESOURCES_H__
#define __PYCAPRESOURCES_H__

#include <Python.h>

// use the Sexy namespace
namespace Sexy
{

// class declarations
class Image;
class Font;
class ImageFont;
//class SysFont;

// Pycap Resources class
class PycapResources
{
	//------------
	// functions
	//------------

	public:
	
	// constructor / destructor
	PycapResources();			// create object and load resources. Also sets up resource management module.
	virtual ~PycapResources();	// destroy object, clean up resources. This probably shouldn't leave the res management module active, but it does. Meh.

	// resource accessors
	Image*					getImage( int index );
	Font*					getFont( int index );
	bool					soundExists( int index );
	int getTune( int index );

	private:

	// resource loading
	Image*					loadImage( const std::string& fileName );			// attempt load an image and convert pallete
	Font*					loadFont( const std::string& fileName );			// attempt load an image font
	Font*					sysFont(											// attempt to create a system font
								const std::string& faceName,
								int pointSize,
								int script,
								bool bold,
								bool italics,
								bool underline
								);
	bool					loadSound( int id, const std::string& fileName );	// attempt load a sound into a given slot

	// Python resource handling functions
	// Resources are simply referenced by index. Failed prints errors to err.txt.
	static PyObject* pLoadImage( PyObject* self, PyObject* args );		// attempt to load an image and convert palette. Returns image index on success.
	static PyObject* pImageWidth( PyObject* self, PyObject* args );		// get width of an image resource.
	static PyObject* pImageHeight( PyObject* self, PyObject* args );	// get height of an image resource.
	static PyObject* pUnloadImage( PyObject* self, PyObject* args );	// attempt to unload a given image.
	static PyObject* pLoadFont( PyObject* self, PyObject* args );		// attempt to load a font. Returns font index on success.
	static PyObject* pSysFont( PyObject* self, PyObject* args );		// attempt to create a system font. Returns font index on success.
	static PyObject* pStringWidth( PyObject* self, PyObject* args );	// get width of a string if drawn with a specific font.
	static PyObject* pFontAscent( PyObject* self, PyObject* args );		// get ascent of a font.
	static PyObject* pUnloadFont( PyObject* self, PyObject* args );		// attempt to unload a given font.
	static PyObject* pSetFontScale( PyObject* self, PyObject* args );	// set the draw scale of an image font object
	static PyObject* pLoadSound( PyObject* self, PyObject* args );		// attempt to load a sound.
	static PyObject* pUnloadSound( PyObject* self, PyObject* args );	// attempt to unload a given sound.
	static PyObject* pLoadTune( PyObject* self, PyObject* args );		// attempt to load a music file
	static PyObject* pUnloadTune( PyObject* self, PyObject* args );		// attempt to unload a given music file.
	static PyObject* pGetPixel( PyObject* self, PyObject* args );		// attempt to read pixel data from a locked image.
	static PyObject* pSetPixel( PyObject* self, PyObject* args );		// attempt to set pixel data from a locked image.
	static PyObject* pRefreshPixels( PyObject* self, PyObject* args );	// attempt to refresh an image from memory data.
	static PyObject* pMashPalette( PyObject* self, PyObject* args );	// write garbage into the specified image's palette :)
	static PyObject* pMashImage( PyObject* self, PyObject* args );		// distort image data in some way
	static PyObject* pImageGreyScale( PyObject* self, PyObject* args );	// convert image to grey scale.
	static PyObject* pImageGetLowBound( PyObject* self, PyObject* args );	// Get the lowest none alpha pixel.
	static PyObject* pImageGetHighBound( PyObject* self, PyObject* args );	// Get the highest none alpha pixel.

	//----------
	// members
	//----------

	public:

	// instance
	static PycapResources* sRes;	// reference to self. Assumes use as a singleton (very ugly)

	private:

	// resources
	std::vector<Image*>					images;		// collection of image objects
	std::list<int>						freeImages;	// list of empty image slots
	std::vector<Font*>					fonts;		// collection of font objects
	std::list<int>						freeFonts;	// list of empty font slots
	std::vector<bool>					sounds;		// flags indicating whether sounds are valid
	std::list<int>						freeSounds;	// list of empty sound slots
	std::vector<int>	tunes;		// collection of music segment objects
};

}

#endif // __PYCPRESOURCES_H__