Ignore:
Timestamp:
01/06/15 01:47:03 (9 years ago)
Author:
Maciej Komosinski
Message:

GDK->SDK, gdk_test.cpp -> genomanipulation.cpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/neuro/neuroimpl.cpp

    r286 r288  
    77#include <frams/util/rndutil.h>
    88#include <common/nonstd_math.h>
    9 #ifndef GDK_WITHOUT_FRAMS
     9#ifndef SDK_WITHOUT_FRAMS
    1010#include <frams/simul/creature.h>
    1111#include <frams/mech/creatmechobj.h>
     
    463463Creature* NeuroImpl::getCreature()
    464464{
    465 #ifndef GDK_WITHOUT_FRAMS
     465#ifndef SDK_WITHOUT_FRAMS
    466466CreatMechObject *cmo=(CreatMechObject *)neuro->owner->userdata[CreatMechObject::modeltags_id];
    467467return cmo->creature;
     
    473473void NeuroImpl::get_creature(ExtValue *ret)
    474474{
    475 #ifndef GDK_WITHOUT_FRAMS
     475#ifndef SDK_WITHOUT_FRAMS
    476476ret->setObject(ExtObject(&creature_param,getCreature()));
    477477#endif
     
    480480void NeuroImpl::get_part(ExtValue *ret)
    481481{
    482 #ifndef GDK_WITHOUT_FRAMS
     482#ifndef SDK_WITHOUT_FRAMS
    483483Part *pa;
    484484if (pa=neuro->getPart())
     
    491491void NeuroImpl::get_joint(ExtValue *ret)
    492492{
    493 #ifndef GDK_WITHOUT_FRAMS
     493#ifndef SDK_WITHOUT_FRAMS
    494494Joint *jo;
    495495if (jo=neuro->getJoint())
     
    502502bool NeuroImpl::getPosition(Pt3D &pos)
    503503{
    504 #ifndef GDK_WITHOUT_FRAMS
     504#ifndef SDK_WITHOUT_FRAMS
    505505Part *pa; Joint *jo;
    506506if (pa=neuro->getPart())
     
    548548void NeuroImpl::get_classObject(ExtValue *ret)
    549549{
    550 #ifndef GDK_WITHOUT_FRAMS
     550#ifndef SDK_WITHOUT_FRAMS
    551551NeuroClassExt::makeStaticObject(ret,neuroclass);
    552552#endif
Note: See TracChangeset for help on using the changeset viewer.