~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/actor.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  The ManaPlus Client
3
 
 *  Copyright (C) 2010  The Mana Developers
4
 
 *  Copyright (C) 2011-2013  The ManaPlus Developers
5
 
 *
6
 
 *  This file is part of The ManaPlus Client.
7
 
 *
8
 
 *  This program is free software; you can redistribute it and/or modify
9
 
 *  it under the terms of the GNU General Public License as published by
10
 
 *  the Free Software Foundation; either version 2 of the License, or
11
 
 *  any later version.
12
 
 *
13
 
 *  This program is distributed in the hope that it will be useful,
14
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 *  GNU General Public License for more details.
17
 
 *
18
 
 *  You should have received a copy of the GNU General Public License
19
 
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 */
21
 
 
22
 
#include "actor.h"
23
 
 
24
 
#include "map.h"
25
 
 
26
 
#include "resources/image.h"
27
 
#include "resources/resourcemanager.h"
28
 
 
29
 
#include "debug.h"
30
 
 
31
 
Actor::Actor():
32
 
    mMap(nullptr),
33
 
    mPos(),
34
 
    mYDiff(0),
35
 
    mMapActor()
36
 
{
37
 
}
38
 
 
39
 
Actor::~Actor()
40
 
{
41
 
    setMap(nullptr);
42
 
}
43
 
 
44
 
void Actor::setMap(Map *const map)
45
 
{
46
 
    // Remove Actor from potential previous map
47
 
    if (mMap)
48
 
        mMap->removeActor(mMapActor);
49
 
 
50
 
    mMap = map;
51
 
 
52
 
    // Add Actor to potential new map
53
 
    if (mMap)
54
 
        mMapActor = mMap->addActor(this);
55
 
}
56
 
 
57
 
int Actor::getTileX() const
58
 
{
59
 
    if (!mMap || !mMap->getTileWidth())
60
 
        return 0;
61
 
 
62
 
    return getPixelX() / mMap->getTileWidth();
63
 
}
64
 
 
65
 
int Actor::getTileY() const
66
 
{
67
 
    if (!mMap || !mMap->getTileHeight())
68
 
        return 0;
69
 
 
70
 
    return getPixelY() / mMap->getTileHeight();
71
 
}