Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/iksolver/test/ik_glut_test/common')
-rw-r--r--intern/iksolver/test/ik_glut_test/common/GlutDrawer.cpp95
-rw-r--r--intern/iksolver/test/ik_glut_test/common/GlutDrawer.h100
-rw-r--r--intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.cpp89
-rw-r--r--intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.h106
-rw-r--r--intern/iksolver/test/ik_glut_test/common/GlutMouseManager.cpp104
-rw-r--r--intern/iksolver/test/ik_glut_test/common/GlutMouseManager.h116
-rw-r--r--intern/iksolver/test/ik_glut_test/common/Makefile44
7 files changed, 654 insertions, 0 deletions
diff --git a/intern/iksolver/test/ik_glut_test/common/GlutDrawer.cpp b/intern/iksolver/test/ik_glut_test/common/GlutDrawer.cpp
new file mode 100644
index 00000000000..40c6a4a95c9
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/GlutDrawer.cpp
@@ -0,0 +1,95 @@
+/**
+ * $Id$
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * 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 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#include "GlutDrawer.h"
+
+#include "MT_assert.h"
+
+MEM_SmartPtr<GlutDrawManager> GlutDrawManager::m_s_instance = MEM_SmartPtr<GlutDrawManager>();
+
+ GlutDrawManager *
+GlutDrawManager::
+Instance(
+){
+ if (m_s_instance == NULL) {
+ m_s_instance = new GlutDrawManager();
+ }
+
+ return m_s_instance;
+}
+
+
+// this is the function you should pass to glut
+
+ void
+GlutDrawManager::
+Draw(
+){
+ GlutDrawManager *manager = GlutDrawManager::Instance();
+
+ if (manager->m_drawer != NULL) {
+ manager->m_drawer->Draw();
+ }
+}
+
+ void
+GlutDrawManager::
+InstallDrawer(
+ GlutDrawer * drawer
+){
+
+ MT_assert(m_drawer == NULL);
+ m_drawer = drawer;
+}
+
+ void
+GlutDrawManager::
+ReleaseDrawer(
+){
+ m_drawer = NULL;
+}
+
+
+GlutDrawManager::
+~GlutDrawManager(
+){
+
+ delete(m_drawer);
+}
+
+
+
+
+
+
+
+
+
diff --git a/intern/iksolver/test/ik_glut_test/common/GlutDrawer.h b/intern/iksolver/test/ik_glut_test/common/GlutDrawer.h
new file mode 100644
index 00000000000..7e56a02dd47
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/GlutDrawer.h
@@ -0,0 +1,100 @@
+/**
+ * $Id$
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * 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 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#ifndef NAN_INCLUDED_GlutDrawer
+
+#define NAN_INCLUDED_GlutDrawer
+
+#include "MEM_NonCopyable.h"
+#include "MEM_SmartPtr.h"
+
+// So pissed off with Glut callback stuff
+// that is impossible to call objects unless they are global
+
+// inherit from GlutDrawer and installl the drawer in the singleton
+// class GlutDrawManager.
+
+class GlutDrawer {
+public :
+
+ virtual
+ void
+ Draw(
+ )= 0;
+
+ virtual
+ ~GlutDrawer(
+ ){};
+};
+
+class GlutDrawManager : public MEM_NonCopyable{
+
+public :
+
+ static
+ GlutDrawManager *
+ Instance(
+ );
+
+ // this is the function you should pass to glut
+
+ static
+ void
+ Draw(
+ );
+
+ void
+ InstallDrawer(
+ GlutDrawer *
+ );
+
+ void
+ ReleaseDrawer(
+ );
+
+ ~GlutDrawManager(
+ );
+
+private :
+
+ GlutDrawManager (
+ ) :
+ m_drawer (0)
+ {
+ };
+
+ GlutDrawer * m_drawer;
+
+ static MEM_SmartPtr<GlutDrawManager> m_s_instance;
+};
+
+
+#endif \ No newline at end of file
diff --git a/intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.cpp b/intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.cpp
new file mode 100644
index 00000000000..0d1d52b542d
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.cpp
@@ -0,0 +1,89 @@
+/**
+ * $Id$
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * 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 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#include "GlutKeyboardManager.h"
+
+#include "MT_assert.h"
+
+MEM_SmartPtr<GlutKeyboardManager> GlutKeyboardManager::m_s_instance = MEM_SmartPtr<GlutKeyboardManager>();
+
+ GlutKeyboardManager *
+GlutKeyboardManager::
+Instance(
+){
+ if (m_s_instance == NULL) {
+ m_s_instance = new GlutKeyboardManager();
+ }
+
+ return m_s_instance;
+}
+
+
+// this is the function you should pass to glut
+
+ void
+GlutKeyboardManager::
+HandleKeyboard(
+ unsigned char key,
+ int x,
+ int y
+){
+ GlutKeyboardManager *manager = GlutKeyboardManager::Instance();
+
+ if (manager->m_handler != NULL) {
+ manager->m_handler->HandleKeyboard(key,x,y);
+ }
+}
+
+ void
+GlutKeyboardManager::
+InstallHandler(
+ GlutKeyboardHandler * handler
+){
+
+ MT_assert(m_handler == NULL);
+ m_handler = handler;
+}
+
+ void
+GlutKeyboardManager::
+ReleaseHandler(
+){
+ m_handler = NULL;
+}
+
+
+GlutKeyboardManager::
+~GlutKeyboardManager(
+){
+
+ delete(m_handler);
+} \ No newline at end of file
diff --git a/intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.h b/intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.h
new file mode 100644
index 00000000000..39174b5ff1a
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/GlutKeyboardManager.h
@@ -0,0 +1,106 @@
+/**
+ * $Id$
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * 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 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#ifndef NAN_INCLUDED_GlutKeyboardManager
+
+#define NAN_INCLUDED_GlutKeyboardManager
+
+#include "MEM_NonCopyable.h"
+#include "MEM_SmartPtr.h"
+
+// So pissed off with Glut callback stuff
+// that is impossible to call objects unless they are global
+
+// inherit from GlutKeyboardHandler and installl the drawer in the singleton
+// class GlutKeyboardManager.
+
+class GlutKeyboardHandler : public MEM_NonCopyable {
+public :
+
+ virtual
+ void
+ HandleKeyboard(
+ unsigned char key,
+ int x,
+ int y
+ )= 0;
+
+ virtual
+ ~GlutKeyboardHandler(
+ ){};
+};
+
+class GlutKeyboardManager : public MEM_NonCopyable{
+
+public :
+
+ static
+ GlutKeyboardManager *
+ Instance(
+ );
+
+ // this is the function you should pass to glut
+
+ static
+ void
+ HandleKeyboard(
+ unsigned char key,
+ int x,
+ int y
+ );
+
+ void
+ InstallHandler(
+ GlutKeyboardHandler *
+ );
+
+ void
+ ReleaseHandler(
+ );
+
+ ~GlutKeyboardManager(
+ );
+
+private :
+
+ GlutKeyboardManager (
+ ) :
+ m_handler (0)
+ {
+ };
+
+ GlutKeyboardHandler * m_handler;
+
+ static MEM_SmartPtr<GlutKeyboardManager> m_s_instance;
+};
+
+
+#endif \ No newline at end of file
diff --git a/intern/iksolver/test/ik_glut_test/common/GlutMouseManager.cpp b/intern/iksolver/test/ik_glut_test/common/GlutMouseManager.cpp
new file mode 100644
index 00000000000..57f4a65327e
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/GlutMouseManager.cpp
@@ -0,0 +1,104 @@
+/**
+ * $Id$
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * 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 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#include "GlutMouseManager.h"
+
+#include "MT_assert.h"
+
+MEM_SmartPtr<GlutMouseManager> GlutMouseManager::m_s_instance = MEM_SmartPtr<GlutMouseManager>();
+
+
+ GlutMouseManager *
+GlutMouseManager::
+Instance(
+){
+ if (m_s_instance == NULL) {
+ m_s_instance = new GlutMouseManager();
+ }
+
+ return m_s_instance;
+}
+
+// these are the functions you should pass to GLUT
+
+ void
+GlutMouseManager::
+Mouse(
+ int button,
+ int state,
+ int x,
+ int y
+){
+ GlutMouseManager *manager = GlutMouseManager::Instance();
+
+ if (manager->m_handler != NULL) {
+ manager->m_handler->Mouse(button,state,x,y);
+ }
+}
+
+ void
+GlutMouseManager::
+Motion(
+ int x,
+ int y
+){
+ GlutMouseManager *manager = GlutMouseManager::Instance();
+
+ if (manager->m_handler != NULL) {
+ manager->m_handler->Motion(x,y);
+ }
+}
+
+ void
+GlutMouseManager::
+InstallHandler(
+ GlutMouseHandler *handler
+){
+
+ MT_assert(m_handler == NULL);
+ m_handler = handler;
+}
+
+ void
+GlutMouseManager::
+ReleaseHandler(
+){
+ m_handler = NULL;
+}
+
+GlutMouseManager::
+~GlutMouseManager(
+){
+
+ delete(m_handler);
+}
+
+
diff --git a/intern/iksolver/test/ik_glut_test/common/GlutMouseManager.h b/intern/iksolver/test/ik_glut_test/common/GlutMouseManager.h
new file mode 100644
index 00000000000..95700bc14dd
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/GlutMouseManager.h
@@ -0,0 +1,116 @@
+/**
+ * $Id$
+ * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+ *
+ * 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 2
+ * of the License, or (at your option) any later version. The Blender
+ * Foundation also sells licenses for use in proprietary software under
+ * the Blender License. See http://www.blender.org/BL/ for information
+ * about this.
+ *
+ * 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, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+ * All rights reserved.
+ *
+ * The Original Code is: all of this file.
+ *
+ * Contributor(s): none yet.
+ *
+ * ***** END GPL/BL DUAL LICENSE BLOCK *****
+ */
+
+#ifndef NAN_INCLUDED_GlutMouseManager_h
+
+#define NAN_INCLUDED_GlutMouseManager_h
+
+#include "MEM_NonCopyable.h"
+#include "MEM_SmartPtr.h"
+
+class GlutMouseHandler {
+public :
+
+ virtual
+ void
+ Mouse(
+ int button,
+ int state,
+ int x,
+ int y
+ ) = 0;
+
+ virtual
+ void
+ Motion(
+ int x,
+ int y
+ ) = 0;
+
+ virtual
+ ~GlutMouseHandler(
+ ){};
+};
+
+class GlutMouseManager : public MEM_NonCopyable{
+
+public :
+
+ static
+ GlutMouseManager *
+ Instance(
+ );
+
+ // these are the functions you should pass to GLUT
+
+ static
+ void
+ Mouse(
+ int button,
+ int state,
+ int x,
+ int y
+ );
+
+ static
+ void
+ Motion(
+ int x,
+ int y
+ );
+
+ void
+ InstallHandler(
+ GlutMouseHandler *
+ );
+
+ void
+ ReleaseHandler(
+ );
+
+ ~GlutMouseManager(
+ );
+
+private :
+
+ GlutMouseManager (
+ ) :
+ m_handler (0)
+ {
+ };
+
+ GlutMouseHandler * m_handler;
+
+ static MEM_SmartPtr<GlutMouseManager> m_s_instance;
+};
+
+
+#endif \ No newline at end of file
diff --git a/intern/iksolver/test/ik_glut_test/common/Makefile b/intern/iksolver/test/ik_glut_test/common/Makefile
new file mode 100644
index 00000000000..07ad1837a7d
--- /dev/null
+++ b/intern/iksolver/test/ik_glut_test/common/Makefile
@@ -0,0 +1,44 @@
+#
+# $Id$
+#
+# ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
+#
+# 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 2
+# of the License, or (at your option) any later version. The Blender
+# Foundation also sells licenses for use in proprietary software under
+# the Blender License. See http://www.blender.org/BL/ for information
+# about this.
+#
+# 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, write to the Free Software Foundation,
+# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
+# All rights reserved.
+#
+# The Original Code is: all of this file.
+#
+# Contributor(s): none yet.
+#
+# ***** END GPL/BL DUAL LICENSE BLOCK *****
+# iksolver test intern Makefile
+#
+
+LIBNAME = common
+SOURCEDIR = intern/iksolver/test/ik_glut_test/$(LIBNAME)
+DIR = $(OCGDIR)/$(SOURCEDIR)
+
+include nan_compile.mk
+
+CCFLAGS += $(LEVEL_2_CPP_WARNINGS)
+
+CPPFLAGS += -I$(NAN_MOTO)/include
+CPPFLAGS += -I$(NAN_MEMUTIL)/include
+