-
Notifications
You must be signed in to change notification settings - Fork 0
/
nyancat.cpp
executable file
·56 lines (53 loc) · 1.69 KB
/
nyancat.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* Copyright (C) 2011-2011 Michal Hozza (mhozza@gmail.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "nyancat.h"
#include "nyancatmodel.h"
#include "keyboard.h"
#include "game.h"
NyanCat::NyanCat(int textureId)
:GameObject(NULL,0,0,-3.25)
{
this->model = new NyanCatModel(textureId);//,-0.02,100);
Keyboard::getInstance()->registerAction(this,0,'f',false);//fog
Mouse::getInstance()->registerAction(this,1);//mouseMove
Keyboard::getInstance()->registerAction(this,2,'p',false);//pause
Keyboard::getInstance()->registerAction(this,3,'h',false);//shaders
}
void NyanCat::action(int actionId)
{
switch(actionId)
{
case 0:
Game::fog = !Game::fog;
break;
case 1:
{
if(Game::paused) break;
pair<int,int> mc = Mouse::getInstance()->getMotionCoords();
//cout << mc.first << " " << mc.second << endl;
this->setX(6*((float)mc.first/WINDOW_W)-3);
this->setY(-(5*((float)mc.second/WINDOW_H)-2.5));
break;
}
case 2:
Game::paused = !Game::paused;
break;
case 3:
Game::shaders= !Game::shaders;
break;
}
}