]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sky/sphere.cxx
Updates to cloud code to add different basic cloud types. This isn't the
[simgear.git] / simgear / sky / sphere.cxx
index 285c38f09ba406bed3ef6be0d63834044d057243..21e25be41ac3e6e5c5f7754e502e28cc4c10af47 100644 (file)
 // $Id$
 
 
-#include <plib/ssg.h>
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+#include <simgear/compiler.h>
 
+#include STL_IOSTREAM
+
+#include <plib/ssg.h>
+#include <simgear/constants.h>
 
 // return a sphere object as an ssgBranch
-ssgBranch *ssgMakeSphere( double radius, int slices, int stacks ) {
+ssgBranch *ssgMakeSphere( ssgSimpleState *state, ssgColourArray *cl,
+                         double radius, int slices, int stacks,
+                         ssgCallback predraw, ssgCallback postdraw )
+{
     float rho, drho, theta, dtheta;
     float x, y, z;
     float s, t, ds, dt;
@@ -36,8 +47,8 @@ ssgBranch *ssgMakeSphere( double radius, int slices, int stacks ) {
     sgVec2 vec2;
     sgVec3 vec3;
 
-    drho = M_PI / (float) stacks;
-    dtheta = 2.0 * M_PI / (float) slices;
+    drho = FG_PI / (float) stacks;
+    dtheta = 2.0 * FG_PI / (float) slices;
 
     /* texturing: s goes from 0.0/0.25/0.5/0.75/1.0 at +y/+x/-y/-x/+y
        axis t goes from -1.0/+1.0 at z = -radius/+radius (linear along
@@ -66,10 +77,11 @@ ssgBranch *ssgMakeSphere( double radius, int slices, int stacks ) {
 
            // glNormal3f( x*nsign, y*nsign, z*nsign );
            sgSetVec3( vec3, x*nsign, y*nsign, z*nsign );
+           sgNormalizeVec3( vec3 );
            nl->add( vec3 );
 
            // glTexCoord2f(s,t);
-           sgSetVec2( vec2, 2, t );
+           sgSetVec2( vec2, s, t );
            tl->add( vec2 );
 
            // glVertex3f( x*radius, y*radius, z*radius );
@@ -82,6 +94,7 @@ ssgBranch *ssgMakeSphere( double radius, int slices, int stacks ) {
 
            // glNormal3f( x*nsign, y*nsign, z*nsign );
            sgSetVec3( vec3, x*nsign, y*nsign, z*nsign );
+           sgNormalizeVec3( vec3 );
            nl->add( vec3 );
 
            // glTexCoord2f(s,t-dt);
@@ -95,7 +108,19 @@ ssgBranch *ssgMakeSphere( double radius, int slices, int stacks ) {
        }
 
        ssgLeaf *slice = 
-           new ssgVtxTable ( GL_TRIANGLE_STRIP, vl, nl, tl, NULL );
+           new ssgVtxTable ( GL_TRIANGLE_STRIP, vl, nl, tl, cl );
+
+       if ( vl->getNum() != nl->getNum() ) {
+           cout << "bad sphere1\n";
+           exit(-1);
+       }
+       if ( vl->getNum() != tl->getNum() ) {
+           cout << "bad sphere2\n";
+           exit(-1);
+       }
+       slice->setState( state );
+       slice->setCallback( SSG_CALLBACK_PREDRAW, predraw );
+       slice->setCallback( SSG_CALLBACK_POSTDRAW, postdraw );
 
        sphere->addKid( slice );