[BACK]Return to TsField.h CVS log [TXT][DIR] Up to [Development] / inventor / apps / demos / drop

File: [Development] / inventor / apps / demos / drop / TsField.h (download)

Revision 1.1, Tue Aug 15 12:55:54 2000 UTC (17 years, 2 months ago) by naaman
Branch point for: MAIN

Initial revision

/*
 *
 *  Copyright (C) 2000 Silicon Graphics, Inc.  All Rights Reserved. 
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  Further, this software is distributed without any warranty that it is
 *  free of the rightful claim of any third person regarding infringement
 *  or the like.  Any license provided herein, whether implied or
 *  otherwise, applies only to this software file.  Patent licenses, if
 *  any, provided herein do not apply to combinations of this program with
 *  other software, or any other product whatsoever.
 * 
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
 *  Mountain View, CA  94043, or:
 * 
 *  http://www.sgi.com 
 * 
 *  For further information regarding this notice, see: 
 * 
 *  http://oss.sgi.com/projects/GenInfo/NoticeExplan/
 *
 */

//  -*- C++ -*-

/*
 _______________________________________________________________________
 ______________  S I L I C O N   G R A P H I C S   I N C .  ____________
 |
 |   $Revision: 1.1 $
 |
 |   Description:
 |	This class describes the field of play.  
 |
 |   Classes:
 |      TsField
 |
 |   Author: Dave Immel
 |
 ______________  S I L I C O N   G R A P H I C S   I N C .  ____________
 _______________________________________________________________________
 */

#ifndef _TS_FIELD_
#define _TS_FIELD_

#include <Inventor/SbBasic.h>
#include <Inventor/SbTime.h>
#include <Inventor/SoLists.h>
#include <Inventor/Xt/SoXtComponent.h>

class SoEventCallback;
class SoTranslation;
class SoSeparator;
class SoMaterial;
class SoGroup;
class SoSensor;
class SoText2;
class SoAlarmSensor;
class SoTimerSensor;
class TsPiece;
class TsScoreboard;
class TsViewer;

enum TxAxes {
    TS_X_AXIS,    
    TS_Y_AXIS,    
    TS_Z_AXIS
};

//////////////////////////////////////////////////////////////////////////////
//
//  Class: TsField
//
//  The class for the field of play.  Methods move pieces in the
//  field, check for collisions, and keep score.
//
//////////////////////////////////////////////////////////////////////////////

class TsField : public SoXtComponent {
public:
    TsField( int res,
             Widget parent = NULL,
             const char *name = NULL, 
             SbBool buildInsideParent = TRUE);
   ~TsField();

    // Initialize the whole game.
    void            initGame();

    // Start a new game.
    void            startNewGame();

    // Add a piece and start it falling.
    void            addPiece();

    // Returns the viewer for the field
    TsViewer        *getViewer() const;

    // These routines move the piece in various ways.
    void            rotation( int axis, int amount );
    void            translation( int axis, int amount );
    void            dropPiece();

    // Add points to the score.
    void            addPoints( int points );

    // Used by event callbacks
    void	    handleReturnKey();
    void	    handleHelpKey();

private:
    SoSeparator     *block, *floor, *grid, *helpRoot, *overRoot;
    SoSeparator     *fieldRoot, *fallingRoot, *piecesRoot;
    SoSeparator     *fallingPiece;
    SoTranslation   *pieceXZTranslation, *pieceYTranslation;
    SoTranslation   *gridTranslation;
    SoGroup         *otherBlocks, *helpGroup;
    SoText2         *overScore;
    SbBool          gameStarted;
    SbBool          isGameOver, isDropping, helpDisplayed;
    SbBool	    gamePaused, trickleOn, shiftOn, removalOn;
    SbPList         pieceList;
    SoNodeList      standardCube, levelMaterial, levelGroup;
    SoNodeList      pieceChild, staticBlock, removalTranslation;
    TsPiece         *currentPiece;
    TsViewer        *viewer;
    SoMaterial      *saveMaterials[4], *removalMaterial;
    SoTimerSensor   *trickleSensor, *shiftSensor;
    SoAlarmSensor   *removalSensor;
    SbTime          wallClock, fallingClock;
    float           currentFraction, currentRate, skillRates[7], saveRate;
    int             numPieceBlocks, pointsEarned, totalScore, pointsNeeded;
    int             piecePositions[4], numPieceTypes;
    int             standardPosition[3];
    int             *fieldTable;
    int             currentHeight, currentOrientation;
    int             resolution, totalHeight;
    int             numRemovals, removalList[3], skillLevel;

    SbBool 	    isNextPieceEnabled, isBlockBuilt;

    // Geometry creation routines
    void            createFloorAndGrid();
    void 	    buildBlock();
    void	    buildHelpMessage(SoSeparator *root);

    // Gets the basic block shape
    SoSeparator     *getBlock() {return block;}

    void            stopPiece();
    void            endShift();
    void	    pauseGame();
    void	    resumeGame();
    void            getFieldPositions( int numBlocks, int *localPos,
                                       int *fieldPos, int *standard );
    SbBool          validPosition( int numBlocks, int *newPositions,
                                   int *standard );
    SbBool          collision( int numBlocks, int *newPositions );
    void            rotatePiece( int newOrientation );

    // Sensor callback routines for animating the currently falling piece,
    // removing completed rows, and shifting the remaining rows down
    static void     tricklePiece( void *data, SoSensor *sensor );
    static void     removeRows( void *data, SoSensor *sensor );
    static void     shiftRows( void *data, SoSensor *sensor );

    // Event callback routine for handling keyboard events
    static void     handleKeyboard(void *data, SoEventCallback *node);

    // Builds the widget.
    virtual Widget  buildWidget(Widget parent, const char *name);
};

#endif /* _TS_FIELD_ */