Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/cameraman.h @ 10199

Last change on this file since 10199 was 10199, checked in by gfilip, 17 years ago

override3

File size: 609 bytes
RevLine 
[10192]1#ifndef _CAMERAMAN_H
2#define _CAMERAMAN_H
3
4#include "p_node.h"
[10197]5#include "camera.h"
[10192]6
7class cameraman {
8
9  private:
[10197]10    Camera* currentCam;
[10192]11    int camNo;
12    int camAmount;
13
14
[10195]15
[10192]16  public:
17    cameraman();
[10193]18    void setCam(int CameraNo);
[10192]19    void createCam();
[10197]20    Camera* cameras[6];
21    void moveCam(int x, int y, int z, int speed, int camNo);
22    void moveCurrCam(int x, int y, int z, int speed);
[10199]23    void changeTarget(int camNo, PNode* target);
24    void changeCurrTarget(PNode* target);
25    void jumpCam(int x, int y, int z, int camNo);
26    void jumpCam(int x, int y, int z);
[10192]27
28
29
30
31
32};
33
[10195]34#endif /* _CAMERAMAN_H */
Note: See TracBrowser for help on using the repository browser.