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

« back to all changes in this revision

Viewing changes to src/being/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 "being/actor.h"
 
23
 
 
24
#include "map.h"
 
25
 
 
26
#include "debug.h"
 
27
 
 
28
Actor::Actor():
 
29
    mMap(nullptr),
 
30
    mPos(),
 
31
    mYDiff(0),
 
32
    mMapActor()
 
33
{
 
34
}
 
35
 
 
36
Actor::~Actor()
 
37
{
 
38
    setMap(nullptr);
 
39
}
 
40
 
 
41
void Actor::setMap(Map *const map)
 
42
{
 
43
    // Remove Actor from potential previous map
 
44
    if (mMap)
 
45
        mMap->removeActor(mMapActor);
 
46
 
 
47
    mMap = map;
 
48
 
 
49
    // Add Actor to potential new map
 
50
    if (mMap)
 
51
        mMapActor = mMap->addActor(this);
 
52
}
 
53
 
 
54
int Actor::getTileX() const
 
55
{
 
56
    if (!mMap || !mMap->getTileWidth())
 
57
        return 0;
 
58
 
 
59
    return getPixelX() / mMap->getTileWidth();
 
60
}
 
61
 
 
62
int Actor::getTileY() const
 
63
{
 
64
    if (!mMap || !mMap->getTileHeight())
 
65
        return 0;
 
66
 
 
67
    return getPixelY() / mMap->getTileHeight();
 
68
}