1f220fa62Smrg/* 2f220fa62Smrg * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) 3f220fa62Smrg * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved. 4f220fa62Smrg * 5f220fa62Smrg * Permission is hereby granted, free of charge, to any person obtaining a 6f220fa62Smrg * copy of this software and associated documentation files (the "Software"), 7f220fa62Smrg * to deal in the Software without restriction, including without limitation 8f220fa62Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9f220fa62Smrg * and/or sell copies of the Software, and to permit persons to whom the 10f220fa62Smrg * Software is furnished to do so, subject to the following conditions: 11f220fa62Smrg * 12f220fa62Smrg * The above copyright notice including the dates of first publication and 13f220fa62Smrg * either this permission notice or a reference to 14f220fa62Smrg * http://oss.sgi.com/projects/FreeB/ 15f220fa62Smrg * shall be included in all copies or substantial portions of the Software. 16f220fa62Smrg * 17f220fa62Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 18f220fa62Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19f220fa62Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20f220fa62Smrg * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 21f220fa62Smrg * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 22f220fa62Smrg * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23f220fa62Smrg * SOFTWARE. 24f220fa62Smrg * 25f220fa62Smrg * Except as contained in this notice, the name of Silicon Graphics, Inc. 26f220fa62Smrg * shall not be used in advertising or otherwise to promote the sale, use or 27f220fa62Smrg * other dealings in this Software without prior written authorization from 28f220fa62Smrg * Silicon Graphics, Inc. 29f220fa62Smrg */ 30f220fa62Smrg 31f220fa62Smrg/* 32f220fa62Smrg * glcurveval.h 33f220fa62Smrg * 34f220fa62Smrg */ 35f220fa62Smrg 36f220fa62Smrg#ifndef __gluglcurveval_h_ 37f220fa62Smrg#define __gluglcurveval_h_ 38f220fa62Smrg 39f220fa62Smrg#include "gluos.h" 40f220fa62Smrg#include <GL/gl.h> 41f220fa62Smrg#include <GL/glu.h> 42f220fa62Smrg#include "basiccrveval.h" 43f220fa62Smrg 44f220fa62Smrgclass CurveMap; 45f220fa62Smrg 46f220fa62Smrg/*for internal evaluator callback stuff*/ 47f220fa62Smrg#ifndef IN_MAX_BEZIER_ORDER 48f220fa62Smrg#define IN_MAX_BEZIER_ORDER 40 /*XXX should be bigger than machine order*/ 49f220fa62Smrg#endif 50f220fa62Smrg 51f220fa62Smrg#ifndef IN_MAX_DIMENSION 52f220fa62Smrg#define IN_MAX_DIMENSION 4 53f220fa62Smrg#endif 54f220fa62Smrg 55f220fa62Smrgtypedef struct curveEvalMachine{ 56f220fa62Smrg REAL uprime; //cached previously evaluated uprime 57f220fa62Smrg int k; //the dimension 58f220fa62Smrg REAL u1; 59f220fa62Smrg REAL u2; 60f220fa62Smrg int ustride; 61f220fa62Smrg int uorder; 62f220fa62Smrg REAL ctlpoints[IN_MAX_BEZIER_ORDER*IN_MAX_DIMENSION]; 63f220fa62Smrg REAL ucoeff[IN_MAX_BEZIER_ORDER];//cache the polynomial values 64f220fa62Smrg} curveEvalMachine; 65f220fa62Smrg 66f220fa62Smrgclass OpenGLCurveEvaluator : public BasicCurveEvaluator { 67f220fa62Smrgpublic: 68f220fa62Smrg OpenGLCurveEvaluator(void); 69f220fa62Smrg virtual ~OpenGLCurveEvaluator(void); 70f220fa62Smrg void range1f(long, REAL *, REAL *); 71f220fa62Smrg void domain1f(REAL, REAL); 72f220fa62Smrg void addMap(CurveMap *); 73f220fa62Smrg 74f220fa62Smrg void enable(long); 75f220fa62Smrg void disable(long); 76f220fa62Smrg void bgnmap1f(long); 77f220fa62Smrg void map1f(long, REAL, REAL, long, long, REAL *); 78f220fa62Smrg void mapgrid1f(long, REAL, REAL); 79f220fa62Smrg void mapmesh1f(long, long, long); 80f220fa62Smrg void evalpoint1i(long); 81f220fa62Smrg void evalcoord1f(long, REAL); 82f220fa62Smrg void endmap1f(void); 83f220fa62Smrg 84f220fa62Smrg void bgnline(void); 85f220fa62Smrg void endline(void); 86f220fa62Smrg 87f220fa62Smrg void put_vertices_call_back(int flag) 88f220fa62Smrg { 89f220fa62Smrg output_triangles = flag; 90f220fa62Smrg } 91f220fa62Smrg#ifdef _WIN32 92f220fa62Smrg void putCallBack(GLenum which, void (GLAPIENTRY *fn)() ); 93f220fa62Smrg#else 94f220fa62Smrg void putCallBack(GLenum which, _GLUfuncptr fn ); 95f220fa62Smrg#endif 96f220fa62Smrg void set_callback_userData(void *data) 97f220fa62Smrg { 98f220fa62Smrg userData = data; 99f220fa62Smrg } 100f220fa62Smrg 101f220fa62Smrg/*------------------begin for curveEvalMachine------------*/ 102f220fa62SmrgcurveEvalMachine em_vertex; 103f220fa62SmrgcurveEvalMachine em_normal; 104f220fa62SmrgcurveEvalMachine em_color; 105f220fa62SmrgcurveEvalMachine em_texcoord; 106f220fa62Smrgint vertex_flag; //whether there is a vertex map or not 107f220fa62Smrgint normal_flag; //whether there is a normal map or not 108f220fa62Smrgint color_flag; //whether there is a color map or not 109f220fa62Smrgint texcoord_flag; //whether there is a texture map or not 110f220fa62Smrg 111f220fa62SmrgREAL global_grid_u0; 112f220fa62SmrgREAL global_grid_u1; 113f220fa62Smrgint global_grid_nu; 114f220fa62Smrg 115f220fa62Smrgvoid inMap1f(int which, //0: vert, 1: norm, 2: color, 3: tex 116f220fa62Smrg int dimension, 117f220fa62Smrg REAL ulower, 118f220fa62Smrg REAL uupper, 119f220fa62Smrg int ustride, 120f220fa62Smrg int uorder, 121f220fa62Smrg REAL *ctlpoints); 122f220fa62Smrg 123f220fa62Smrgvoid inPreEvaluate(int order, REAL vprime, REAL *coeff); 124f220fa62Smrgvoid inDoDomain1(curveEvalMachine *em, REAL u, REAL *retPoint); 125f220fa62Smrgvoid inDoEvalCoord1(REAL u); 126f220fa62Smrgvoid inMapMesh1f(int umin, int umax); 127f220fa62Smrg 128f220fa62Smrgvoid (GLAPIENTRY *beginCallBackN) (GLenum type); 129f220fa62Smrgvoid (GLAPIENTRY *endCallBackN) (void); 130f220fa62Smrgvoid (GLAPIENTRY *vertexCallBackN) (const GLfloat *vert); 131f220fa62Smrgvoid (GLAPIENTRY *normalCallBackN) (const GLfloat *normal); 132f220fa62Smrgvoid (GLAPIENTRY *colorCallBackN) (const GLfloat *color); 133f220fa62Smrgvoid (GLAPIENTRY *texcoordCallBackN) (const GLfloat *texcoord); 134f220fa62Smrg 135f220fa62Smrgvoid (GLAPIENTRY *beginCallBackData) (GLenum type, void* data); 136f220fa62Smrgvoid (GLAPIENTRY *endCallBackData) (void* data); 137f220fa62Smrgvoid (GLAPIENTRY *vertexCallBackData) (const GLfloat *vert, void* data); 138f220fa62Smrgvoid (GLAPIENTRY *normalCallBackData) (const GLfloat *normal, void* data); 139f220fa62Smrgvoid (GLAPIENTRY *colorCallBackData) (const GLfloat *color, void* data); 140f220fa62Smrgvoid (GLAPIENTRY *texcoordCallBackData) (const GLfloat *texcoord, void* data); 141f220fa62Smrg 142f220fa62Smrgvoid* userData; //the opaque pointer for Data callback functions 143f220fa62Smrgvoid beginCallBack(GLenum type, void* data); 144f220fa62Smrgvoid endCallBack(void* data); 145f220fa62Smrgvoid vertexCallBack(const GLfloat *vert, void *data); 146f220fa62Smrgvoid normalCallBack(const GLfloat *normal, void* data); 147f220fa62Smrgvoid colorCallBack(const GLfloat *color, void* data); 148f220fa62Smrgvoid texcoordCallBack(const GLfloat *texcoord, void* data); 149f220fa62Smrg 150f220fa62Smrg 151f220fa62Smrg/*------------------end for curveEvalMachine------------*/ 152f220fa62Smrg 153f220fa62Smrgprivate: 154f220fa62Smrg int output_triangles; //true 1; false 0 155f220fa62Smrg}; 156f220fa62Smrg 157f220fa62Smrg#endif /* __gluglcurveval_h_ */ 158