/* THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE. COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. */ /* * $Source: /cvs/cvsroot/d2x/3d/instance.c,v $ * $Revision: 1.1.1.1 $ * $Author: bradleyb $ * $Date: 2001-01-19 03:29:58 $ * * Instancing routines * * $Log: not supported by cvs2svn $ * Revision 1.1.1.1 1999/06/14 21:57:45 donut * Import of d1x 1.37 source. * * Revision 1.2 1995/06/12 12:36:57 allender * fixed bug where g3_start_instance_angles recursively called itself * * Revision 1.1 1995/05/05 08:51:27 allender * Initial revision * * Revision 1.1 1995/04/17 06:43:29 matt * Initial revision * * */ #ifdef RCS static char rcsid[] = "$Id: instance.c,v 1.1.1.1 2001-01-19 03:29:58 bradleyb Exp $"; #endif #include #include #include "error.h" #include "fix.h" #include "vecmat.h" #include "gr.h" #include "3d.h" #include "globvars.h" #define MAX_INSTANCE_DEPTH 5 struct instance_context { vms_matrix m; vms_vector p; } instance_stack[MAX_INSTANCE_DEPTH]; int instance_depth = 0; //instance at specified point with specified orientation //if matrix==NULL, don't modify matrix. This will be like doing an offset void g3_start_instance_matrix(vms_vector *pos,vms_matrix *orient) { vms_vector tempv; vms_matrix tempm,tempm2; #ifdef D1XD3D Win32_start_instance_matrix (pos, orient); #endif Assert(instance_depth= 0); View_position = instance_stack[instance_depth].p; View_matrix = instance_stack[instance_depth].m; }