コード例 #1
0
   void OSGDebugDrawInterface::AddCircle(const dtEntity::Vec3f& position, 
      const dtEntity::Vec3f& planeNormal, float radius, const dtEntity::Vec4f& color,
      float duration, bool depthTestEnabled)
   {
      if(!mEnabled)
         return;
       
       int smallestAxis = 0;
       if(abs(planeNormal[1]) < abs(planeNormal[smallestAxis])) smallestAxis = 1;
       if(abs(planeNormal[2]) < abs(planeNormal[smallestAxis])) smallestAxis = 2;
       osg::Vec3 base1(0,0,0);
       base1[smallestAxis] = 1;
       osg::Vec3 ortho1 = planeNormal ^ base1; ortho1.normalize();
       osg::Vec3 ortho2 = planeNormal ^ ortho1;ortho2.normalize();
       
       std::vector<osg::Vec3> lines;
       lines.push_back(osg::Vec3());
       unsigned int numPoints = 16;
       
       for(unsigned int i = 0; i < numPoints; ++i)
       {
          float angle = (static_cast<float>(i) / static_cast<float>(numPoints)) * osg::PI * 2;
          osg::Vec3 p = position + ortho1 * sin(angle) * -1 * radius + ortho2 * cos(angle) * radius;
          lines.push_back(p);
          if(numPoints != i + 1)
          {
            lines.push_back(p);
          }
       }
       lines[0] = lines.back();

       AddLines(lines, color, 1, duration, depthTestEnabled);
   }
