~jimi-hendrix/deadends/trunk

« back to all changes in this revision

Viewing changes to src/classes/Player.cpp

  • Committer: jimi_hendrix
  • Date: 2009-08-03 18:51:04 UTC
  • Revision ID: myspot40@gmail.com-20090803185104-5g6qxj0b6xqenf0f
Initial Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 Copyright (c) 2009 jimi_hendrix.
 
3
 All rights reserved.
 
4
 
 
5
 Redistribution and use in source and binary forms, with or without
 
6
 modification, are permitted provided that the following conditions
 
7
 are met:
 
8
 1. Redistributions of source code must retain the above copyright
 
9
 notice, this list of conditions and the following disclaimer.
 
10
 2. Redistributions in binary form must reproduce the above copyright
 
11
 notice, this list of conditions and the following disclaimer in the
 
12
 documentation and/or other materials provided with the distribution.
 
13
 3. Neither the name of the author(s) nor the names of the contributors
 
14
 may be used to endorse or promote products derived from this software
 
15
 without specific prior written permission.
 
16
 
 
17
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
18
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
19
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
20
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTORS BE LIABLE
 
21
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
22
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
23
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
24
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
25
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
26
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
27
 SUCH DAMAGE.
 
28
 */
 
29
#include "Player.h"
 
30
#include <cstdio>
 
31
 
 
32
Player::Player(std::string basefilename, double x, double y, double movespeed) {
 
33
        // TODO Auto-generated constructor stub
 
34
        std::string tmp;
 
35
        tmp = basefilename + "r.png";
 
36
        this->surface[RIGHT] = SDL::load_image(tmp);
 
37
        tmp = basefilename + "l.png";
 
38
        this->surface[LEFT] = SDL::load_image(tmp);
 
39
        tmp = basefilename + "u.png";
 
40
        this->surface[UP] = SDL::load_image(tmp);
 
41
        tmp = basefilename + "d.png";
 
42
        this->surface[DOWN] = SDL::load_image(tmp);
 
43
        this->x = x;
 
44
        this->y = y;
 
45
        this->direction = LEFT;
 
46
        this->movespeed = movespeed;
 
47
        this->current = this->surface[this->direction];
 
48
        this->rectangle.h = this->current->h - 10;
 
49
        this->rectangle.w = this->current->w - 10;
 
50
        this->canMove = false;
 
51
}
 
52
 
 
53
Player::~Player() {
 
54
        // TODO Auto-generated destructor stub
 
55
        for (int i = 0; i < 4; i++) {
 
56
                SDL_FreeSurface(this->surface[i]);
 
57
        }
 
58
 
 
59
        SDL_FreeSurface(this->current);
 
60
}
 
61
 
 
62
void Player::draw(SDL_Surface *scr) {
 
63
        SDL::apply_surface(this->x, this->y, this->current, scr);
 
64
}