~ubuntu-branches/ubuntu/trusty/lordsawar/trusty

« back to all changes in this revision

Viewing changes to src/Object.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2008-06-17 16:07:00 UTC
  • mto: (5.1.1 lenny) (1.1.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20080617160700-6d8ofoz0qkasxlnw
ImportĀ upstreamĀ versionĀ 0.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  This program is free software; you can redistribute it and/or modify
2
 
//  it under the terms of the GNU General Public License as published by
3
 
//  the Free Software Foundation; either version 2 of the License, or
4
 
//  (at your option) any later version.
5
 
//
6
 
//  This program is distributed in the hope that it will be useful,
7
 
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
8
 
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9
 
//  GNU Library General Public License for more details.
10
 
//
11
 
//  You should have received a copy of the GNU General Public License
12
 
//  along with this program; if not, write to the Free Software
13
 
//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14
 
 
15
 
#include "Object.h"
16
 
#include "counter.h"
17
 
#include "xmlhelper.h"
18
 
 
19
 
Object::Object(Vector<int> pos, Uint32 size)
20
 
    :d_pos(pos), d_size(size)
21
 
{
22
 
    d_id = fl_counter->getNextId();
23
 
}
24
 
 
25
 
Object::Object(const Object& obj)
26
 
    :d_pos(obj.d_pos), d_id(obj.d_id), d_size(obj.d_size)
27
 
{
28
 
}
29
 
 
30
 
Object::Object(XML_Helper* helper, Uint32 size)
31
 
    :d_size(size)
32
 
{
33
 
    int i;
34
 
    helper->getData(d_id, "id");
35
 
    helper->getData(i, "x");
36
 
    d_pos.x = i;
37
 
    helper->getData(i, "y");
38
 
    d_pos.y = i;
39
 
}
40
 
 
41
 
Object::~Object()
42
 
{
43
 
}
44
 
 
45
 
bool Object::contains(Vector<int> pos) const
46
 
{
47
 
    return (pos.x >= d_pos.x) && (pos.x < d_pos.x + (int) d_size) && (pos.y >= d_pos.y) && (pos.y < d_pos.y + (int) d_size);
48
 
}
49