コード例 #2
0
ファイル: main.cpp プロジェクト: RoyLzr/Tools
int main()
{
    //一个生成的对象指针只能交给一个 handle类管理
    
    Base *item_test1 = new Base(1);
    Child *item_test2 = new Child(2);

    Handle<Child> test2 = item_test2;
    Handle<Base> test1 = item_test1;
    
    test2->out();
    //转意 test1->ptr->out()
    test1->out();
  
    Handle<Base> test3 = test1;
    Handle<Base> test4;
    test4 = test1;
    
    //test explicit
    Base base1(1);

    //error explicit Base
    //explicit = 初始化 不能运行 同理函数参数传递时候调用的
    //拷贝构造函数为explicit 不能进行转化。所以函数此处调用
    //也是错误
    //Base base2 = base1;
    //out(base1);
    
    return 0;
}
コード例 #3
0
ファイル: 源.cpp プロジェクト: Hidestorm/15.7
int main()
{
	Item_base base0("C++primer", 50.00);
	Bulk_item bulk0("How to pr", 50.00, 3, 0.2);
	cout << base0 << endl;
	cout << bulk0 << endl;
//	vector<Item_base> basket;
	vector<Item_base *> basket;
	Item_base base1("C++primer_1", 50.00);
	Bulk_item bulk1("How to pr_1", 50.00, 3, 0.25);
	Item_base *p1 = &base0, *p2 = &base1;
	Bulk_item *p3 = &bulk0, *p4 = &bulk1;
	/*
	basket.push_back(base0);
	basket.push_back(base1);
	basket.push_back(bulk0);
	basket.push_back(bulk1);
	*/
	cout << *p1 << p2 << p3 << p4 << endl;
	basket.push_back(p1);
	basket.push_back(p2);
	basket.push_back(p3);
	basket.push_back(p4);
	double sumprice = 0;
	for (vector<Item_base*>::iterator it = basket.begin();
		it != basket.end(); ++it)
		sumprice += (*it)->net_price(5);
	cout << "sumprice = :" << sumprice << endl;
	system("pause");
	return 0;
}
コード例 #4
0
void TestCode()
{
   class aBase
   {
      public:
         aBase(int val=1) : pv_baseVal( val ) {}
      protected:
      private:
         int pv_baseVal;
   };

   class aDerived : public aBase
   {
      public:
         aDerived(int bVal = 1, int val = 1) : aBase( bVal ), pv_derivedVal( val ) {}
      protected:
      private:
         int pv_derivedVal;
   };

   aBase base1(5);
   aBase base2(3);

   base1 = base2;

   aDerived d1(6, 8);
   aDerived d2(16, 18);

   d1 = d2;

}
コード例 #5
0
ファイル: perlin.cpp プロジェクト: sdp0et/gtp
Model* PerlinGenerator::heightmapNonindexed( int udivs, int vdivs, real uSize, real vSize, real normalFindStepRadians )
{
  Model* model = new Model( "heightmap" ) ;

  Mesh* mesh = new Mesh( model, MeshType::Nonindexed, VertexType::VT10NC10 ) ;
  model->addMesh( mesh ) ;

  real uStep = 1.0 / udivs ;
  real vStep = 1.0 / vdivs ;

  // u and v must be normalized to sample the perlin noise function properly

  // do not use non-integral loop counters, because termination condition is finicky
  for( int u = 0 ; u < udivs ; u++ ) //x
  {
    for( int v = 0 ; v < vdivs ; v++ ) //z
    {
      real fu = (real)u/udivs ;
      real fv = (real)v/vdivs ;

      // 1- 4
      // |/ |
      // 2- 3
      Vector ns[4], cs[4];
      Vector c=1;//Vector::random();
      for( int i = 0 ; i < 4 ; i++ ) cs[i]=c ;

      Vector ps[4] = {
        Vector( u, 0, v ),
        Vector( u, 0, v+vStep ),
        Vector( u+uStep, 0, v+vStep ),
        Vector( u+uStep, 0, v )
      } ;

      for( int i = 0 ; i < 4 ; i++ )
      {
        ps[i].x *= uSize ;
        ps[i].z *= vSize ;
      }


      for( int i = 0 ; i < 4 ; i++ )
        ps[i].y = mountainHeight( ps[i].x, ps[i].z ) ;
      
      // calculate normals.
      int nCount = 0 ;
      for( real ro = 0 ; ro < 2*PI ; ro += normalFindStepRadians )
      {
        nCount++;
        
        // rotate about the y-axis, to get points around y1
        Vector base1( uStep*uSize/32,0,0 ), base2( uStep*uSize/32,0,0 ) ;

        // rotation only changes x and z.
        base1.rotateY( ro ) ;
        base2.rotateY( ro+normalFindStepRadians ) ;

        Vector s(1,1,1);
        //window->addDebugLine( s, Vector(1,0,0), s+base1, Vector(1,0,0) ) ;
        //window->addDebugLine( s, Vector(1,0,0), s+base2, Vector(1,0,0) ) ;

        for( int i = 0 ; i < 4 ; i++ )
        {
          // Get the heights 
          base1.y = mountainHeight( ps[i].x + base1.x,    ps[i].z + base1.z ) ;
          base2.y = mountainHeight( ps[i].x + base2.x,    ps[i].z + base2.z ) ;
          
          // base1 always "lags" base2
          ns[i] += base1 × base2 ;
          window->addDebugLine( ps[i] + base1, Vector(1,0,0), ps[i] + base2, Vector(.5,0,0) ) ;
        }
      }

      for( int i = 0 ; i < 4 ; i++ )
      {
        ns[i] /= nCount ;
        ns[i].normalize();

        // multiply these 
        //ps[i].x *= uSize ;
        //ps[i].z *= vSize ;
      }

      // 0- 3
      // |/ |
      // 1- 2
      // add to mesh
      AllVertex fvs[4] = {
        AllVertex( ps[0], ns[0], cs[0], 0, 0 ),
        AllVertex( ps[1], ns[1], cs[1], 0, 0 ),
        AllVertex( ps[2], ns[2], cs[2], 0, 0 ),
        AllVertex( ps[3], ns[3], cs[3], 0, 0 )
      } ;

      mesh->addTri( fvs[0],fvs[1],fvs[3] ) ;
      mesh->addTri( fvs[1],fvs[2],fvs[3] ) ;

    }
  }

  return model ;
}
コード例 #6
0
ファイル: test_pimpl.cpp プロジェクト: sean-/boost-pimpl
int
main(int argc, char const* argv[])
{
    //	printf("_MSC_VER=%d\n", _MSC_VER);

	singleton_type singleton;
    pass_value_type pass_value;

    Moo              moo(5);
    Foo              foo;
    Foo const  const_foo = foo;
    Foo&             ref = foo;
    Foo const& const_ref = const_foo;
    Foo*             ptr = &foo;
    Foo const* const_ptr = &const_foo;

    BOOST_ASSERT(false == is_pimpl<Foo>::value);
    BOOST_ASSERT(false == is_pimpl<int>::value);
    BOOST_ASSERT(false == is_pimpl<int*>::value);
    BOOST_ASSERT(false == is_pimpl<int const&>::value);
    BOOST_ASSERT(true  == is_pimpl<Test1>::value);
    BOOST_ASSERT(false == is_pimpl<Test1*>::value);
    BOOST_ASSERT(true  == is_pimpl<Test2>::value);
    BOOST_ASSERT(true  == is_pimpl<Base>::value);
    BOOST_ASSERT(true  == is_pimpl<Derived1>::value);
    BOOST_ASSERT(true  == is_pimpl<Derived1 const>::value);
    BOOST_ASSERT(true  == is_pimpl<Derived1 const&>::value);

    Test1 pt11;                         BOOST_ASSERT(pt11.trace() == "Test1::implementation()");
    Test2 vt11;                         BOOST_ASSERT(vt11.trace() == "Test2::implementation()");
    Test1 pt12(5);                      BOOST_ASSERT(pt12.trace() == "Test1::implementation(int)");
    Test2 vt12(5);                      BOOST_ASSERT(vt12.trace() == "Test2::implementation(int)");
    Test1 pt13 = pt12;                  BOOST_ASSERT(pt13.id() == pt12.id()); // No copying. Implementation shared.
    Test2 vt13 = vt12;                  BOOST_ASSERT(vt13.trace() == "Test2::implementation(implementation const&)");
                                        BOOST_ASSERT(vt13.id() != vt12.id()); // Implementation copied.
    Test1 pt14(pt12);                   BOOST_ASSERT(pt14.id() == pt12.id()); // No copying. Implementation shared.
    Test2 vt14(vt12);                   BOOST_ASSERT(vt14.trace() == "Test2::implementation(implementation const&)");
                                        BOOST_ASSERT(vt14.id() != vt12.id()); // Implementation copied.
    Test1 pt15(5, 6);                   BOOST_ASSERT(pt15.trace() == "Test1::implementation(int, int)");
    Test1 pt16(singleton);
    Test1 pt17(singleton);              BOOST_ASSERT(pt16.id() == pt17.id()); // No copying. Implementation shared.

    Test1 pt21(foo);                    //BOOST_ASSERT(pt21.trace() == "Test1::implementation(Foo&)");
    Test1 pt22(const_foo);              BOOST_ASSERT(pt22.trace() == "Test1::implementation(Foo const&)");
    Test1 pt23(ref);                    BOOST_ASSERT(pt23.trace() == "Test1::implementation(Foo&)");
    Test1 pt24(const_ref);              BOOST_ASSERT(pt24.trace() == "Test1::implementation(Foo const&)");
    Test1 pt25(ptr);                    BOOST_ASSERT(pt25.trace() == "Test1::implementation(Foo*)");
    Test1 pt26(const_ptr);              BOOST_ASSERT(pt26.trace() == "Test1::implementation(Foo const*)");

    Test1 pt31(const_foo, const_foo);   BOOST_ASSERT(pt31.trace() == "Test1::implementation(Foo const&, Foo const&)");
    Test1 pt32(foo, const_foo);         BOOST_ASSERT(pt32.trace() == "Test1::implementation(Foo&, Foo const&)");
    Test1 pt33(const_foo, foo);         BOOST_ASSERT(pt33.trace() == "Test1::implementation(Foo const&, Foo&)");
    Test1 pt34(foo, foo);               BOOST_ASSERT(pt34.trace() == "Test1::implementation(Foo&, Foo&)");
    Test1 pt35(foo, Foo());             BOOST_ASSERT(pt35.trace() == "Test1::implementation(Foo&, Foo const&)");
    Test1 pt36(Foo(), foo);             BOOST_ASSERT(pt36.trace() == "Test1::implementation(Foo const&, Foo&)");
    Test1 pt37(pass_value);             BOOST_ASSERT(pt37.trace() == "Test1::implementation(Foo const&)");

    ////////////////////////////////////////////////////////////////////////////
    // Comparisons with 'int'. g++-4.3.4 (linux).
    ////////////////////////////////////////////////////////////////////////////
    // The standard behavior.
//  bool moo_check1 = moo == int(5); // error: no match for ‘operator==’ in ‘moo == 5’
//  bool moo_check2 = moo != int(5); // error: no match for ‘operator!=’ in ‘moo != 5’
//  bool moo_check3 = int(5) == moo; // error: no match for ‘operator==’ in ‘5 == moo’
//  bool moo_check4 = int(5) != moo; // error: no match for ‘operator!=’ in ‘5 != moo’
    // The pointer Pimpl behavior.
//  bool   pcheck01 = pt12 == int(5); // error: no match for ‘operator==’ in ‘pt12 == 5’
//  bool   pcheck02 = pt12 != int(5); // error: no match for ‘operator!=’ in ‘pt12 != 5’
//  bool   pcheck03 = int(5) == pt12; // error: no match for ‘operator==’ in ‘5 == pt12’
//  bool   pcheck04 = int(5) != pt12; // error: no match for ‘operator!=’ in ‘5 != pt12’
    // The value Pimpl behavior.
    bool   vcheck01 = vt12 == int(5); // Test2 has its own op==(). Non-explicit Test2(int) called.
    bool   vcheck02 = vt12 != int(5); // Test2 has its own op!=(). Non-explicit Test2(int) called.
//  bool   vcheck03 = int(5) == vt12; // error: no match for ‘operator==’ in ‘5 == vt12’
//  bool   vcheck04 = int(5) != vt12; // error: no match for ‘operator!=’ in ‘5 != vt12’

    ////////////////////////////////////////////////////////////////////////////
    // Comparisons with 'bool'. g++-4.3.4 (linux).
    ////////////////////////////////////////////////////////////////////////////
    // The standard behavior.
    bool moo_check5 = moo == false; // Deploys operator safebool::type() conversion
    bool moo_check6 = moo != false; // Deploys operator safebool::type() conversion
    bool moo_check7 = false == moo; // Deploys operator safebool::type() conversion
    bool moo_check8 = false != moo; // Deploys operator safebool::type() conversion
    // The pointer Pimpl behavior.
    bool pcheck05 = pt12 == false;   // Deploys operator safebool::type() conversion
    bool pcheck06 = pt12 != false;   // Deploys operator safebool::type() conversion
    bool pcheck07 = false == pt12;   // Deploys operator safebool::type() conversion
    bool pcheck08 = false != pt12;   // Deploys operator safebool::type() conversion
    // The value Pimpl behavior.
//  bool vcheck05 = vt12 == false;   // Test2 has its own op==(). error: ambiguous overload for ‘operator==’ in ‘vt12 == false’
//  bool vcheck06 = vt12 != false;   // Test2 has its own op!=(). error: ambiguous overload for ‘operator!=’ in ‘vt12 != false’
    bool vcheck07 = false == vt12;   // Deploys operator safebool::type() conversion
    bool vcheck08 = false != vt12;   // Deploys operator safebool::type() conversion

    ////////////////////////////////////////////////////////////////////////////
    // Comparisons with Pimpl. g++-4.3.4 (linux).
    ////////////////////////////////////////////////////////////////////////////
    bool pcheck1 = pt12 == pt13;    // calls pimpl_base::op==()
    bool pcheck2 = pt12 != pt13;    // calls pimpl_base::op!=()
    bool vcheck1 = vt12 == vt13;    // calls Test2::op==()
    bool vcheck2 = vt12 != vt13;    // calls Test2::op!=()

    if (  moo) {} // Check it calls conversion to safebool.
    if ( !moo) {} // Check it calls conversion to safebool.
    if ( pt11) {} // Check it calls conversion to safebool.
    if (!pt11) {} // Check it calls conversion to safebool.
    if ( vt11) {} // Check it calls conversion to safebool.
    if (!vt11) {} // Check it calls conversion to safebool.

    {   // Testing swap().
        int pt16_id = pt16.id();
        int pt17_id = pt17.id();
        int vt13_id = vt13.id();
        int vt14_id = vt14.id();

        pt16.swap(pt17);
        vt13.swap(vt14);

        BOOST_ASSERT(pt16.id() == pt17_id);
        BOOST_ASSERT(pt17.id() == pt16_id);
        BOOST_ASSERT(vt13.id() == vt14_id);
        BOOST_ASSERT(vt14.id() == vt13_id);
    }
    int k11 = vt11.get(); BOOST_ASSERT(k11 ==  0);
    int k12 = vt12.get(); BOOST_ASSERT(k12 ==  5);
    int k13 = vt13.get(); BOOST_ASSERT(k13 ==  5);

    vt14.set(33);

    BOOST_ASSERT(vt12 == vt13); // Good: Only compiles if op==() is part of Test2 interface.
    BOOST_ASSERT(vt12.trace() == "Test2::operator==(Test2 const&)");
    BOOST_ASSERT(vt11 != vt12); // Good: Only compiles if op==() is part of Test2 interface.
    BOOST_ASSERT(vt11.trace() == "Test2::operator==(Test2 const&)");

    {   // Testing run-time polymorphic behavior.
        Base        base1 (1);
        Derived1 derived1 (2, 3);
        Derived2 derived2 (2, 3, 4);
        Base        base2 (derived1); // calls copy constructor
        Base        base3 (derived2); // calls copy constructor
        Base        base4 (Derived2(2,3,4)/*const ref to temporary*/); // calls copy constructor
        Derived1     bad1 (pimpl<Derived1>::null());
        Derived2     bad2 (pimpl<Derived2>::null());
        Base*         bp1 = &base1;
        Base*         bp2 = &base2;
        Base*         bp3 = &base3;
        Base*         bp4 = &derived1;
        Base*         bp5 = &derived2;
        Base*         bp6 = &bad1;
        Base*         bp7 = &bad2;
        Base        bad_base1 = Base::null();
        Base        bad_base2 = pimpl<Base>::null();
//      Base        bad_base3 = pimpl<Foo>::null(); // correctly does not compile.
//      Foo           bad_foo = pimpl<Foo>::null(); // correctly does not compile.
        Derived1 bad_derived1 = pimpl<Derived1>::null();
        Derived2 bad_derived2 = pimpl<Derived2>::null();

        bool check1 = base1 == derived1;
        bool check2 = base1 == derived2;
        bool check3 = derived1 == base1;
        bool check4 = derived2 == base1;

        if ( bad1) BOOST_ASSERT(0);
        if (!bad2) BOOST_ASSERT(1);

        base2.call_virtual(); BOOST_ASSERT(base2.trace() == "Derived1::call_virtual()");
        base3.call_virtual(); BOOST_ASSERT(base3.trace() == "Derived2::call_virtual()");

        bp1->call_virtual();  BOOST_ASSERT(bp1->trace() == "Base::call_virtual()");
        bp2->call_virtual();  BOOST_ASSERT(bp2->trace() == "Derived1::call_virtual()");
        bp3->call_virtual();  BOOST_ASSERT(bp3->trace() == "Derived2::call_virtual()");
        bp4->call_virtual();  BOOST_ASSERT(bp4->trace() == "Derived1::call_virtual()");
        bp5->call_virtual();  BOOST_ASSERT(bp5->trace() == "Derived2::call_virtual()");
//      bp6->call_virtual();  // crash. referencing bad1
//      bp7->call_virtual();  // crash. referencing bad1
    }
#ifdef __linux__
    {
        printf("BEG: Testing pimpl and boost::serialization.\n");
        Test1                      saved (12345);
        std::ofstream                ofs ("filename");
        boost::archive::text_oarchive oa (ofs);

        printf("Calling boost::archive::test_oarchive << Test1.\n");
        oa << *(Test1 const*) &saved; // write class instance to archive
        ofs.close();

        std::ifstream                ifs ("filename", std::ios::binary);
        boost::archive::text_iarchive ia (ifs);
        Test1                   restored (Test1::null()); // Implementation will be replaced.

        printf("Calling boost::archive::test_iarchive >> Test1.\n");
        ia >> restored; // read class state from archive
        assert(saved.get() == restored.get());
        printf("END: Testing pimpl and boost::serialization.\n");
    }
#endif
    printf("Pimpl test has successfully completed.\n");
    return 0;
}