Initial commit.
This commit is contained in:
228
code/ff/IFC/ImmCompoundEffect.h
Normal file
228
code/ff/IFC/ImmCompoundEffect.h
Normal file
@@ -0,0 +1,228 @@
|
||||
/**********************************************************************
|
||||
Copyright (c) 1999 - 2000 Immersion Corporation
|
||||
|
||||
Permission to use, copy, modify, distribute, and sell this
|
||||
software and its documentation may be granted without fee;
|
||||
interested parties are encouraged to request permission from
|
||||
Immersion Corporation
|
||||
801 Fox Lane
|
||||
San Jose, CA 95131
|
||||
408-467-1900
|
||||
|
||||
IMMERSION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
||||
IN NO EVENT SHALL IMMERSION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||||
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
||||
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
FILE: ImmCompoundEffect.h
|
||||
|
||||
PURPOSE: Manages Compound Effects for Force Foundation Classes
|
||||
|
||||
STARTED: 2/24/99 by Jeff Mallett
|
||||
|
||||
NOTES/REVISIONS:
|
||||
3/2/99 jrm (Jeff Mallett): Force-->Feel renaming
|
||||
3/15/99 jrm: __declspec(dllimport/dllexport) the whole class
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
|
||||
#include "ImmBaseTypes.h"
|
||||
#include "ImmEffect.h"
|
||||
|
||||
#include "ImmIFR.h"
|
||||
|
||||
#if !defined(__FEELCOMPOUNDEFFECT_H)
|
||||
#define __FEELCOMPOUNDEFFECT_H
|
||||
|
||||
#if _MSC_VER >= 1000
|
||||
#pragma once
|
||||
#endif // _MSC_VER >= 1000
|
||||
|
||||
#ifndef _IFCDLL_
|
||||
#define DLLIFC __declspec(dllimport)
|
||||
#else
|
||||
#define DLLIFC __declspec(dllexport)
|
||||
#endif
|
||||
|
||||
/*
|
||||
** IMM_FFE_FILEEFFECT - struct used by DX7 to read and write to FFE
|
||||
** files. This struct is different from DIFILEEFFECT due to the use
|
||||
** of the non const LPDIEFFECT. An LPDIEFFECT is needed to be able to
|
||||
** collect information from IFC class objects. This should be defined
|
||||
** elsewhere, but no more appropriate header currently exists.
|
||||
*/
|
||||
typedef struct IMM_FFE_FILEEFFECT{
|
||||
DWORD dwSize;
|
||||
GUID GuidEffect;
|
||||
LPDIEFFECT lpDiEffect;
|
||||
CHAR szFriendlyName[MAX_PATH];
|
||||
}IMM_FFE_FILEEFFECT, *LPIMM_FFE_FILEEFFECT;
|
||||
|
||||
//================================================================
|
||||
// CImmCompoundEffect
|
||||
//================================================================
|
||||
// Represents a compound effect, such as might be created in
|
||||
// Immersion Studio. Contains an array of effect objects.
|
||||
// Methods iterate over component effects, passing the message
|
||||
// to each one.
|
||||
// Also, has stuff for being used by CImmProject:
|
||||
// * next pointer so can be put on a linked list
|
||||
// * force name
|
||||
|
||||
//
|
||||
// ------ PUBLIC INTERFACE ------
|
||||
//
|
||||
|
||||
class DLLIFC CImmCompoundEffect
|
||||
{
|
||||
//
|
||||
// CONSTRUCTOR/DESTRUCTOR
|
||||
//
|
||||
|
||||
public://### protected:
|
||||
// Constructs a CImmCompoundEffect
|
||||
// Don't try to construct a CImmCompoundEffect yourself.
|
||||
// Instead let CImmProject construct it for you.
|
||||
CImmCompoundEffect(
|
||||
IFREffect **hEffects,
|
||||
long nEffects,
|
||||
LPCSTR pEffectName
|
||||
);
|
||||
|
||||
public:
|
||||
|
||||
~CImmCompoundEffect();
|
||||
|
||||
|
||||
//
|
||||
// ATTRIBUTES
|
||||
//
|
||||
|
||||
public:
|
||||
|
||||
long
|
||||
GetNumberOfContainedEffects() const
|
||||
{ return m_nEffects; }
|
||||
|
||||
const char *
|
||||
GetName() const
|
||||
{ return m_lpszName; }
|
||||
|
||||
GENERIC_EFFECT_PTR
|
||||
GetContainedEffect(
|
||||
long index
|
||||
);
|
||||
|
||||
GENERIC_EFFECT_PTR
|
||||
GetContainedEffect(
|
||||
LPCSTR lpszEffectName
|
||||
);
|
||||
|
||||
DWORD
|
||||
GetEffectType();
|
||||
|
||||
//
|
||||
// OPERATIONS
|
||||
//
|
||||
|
||||
public:
|
||||
|
||||
// Start all the contained effects
|
||||
BOOL Start(
|
||||
DWORD dwIterations = IMM_EFFECT_DONT_CHANGE,
|
||||
DWORD dwFlags = 0
|
||||
);
|
||||
|
||||
// Stop all the contained effects
|
||||
BOOL Stop();
|
||||
|
||||
|
||||
//
|
||||
// ------ PRIVATE INTERFACE ------
|
||||
//
|
||||
|
||||
//
|
||||
// HELPERS
|
||||
//
|
||||
|
||||
protected:
|
||||
|
||||
BOOL initialize(
|
||||
CImmDevice* pDevice,
|
||||
IFREffect **hEffects,
|
||||
DWORD dwNoDownload
|
||||
);
|
||||
|
||||
BOOL
|
||||
set_contained_effect(
|
||||
GENERIC_EFFECT_PTR pObject,
|
||||
int index = 0
|
||||
);
|
||||
|
||||
BOOL
|
||||
set_name(
|
||||
const char *lpszName
|
||||
);
|
||||
|
||||
void
|
||||
set_next(
|
||||
CImmCompoundEffect *pNext
|
||||
)
|
||||
{ m_pNext = pNext; }
|
||||
|
||||
CImmCompoundEffect *
|
||||
get_next() const
|
||||
{ return m_pNext; }
|
||||
|
||||
void
|
||||
set_objID(
|
||||
GUID* pobjID
|
||||
)
|
||||
{ m_objID = *pobjID; }
|
||||
|
||||
BOOL
|
||||
set_contained_obj_IDs(
|
||||
GUID *guidList
|
||||
);
|
||||
|
||||
int
|
||||
buffer_ifr_object(TCHAR* pData);
|
||||
|
||||
BOOL
|
||||
get_ffe_object(LPIMM_FFE_FILEEFFECT pffeObject);
|
||||
|
||||
|
||||
//
|
||||
// FRIENDS
|
||||
//
|
||||
|
||||
public:
|
||||
|
||||
friend class CImmProject;
|
||||
|
||||
|
||||
//
|
||||
// INTERNAL DATA
|
||||
//
|
||||
|
||||
protected:
|
||||
|
||||
GENERIC_EFFECT_PTR *m_paEffects; // Array of force class object pointers
|
||||
long m_nEffects; // Number of effects in m_paEffects
|
||||
|
||||
private:
|
||||
|
||||
char *m_lpszName; // Name of the compound effect
|
||||
GUID m_objID;
|
||||
GUID *m_pContainedObjIDs;
|
||||
CImmCompoundEffect *m_pNext; // Next compound effect in the project
|
||||
#ifdef PROTECT_AGAINST_DELETION
|
||||
CImmProject *m_pOwningProject;
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user