Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

another update :)

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