AnoPlib - Animlets are not Particles library
 All Data Structures Namespaces Files Functions Variables
AnoPwavepropagation1 Class Reference

electromagnatic waves propagation :-) More...

#include <AnoPwavepropagation1.h>

Inheritance diagram for AnoPwavepropagation1:
AnoP::AnoPsystem< wireless1Struct > AnoP::AnoPsystemBase

Public Member Functions

void addAnimlet (wireless1Struct &animlet) throw ()
 Adds an animlet to the list of those to render.
 AnoPwavepropagation1 (unsigned int bufSize=10)
 Constructor.
void preRender () throw ()
 Pre-rendering step.
bool render (wireless1Struct &s, unsigned int timeDiff, void *const something) throw ()
 Rendering step.
void renderAll (unsigned int timeDiff, void *const something)
 Renders all stored animlets, passing the given values to these.
Methods to override by realisation
virtual void postRender () throw ()
 Called after rendering the stored animlets.
virtual bool deleteAnimlet (wireless1Struct &which) throw ()
 Animlet deletion callback.

Protected Attributes

wireless1StructmyAnimletBuffer
 The allocated animlets.
unsigned int myAnimletNumber
 The number of currently running animlets.
unsigned int myBufferSize
 The number of allocated animlets.

Detailed Description

electromagnatic waves propagation :-)

Definition at line 59 of file AnoPwavepropagation1.h.


Constructor & Destructor Documentation

AnoPwavepropagation1::AnoPwavepropagation1 ( unsigned int  bufSize = 10) [inline]

Constructor.

Parameters:
[in]bufSizeThe number of animlets to pre-allocate

Definition at line 64 of file AnoPwavepropagation1.h.


Member Function Documentation

void AnoP::AnoPsystem< wireless1Struct >::addAnimlet ( wireless1Struct animlet) throw () [inline, inherited]

Adds an animlet to the list of those to render.

animlet The animlet to add

Definition at line 112 of file AnoP.h.

References AnoP::AnoPsystem< T >::myAnimletBuffer, AnoP::AnoPsystem< T >::myAnimletNumber, and AnoP::AnoPsystem< T >::myBufferSize.

                                            {
            if(myAnimletNumber==myBufferSize) {
                int add = 10;
                T *newBuffer = new T[myBufferSize+add];
                memcpy(newBuffer, myAnimletBuffer, sizeof(T)*myBufferSize);
                std::swap(myAnimletBuffer, newBuffer);
                myBufferSize += add;
                delete[] newBuffer;
            }
            myAnimletBuffer[myAnimletNumber] = animlet;
            ++myAnimletNumber;
        }
virtual bool AnoP::AnoPsystem< wireless1Struct >::deleteAnimlet ( wireless1Struct which) throw () [inline, virtual, inherited]

Animlet deletion callback.

If this callback returns true, the animlet is removed from the list of animlets to render. In the case any memory shall be freed, this method is reponsible for doing this.

Nonetheless, there may be some reason for not deleting the animlet but reinitialise it. This can be done in this method, too. false should be returned then, so that the animlet stays in the list of animlets to render.

Parameters:
[in]whichThe animlet to delete

Definition at line 171 of file AnoP.h.

{ return true; }
virtual void AnoP::AnoPsystem< wireless1Struct >::postRender ( ) throw () [inline, virtual, inherited]

Called after rendering the stored animlets.

This method is meant to do any kind of cleaning up; does nothing per default.

Definition at line 142 of file AnoP.h.

{}
void AnoPwavepropagation1::preRender ( ) throw () [inline, virtual]

Pre-rendering step.

Reimplemented from AnoP::AnoPsystem< wireless1Struct >.

Definition at line 69 of file AnoPwavepropagation1.h.

                             {
        glMatrixMode(GL_PROJECTION);
        glLoadIdentity();
        glMatrixMode(GL_MODELVIEW);
        glLoadIdentity();
        glTranslated(-1,-1,0);
        glScaled(1./200, 1./200, 1.);
    }
bool AnoPwavepropagation1::render ( wireless1Struct s,
unsigned int  timeDiff,
void *const  something 
) throw () [inline, virtual]

Rendering step.

Parameters:
[in]sThe settings of the animlet to render
[in]timeDiffThe time passed since last call
[in]somethingNot used here

Reimplemented from AnoP::AnoPsystem< wireless1Struct >.

Definition at line 84 of file AnoPwavepropagation1.h.

References AnoPhelpers::drawOutlineCircle(), and s.

                                                                                           {
        glPushMatrix();
        int off = s.step;
        glTranslated(s.pos[0], s.pos[1], 0);
        for(int i=0; i<5; ++i) {
            glPushMatrix();
            int step = s.step + i * 100;
            double scale = step;
            glScaled(scale/256., scale/256., scale/256.);
            double c = 1. / scale * 50;
            glTranslated(0, 0, (double) i / 10.);
            glColor4d(c,c,c,c);
            //glScaled(100., 100., 100.);
            int q = step>72 ? step : step / 2;
            AnoPhelpers::drawOutlineCircle(1., .9, q, 0, 360.);
            glPopMatrix();
        }
        glPopMatrix();
        s.step += 1;
        if(s.step>100) {
            s.step = 1;
        }
        return true;
    }
void AnoP::AnoPsystem< wireless1Struct >::renderAll ( unsigned int  timeDiff,
void *const  something 
) [inline, virtual, inherited]

Renders all stored animlets, passing the given values to these.

At first "preRender" is called.

Then, for each stored animlet the "render" method is called, passing the current animlet, the given time since last call, and the given additional data. In the case "render" returns false, "deleteAnimlet" is called. If "deleteAnimlet" returns true, the animlet is removed.

At the end "postRender" is called.

Parameters:
[in]timeDiffAssumed to be the time since last call
[in]somethingFurther thing that will be passed during the rendering

Implements AnoP::AnoPsystemBase.

Definition at line 91 of file AnoP.h.

References AnoP::AnoPsystem< T >::deleteAnimlet(), AnoP::AnoPsystem< T >::myAnimletBuffer, AnoP::AnoPsystem< T >::myAnimletNumber, AnoP::AnoPsystem< T >::postRender(), AnoP::AnoPsystem< T >::preRender(), and AnoP::AnoPsystem< T >::render().

                                                                      {
            preRender();
            for(unsigned int i=0; i<myAnimletNumber; ) {
                T &animlet = myAnimletBuffer[i];
                if(render(animlet, timeDiff, something)) {
                    ++i;
                    continue;
                }
                // animlet dies...
                if(deleteAnimlet(animlet)) {
                    myAnimletBuffer[i] = myAnimletBuffer[myAnimletNumber-1];
                    --myAnimletNumber;
                }
            }
            postRender();
        }

Field Documentation

The allocated animlets.

Definition at line 183 of file AnoP.h.

unsigned int AnoP::AnoPsystem< wireless1Struct >::myAnimletNumber [protected, inherited]

The number of currently running animlets.

Definition at line 177 of file AnoP.h.

unsigned int AnoP::AnoPsystem< wireless1Struct >::myBufferSize [protected, inherited]

The number of allocated animlets.

Definition at line 180 of file AnoP.h.


The documentation for this class was generated from the following file: