summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/nodes/eventlocatornode.cpp
blob: ff2c620d61f1e594cf7ad6c1e036374201dc5efb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
//=============================================================================
// Copyright (C) 2002 Radical Entertainment Ltd.  All rights reserved.
//
// File:        EventLocatorNode.cpp
//
// Description: Implement EventLocatorNode
//
// History:     16/05/2002 + Created -- Cary Brisebois
//
//=============================================================================

//========================================
// System Includes
//========================================
#include "main/toolhack.h"
#include <toollib.hpp>

//========================================
// Project Includes
//========================================
#include "EventLocatorNode.h"
#include "main/constants.h"
#include "main/worldbuilder.h"
#include "utility/glext.h"
#include "utility/mext.h"
#include "utility/nodehelper.h"

#include "nodes/triggervolumenode.h"

#include "resources/resource.h"

#include "../../../game/code/meta/locatorevents.h"
#include "../../../game/code/meta/locatortypes.h"

#include "utility/transformmatrix.h"

//******************************************************************************
//
// Global Data, Local Data, Local Classes
//
//******************************************************************************
MTypeId EventLocatorNode::id( WBConstants::TypeIDPrefix, WBConstants::NodeIDs::EventLocator );
const char* EventLocatorNode::stringId = "EventLocatorNode";

const int EventLocatorNode::ACTIVE_COLOUR = 15;
const int EventLocatorNode::INACTIVE_COLOUR = 12;
const float EventLocatorNode::SCALE = 1.0f * WBConstants::Scale;

const char* EventLocatorNode::TRIGGERS_NAME_SHORT   = "trigs";
const char* EventLocatorNode::TRIGGERS_NAME_LONG    = "triggers";
MObject EventLocatorNode::sTriggers;

const char* EventLocatorNode::EVENT_NAME_SHORT = "e";
const char* EventLocatorNode::EVENT_NAME_LONG = "event";
MObject EventLocatorNode::sEvent;

const char* EventLocatorNode::EXTRA_NAME_SHORT = "ex";
const char* EventLocatorNode::EXTRA_NAME_LONG = "extraData";
MObject EventLocatorNode::sExtraData;

char EventLocatorNode::sNewName[MAX_NAME_LEN];

//******************************************************************************
//
// Callbacks
//
//******************************************************************************

BOOL CALLBACK EventLocatorNameCallBack( HWND hWnd, UINT uMsg, UINT wParam, long lParam )
{
    switch (uMsg)
    {
    case WM_INITDIALOG:
        {
            SetDlgItemText( hWnd, IDC_EDIT2, WorldBuilder::GetPrefix() );
            return true;
        }
        break;
    case WM_COMMAND:
        {
            if ( LOWORD(wParam) == IDC_BUTTON1 || LOWORD(wParam) == IDOK )
            {
                //Get the entry in the text field.
                char name[EventLocatorNode::MAX_NAME_LEN];
                GetDlgItemText( hWnd, IDC_EDIT1, name, EventLocatorNode::MAX_NAME_LEN );

                if ( strcmp(name, "") == 0 )
                {
                    MExt::DisplayWarning("You must input a new name for the Event Locator!");
                    return false;
                }

                MString newName( WorldBuilder::GetPrefix() );
                newName += MString( name );
                
                EventLocatorNode::SetNewName( newName.asChar() );
                EndDialog( hWnd, 0 );  //this is how you close the window.                
                return true;
            }
            else if( LOWORD(wParam) == IDCANCEL )
            {
                EventLocatorNode::SetNewName( "" );
                EndDialog( hWnd, 0 );  //this is how you close the window.                
                return true;
            }

            return false;
        }
        break;
    default:
        {
            return false;
        }
        break;
    }
}


//******************************************************************************
//
// Public Member Functions
//
//******************************************************************************

//==============================================================================
// EventLocatorNode::EventLocatorNode
//==============================================================================
// Description: Constructor.
//
// Parameters:	None.
//
// Return:      N/A.
//
//==============================================================================
EventLocatorNode::EventLocatorNode()
{
}

//==============================================================================
// EventLocatorNode::~EventLocatorNode
//==============================================================================
// Description: Destructor.
//
// Parameters:	None.
//
// Return:      N/A.
//
//==============================================================================
EventLocatorNode::~EventLocatorNode()
{
}

//=============================================================================
// EventLocatorNode::creator
//=============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      void
//
//=============================================================================
void* EventLocatorNode::creator()
{
    return new EventLocatorNode();
}

//=============================================================================
// EventLocatorNode::draw
//=============================================================================
// Description: Comment
//
// Parameters:  ( M3dView& view, const MDagPath& path, M3dView::DisplayStyle displayStyle, M3dView::DisplayStatus displayStatus )
//
// Return:      void 
//
//=============================================================================
void EventLocatorNode::draw( M3dView& view, 
                             const MDagPath& path, 
                             M3dView::DisplayStyle displayStyle, 
                             M3dView::DisplayStatus displayStatus )
{
    if ( WorldBuilder::GetDisplayLevel() & WorldBuilder::EVENT_LOCATORS )
    {
        view.beginGL();
        glPushAttrib( GL_CURRENT_BIT | GL_LINE_BIT | GL_POLYGON_BIT );


        //When we are in render mode, we draw the lines between the nodes.
        //If this was in GL_SELECTION_MODE, we would not draw the lines, so they won't interfere
        //with selection.
        GLint value;
        glGetIntegerv( GL_RENDER_MODE, &value );

        //Draw things here we don't want selectable.
        if ( (value == GL_RENDER) )
        {
            MPlugArray sources, targets;
            MFnDagNode fnNode( thisMObject() );
            MPlug triggersPlug = fnNode.findPlug( sTriggers );
            MExt::ResolveConnections( &sources, &targets, triggersPlug, true, false );

            //Need to undo funny transformations...
            MMatrix mat;
            mat.setToIdentity();

            MObject transform;
            transform = fnNode.parent( 0 );
            MFnDependencyNode transNode( transform );
            MDagPath transPath;
            MExt::FindDagNodeByName( &transPath, transNode.name() );
            MFnTransform fnTransform( transPath );

            mat = fnTransform.transformationMatrix();

            mat = mat.inverse();

            MPoint triggerWP, thisWP;
            MExt::GetWorldPosition( &thisWP, thisMObject() );
            
            unsigned int i;
            for ( i = 0; i < targets.length(); ++i )
            {
                //Draw a box around the source trigger volume.
                MExt::GetWorldPosition( &triggerWP, sources[i].node() );

                MPoint triggerLP;
                triggerLP = triggerWP; // - thisWP;

                triggerLP *= mat;

                view.setDrawColor( 8, M3dView::kActiveColors );

                GLExt::drawLine( MPoint(0,0,0), triggerLP, 5.0f );                
            }
        }

        if ( displayStatus == M3dView::kDormant ) 
        {
            int colour = NodeHelper::OverrideNodeColour( thisMObject(), INACTIVE_COLOUR );

	        view.setDrawColor( colour, M3dView::kDormantColors );
        }  
        else
        {
	        view.setDrawColor( ACTIVE_COLOUR, M3dView::kActiveColors );
        }

        //Draw a star to represent the locator.
        GLExt::drawCrossHair3D( SCALE, 0,0,0, 5.0 );
        GLExt::drawPyramid( SCALE, 0,0,0, 5.0 );
        GLExt::drawE( SCALE, 0,1,0, 5.0 );

        MFnDagNode fnNode( thisMObject() );
        int event;
        fnNode.findPlug( sEvent ).getValue( event );

        if ( event == LocatorEvent::DEATH || 
             event == LocatorEvent::WHACKY_GRAVITY ||
             event == LocatorEvent::CHECK_POINT )
        {
            GLExt::drawArrow( MPoint( 0, 0, 0 ), MPoint( 0, 0, -1 * WBConstants::Scale ), 5.0 );
        }

        glPopAttrib();
        view.endGL();
    }
}

//=============================================================================
// EventLocatorNode::initialize
//=============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      MStatus 
//
//=============================================================================
MStatus EventLocatorNode::initialize()
{
    MFnMessageAttribute msgAttr;
    MStatus status;

    sTriggers = msgAttr.create( TRIGGERS_NAME_LONG, TRIGGERS_NAME_SHORT, &status );
    RETURN_STATUS_ON_FAILURE( status );
    RETURN_STATUS_ON_FAILURE( msgAttr.setReadable( false ) );
    RETURN_STATUS_ON_FAILURE( msgAttr.setWritable( true ) );
    RETURN_STATUS_ON_FAILURE( msgAttr.setArray( true ) );
    RETURN_STATUS_ON_FAILURE( msgAttr.setIndexMatters( false ) );

    RETURN_STATUS_ON_FAILURE( addAttribute( sTriggers ) );

    MFnEnumAttribute enumAttr;
    sEvent = enumAttr.create( EVENT_NAME_LONG, EVENT_NAME_SHORT, LocatorEvent::CHECK_POINT, &status );
    RETURN_STATUS_ON_FAILURE( status );
    RETURN_STATUS_ON_FAILURE( enumAttr.setReadable( true ) );
    RETURN_STATUS_ON_FAILURE( enumAttr.setWritable( true ) );

    unsigned int i;
    for ( i = 0; i < LocatorEvent::SPECIAL; ++i )  //This is the part in the 
                                                   //enum where the regular 
                                                   //events end.
    {
        RETURN_STATUS_ON_FAILURE( enumAttr.addField( MString( LocatorEvent::Name[i] ), i ) );
    }

    RETURN_STATUS_ON_FAILURE( addAttribute( sEvent ) );
    
    MFnTypedAttribute typAttr;
    sExtraData = typAttr.create( EXTRA_NAME_LONG, EXTRA_NAME_SHORT, MFnData::kString, &status );
    RETURN_STATUS_ON_FAILURE( status );
    RETURN_STATUS_ON_FAILURE( typAttr.setReadable( true ) );
    RETURN_STATUS_ON_FAILURE( typAttr.setWritable( true ) );
    RETURN_STATUS_ON_FAILURE( addAttribute( sExtraData ) );

    return MStatus::kSuccess;
}

//=============================================================================
// EventLocatorNode::postConstructor
//=============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      void 
//
//=============================================================================
void EventLocatorNode::postConstructor()
{
}

//=============================================================================
// EventLocatorNode::Export
//=============================================================================
// Description: Comment
//
// Parameters:  ( MObject& eventLocatorNode )
//
// Return:      tlDataChunk
//
//=============================================================================
tlDataChunk* EventLocatorNode::Export( MObject& eventLocatorNode )
{
    MFnDagNode fnNode( eventLocatorNode );

    if ( fnNode.typeId() == EventLocatorNode::id )
    {
        //Create a tlDataChunk and return it filled with the appropriate data.
        tlWBLocatorChunk* locator = new tlWBLocatorChunk;

        locator->SetName( fnNode.name().asChar() );

        locator->SetType( LocatorType::EVENT );

        //The data here is the event associated with this locator.
        int event;
        fnNode.findPlug( sEvent ).getValue( event );

        if ( event == static_cast<int>( LocatorEvent::FAR_PLANE ) || 
             event == static_cast<int>( LocatorEvent::GOO_DAMAGE ) ||
             event == static_cast<int>( LocatorEvent::COIN_ZONE ) ||
             event == static_cast<int>( LocatorEvent::CHECK_POINT ) ||
             event == static_cast<int>( LocatorEvent::TRAP ) ||
             event == static_cast<int>( LocatorEvent::LIGHT_CHANGE ) )
        {
            //Add some extra data.
            unsigned long data[2];
            data[0] = event;

            MString extraData;
            fnNode.findPlug( sExtraData ).getValue( extraData );
            assert( extraData.isInt() );
            if ( extraData.isInt() )
            {
                int extra = extraData.asInt();
                memcpy( &data[1], &extra, sizeof(int) );
            } 
            else
            {
                MExt::DisplayWarning( "Event locator: %s has bad extra data, it is probably an old version.(defaulting to 0)", fnNode.name().asChar() );
                data[1] = 0;
            }

            locator->SetDataElements( data, 2 ); 
            locator->SetNumDataElements( 2 );
        }
        else
        {
            //Do the old way.
            unsigned long data = event;
            locator->SetDataElements( &data, 1 );
            locator->SetNumDataElements( 1 ); 
        }

        MPoint thisPosition;
        MExt::GetWorldPosition( &thisPosition, eventLocatorNode );

       //Set the values.
        tlPoint point;

        point[0] = thisPosition[0] / WBConstants::Scale;
        point[1] = thisPosition[1] / WBConstants::Scale;
        point[2] = -thisPosition[2] / WBConstants::Scale;  //Maya vs. P3D...
        locator->SetPosition( point );

        //Make the trigger volumes a sub-chunk of the locator...
        MPlugArray sources, targets;
        MPlug triggersPlug = fnNode.findPlug( sTriggers );
        MExt::ResolveConnections( &sources, &targets, triggersPlug, true, false );

        unsigned int i;
        for ( i = 0; i < sources.length(); ++i )
        {
            tlDataChunk* trigger = TriggerVolumeNode::Export( sources[ i ].node() );
            assert( trigger );

            locator->AppendSubChunk( trigger );
        }

        locator->SetNumTriggers( i );

        if ( event == LocatorEvent::DEATH || 
             event == LocatorEvent::WHACKY_GRAVITY || 
             event == LocatorEvent::CHECK_POINT )
        {
            //Also get the direction.
            MObject transform;
            transform = fnNode.parent( 0 );
            MFnTransform fnTransform( transform );

            MDagPath dagPath;
            MExt::FindDagNodeByName( &dagPath, fnTransform.name() );
            TransformMatrix tm( dagPath );

            tlMatrix hmatrix;
            tm.GetHierarchyMatrixLHS( hmatrix );
            //Make this p3d friendly...
            hmatrix.element[3][0] /= WBConstants::Scale;
            hmatrix.element[3][1] /= WBConstants::Scale;
            hmatrix.element[3][2] /= WBConstants::Scale;
            
            tlExtraMatrixChunk* emChunk = new tlExtraMatrixChunk();
            emChunk->SetMatrix( hmatrix );

            locator->AppendSubChunk( emChunk );
        }
 
        return locator;
    }    

    return NULL;
}

//******************************************************************************
//
// Private Member Functions
//
//******************************************************************************