File: sdlsurfacetype.h

package info (click to toggle)
sitplus 1.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 23,636 kB
  • sloc: cpp: 34,437; ansic: 7,957; xml: 1,141; yacc: 326; lisp: 235; lex: 167; makefile: 107; sh: 5
file content (82 lines) | stat: -rw-r--r-- 2,441 bytes parent folder | download | duplicates (2)
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
/////////////////////////////////////////////////////////////////////////////
// File:        sdlsurfacetype.h
// Author:      Cesar Mauri Loba (cesar at crea-si dot com)
// Copyright:   (C) 2010 Cesar Mauri Loba - CREA Software Systems
// 
//  This program is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  (at your option) any later version.
//
//  This program 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 General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
/////////////////////////////////////////////////////////////////////////////
#ifndef SDLSURFACETYPE_H
#define SDLSURFACETYPE_H

#include "spcore/pin.h"
#include "spcore/pinimpl.h"
#include "spcore/coreruntime.h"
#include "spcore/basictypes.h"
#include <SDL.h>
#include <boost/static_assert.hpp>

#if defined(main)
#undef main
#endif


namespace mod_sdl {

/**
	Class that carries a SDL_Surface
*/

class CTypeSDLSurfaceContents : public spcore::CTypeAny {
public:
	static inline const char* getTypeName() { return "sdl_surface"; }
	virtual const SDL_Surface* getSurface() const { return m_surface; }
	
	virtual SDL_Surface* getSurface() { return m_surface; }
	virtual void setSurface(SDL_Surface* s) {
		// In principle setting the same pointer twice may 
		// point some kind of problem using this class
		assert (!s || s!= m_surface);
		// Anyway, in release mode handle it accordingly
		if (m_surface && s!= m_surface) SDL_FreeSurface(m_surface);
		m_surface= s; 
	}

	virtual void setX (short x) { m_x=x; }
	virtual short getX() const { return m_x; }
	
	virtual void setY (short y) { m_y=y; }
	virtual short getY() const { return m_y; }

protected:
	CTypeSDLSurfaceContents(int id) 
	: CTypeAny(id) 
	, m_x(0)
	, m_y(0)
	, m_surface(NULL)
	{}

	virtual ~CTypeSDLSurfaceContents() {
		if (m_surface) SDL_FreeSurface(m_surface);
		m_surface= NULL;
	}
private:
	short m_x, m_y;
	SDL_Surface* m_surface;
	BOOST_STATIC_ASSERT(sizeof(Sint16)== sizeof(short));
};

typedef spcore::SimpleType< CTypeSDLSurfaceContents > CTypeSDLSurface;

}
#endif