123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- #if !defined(AFX_IDGLWIDGET_H__6399A341_2976_4A6E_87DD_9AF4DBD4C5DB__INCLUDED_)
- #define AFX_IDGLWIDGET_H__6399A341_2976_4A6E_87DD_9AF4DBD4C5DB__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class idGLDrawable {
- public:
- idGLDrawable();
- ~idGLDrawable() {};
- virtual void draw(int x, int y, int w, int h);
- virtual void setMedia(const char *name){}
- virtual void buttonDown(int button, float x, float y);
- virtual void buttonUp(int button, float x, float y);
- virtual void mouseMove(float x, float y);
- virtual int getRealTime() {return realTime;};
- virtual bool ScreenCoords() {
- return true;
- }
- void SetRealTime(int i) {
- realTime = i;
- }
- virtual void Update() {};
- float getScale() {
- return scale;
- }
- void setScale(float f) {
- scale = f;
- }
- protected:
- float scale;
- float xOffset;
- float yOffset;
- float zOffset;
- float pressX;
- float pressY;
- bool handleMove;
- int button;
- int realTime;
- };
- class idGLDrawableWorld : public idGLDrawable {
- public:
- idGLDrawableWorld();
- ~idGLDrawableWorld();
- void AddTris(srfTriangles_t *tris, const idMaterial *mat);
- virtual void draw(int x, int y, int w, int h);
- void InitWorld();
- protected:
- idRenderWorld *world;
- idRenderModel *worldModel;
- qhandle_t worldModelDef;
- qhandle_t lightDef;
- qhandle_t modelDef;
- };
- class idGLDrawableMaterial : public idGLDrawableWorld {
- public:
- idGLDrawableMaterial(const idMaterial *mat) {
- material = mat;
- scale = 1.0;
- light = 1.0;
- worldDirty = true;
- }
- idGLDrawableMaterial() {
- material = NULL;
- light = 1.0;
- worldDirty = true;
- realTime = 50;
- }
- ~idGLDrawableMaterial() {
- }
- virtual void setMedia(const char *name);
- virtual void draw(int x, int y, int w, int h);
- virtual void buttonUp(int button){}
- virtual void buttonDown(int button, float x, float y);
- virtual void mouseMove(float x, float y);
- virtual void Update() { worldDirty = true ;};
- protected:
- const idMaterial *material;
- bool worldDirty;
- float light;
- };
- class idGLDrawableModel : public idGLDrawableWorld {
- public:
- idGLDrawableModel(const char *name);
- idGLDrawableModel();
- ~idGLDrawableModel() {}
- virtual void setMedia(const char *name);
- virtual void buttonDown(int button, float x, float y);
- virtual void mouseMove(float x, float y);
- virtual void draw(int x, int y, int w, int h);
- virtual void Update() { worldDirty = true ;};
- virtual bool ScreenCoords() {
- return false;
- }
- void SetSkin( const char *skin );
- protected:
- bool worldDirty;
- float light;
- idStr skinStr;
- idQuat rotation;
- idVec3 lastPress;
- float radius;
- idVec4 rect;
- };
- class idGLDrawableConsole : public idGLDrawable {
- public:
- idGLDrawableConsole () {
- }
- ~idGLDrawableConsole() {
- }
- virtual void setMedia(const char *name) {
- }
- virtual void draw(int x, int y, int w, int h);
- virtual int getRealTime() {return 0;};
- protected:
- };
- class idGLWidget : public CWnd
- {
- public:
- idGLWidget();
- void setDrawable(idGLDrawable *d);
- public:
- public:
-
-
- public:
- virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
- protected:
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
-
- public:
- virtual ~idGLWidget();
-
- protected:
- idGLDrawable *drawable;
- bool initialized;
-
- afx_msg void OnPaint();
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
- afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
-
- DECLARE_MESSAGE_MAP()
- };
- class idGLConsoleWidget : public idGLWidget {
- idGLDrawableConsole console;
- public:
- idGLConsoleWidget() {
- };
- ~idGLConsoleWidget() {
- }
- void init();
- protected:
-
- afx_msg void OnPaint();
- afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
- afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
- afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|