Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/OrxoKart_HS18/src/modules/orxokart/OrxoKartTile.cc @ 12089

Last change on this file since 12089 was 12089, checked in by ottka, 5 years ago

implement module

File size: 3.9 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) 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, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Manuel Meier
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30    @file OrxoKartTile.cc
31    @brief Represents one Wall piece in the OrxoKart Game
32*/
33
34#include "OrxoKartTile.h"
35
36#include "core/CoreIncludes.h"
37#include "graphics/Model.h"
38#include "objects/collisionshapes/BoxCollisionShape.h"
39
40namespace orxonox
41{
42    RegisterClass(OrxoKartTile);
43
44    OrxoKartTile::OrxoKartTile(Context* context) : StaticEntity(context)
45    {
46        RegisterObject(OrxoKartTile);
47
48        this->model_ = nullptr;
49        this->cs_ = nullptr;
50
51        this->enableCollisionCallback();
52        this->setCollisionResponse(true);
53        this->setCollisionType(CollisionType::Static);
54    }
55
56    /**
57    @brief
58        Destructor.
59    */
60    OrxoKartTile::~OrxoKartTile()
61    {
62        if (this->isInitialized())
63        {
64            if (this->model_)
65                this->model_->destroy();
66            if (this->cs_)
67                this->cs_->destroy();
68        }
69    }
70
71    /**
72    @brief
73        Initializes a OrxoKartTile
74    @param x
75        x-Coordinate of the Square that the Wall is attached to, 0-9, Origin is Bottom left
76    @param y
77        y-Coordinate of the Square that the Wall is attached to, 0-9, Origin is Bottom left
78    @param cellSize
79        The size of a cell
80    @param cellHeight
81        The height of a cell
82    @param orientation
83            Wall on the right side (1) or on top (2) of this square, 0-1       
84    */
85    void OrxoKartTile::init(int x, int z, int s, int type)
86    {
87        model_ = new Model(this->getContext());
88        if (type == 1) {
89           model_->setMeshSource("OrxoKartStreckenabschnitt.mesh"); 
90        }
91        else if (type == 2 ) {
92            model_->setMeshSource("OrxoKartStreckenabschnittZiel.mesh");
93        }
94        model_->setScale3D(Vector3(s*1.0f, 8.0f, s*1.0f));
95        model_->setPosition(Vector3(x*1.0f, 0.0f, z*1.0f));
96
97        this->attach(model_);
98
99        cs_ = new BoxCollisionShape(this->getContext());
100        cs_->setHalfExtents(Vector3(s/2.0f, 1.0f, s/2.0f));
101        cs_->setPosition(Vector3(x*1.0f, -1.0f, z*1.0f));
102
103        this->attachCollisionShape(cs_);
104
105        /*
106
107        int xSize_, zSize_, xPos_, zPos_;
108
109        if(orientation == 1){
110            xSize_ = cellSize/2;
111            zSize_ = 2;
112            zPos_ = x*cellSize;
113            xPos_ = y*cellSize-cellSize/2;
114        }
115        else{
116            xSize_ = 2;
117            zSize_ = cellSize/2;
118            zPos_ = x*cellSize-cellSize/2;
119            xPos_ = y*cellSize;
120        }
121
122
123        model_ = new Model(this->getContext());
124        model_->setMeshSource("CuboidBody.mesh");
125        model_->setScale3D(Vector3(xSize_*1.0f, cellHeight*1.0f, zSize_*1.0f));
126        model_->setPosition(Vector3(xPos_*1.0f, 0.0f, zPos_*1.0f));
127
128        this->attach(model_);
129
130        cs_ = new BoxCollisionShape(this->getContext());
131        cs_->setHalfExtents(Vector3(xSize_*1.0f, cellHeight*1.0f, zSize_*1.0f));
132        cs_->setPosition(Vector3(xPos_*1.0f, 0.0f, zPos_*1.0f));
133
134        this->attachCollisionShape(cs_);
135        */
136    }
137}
Note: See TracBrowser for help on using the repository browser.