initial version by Eric
This commit is contained in:
419
bepascal/bepascal/be/device/Joystick.cpp
Normal file
419
bepascal/bepascal/be/device/Joystick.cpp
Normal file
@@ -0,0 +1,419 @@
|
||||
/* BePascal - A pascal wrapper around the BeOS API
|
||||
Copyright (C) 2002 Eric Jourde
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 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
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef _JOYSTICK_CPP_
|
||||
#define _JOYSTICK_CPP_
|
||||
|
||||
|
||||
#include "Joystick.h"
|
||||
|
||||
#include <beobj.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Method: BJoystick::BJoystick()
|
||||
* Descr:
|
||||
*/
|
||||
TCPlusObject BJoystick_Create()
|
||||
{
|
||||
return new BJoystick();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::~BJoystick()
|
||||
* Descr:
|
||||
*/
|
||||
void BJoystick_Free(BJoystick *Joystick)
|
||||
{
|
||||
delete Joystick;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::Open()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_Open(BJoystick *Joystick, const char *portName)
|
||||
{
|
||||
return Joystick->Open(portName);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::Open()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_Open_1
|
||||
(BJoystick *Joystick, const char *portName,
|
||||
bool enter_enhanced)
|
||||
{
|
||||
return Joystick->Open(portName,
|
||||
enter_enhanced);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::Close()
|
||||
* Descr:
|
||||
*/
|
||||
void
|
||||
BJoystick_Close(BJoystick *Joystick)
|
||||
{
|
||||
Joystick->Close();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::Update()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_Update(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->Update();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::SetMaxLatency()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_SetMaxLatency(BJoystick *Joystick, bigtime_t max_latency)
|
||||
{
|
||||
return Joystick->SetMaxLatency(max_latency);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::CountDevices()
|
||||
* Descr:
|
||||
*/
|
||||
int32
|
||||
BJoystick_CountDevices(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->CountDevices();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetDeviceName()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetDeviceName(BJoystick *Joystick, int32 n,
|
||||
char *name,
|
||||
size_t bufSize)
|
||||
{
|
||||
return Joystick->GetDeviceName(n,
|
||||
name,
|
||||
bufSize);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::EnterEnhancedMode()
|
||||
* Descr:
|
||||
*/
|
||||
bool
|
||||
BJoystick_EnterEnhancedMode(BJoystick *Joystick, const entry_ref *ref)
|
||||
{
|
||||
return Joystick->EnterEnhancedMode(ref);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::CountSticks()
|
||||
* Descr:
|
||||
*/
|
||||
int32
|
||||
BJoystick_CountSticks(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->CountSticks();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::CountAxes()
|
||||
* Descr:
|
||||
*/
|
||||
int32
|
||||
BJoystick_CountAxes(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->CountAxes();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::CountHats()
|
||||
* Descr:
|
||||
*/
|
||||
int32
|
||||
BJoystick_CountHats(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->CountHats();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::CountButtons()
|
||||
* Descr:
|
||||
*/
|
||||
int32
|
||||
BJoystick_CountButtons(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->CountButtons();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetAxisValues()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetAxisValues(BJoystick *Joystick, int16 *out_values,
|
||||
int32 for_stick)
|
||||
{
|
||||
return Joystick->GetAxisValues(out_values,
|
||||
for_stick);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetHatValues()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetHatValues(BJoystick *Joystick, uint8 *out_hats,
|
||||
int32 for_stick)
|
||||
{
|
||||
return Joystick->GetHatValues(out_hats,
|
||||
for_stick);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::ButtonValues()
|
||||
* Descr:
|
||||
*/
|
||||
uint32
|
||||
BJoystick_ButtonValues(BJoystick *Joystick, int32 for_stick)
|
||||
{
|
||||
return Joystick->ButtonValues(for_stick);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetAxisNameAt()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetAxisNameAt(BJoystick *Joystick, int32 index,
|
||||
BString *out_name)
|
||||
{
|
||||
return Joystick->GetAxisNameAt(index,
|
||||
out_name);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetHatNameAt()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetHatNameAt(BJoystick *Joystick, int32 index,
|
||||
BString *out_name)
|
||||
{
|
||||
return Joystick->GetHatNameAt(index,
|
||||
out_name);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetButtonNameAt()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetButtonNameAt(BJoystick *Joystick, int32 index,
|
||||
BString *out_name)
|
||||
{
|
||||
return Joystick->GetButtonNameAt(index,
|
||||
out_name);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetControllerModule()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetControllerModule(BJoystick *Joystick, BString *out_name)
|
||||
{
|
||||
return Joystick->GetControllerModule(out_name);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::GetControllerName()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_GetControllerName(BJoystick *Joystick, BString *out_name)
|
||||
{
|
||||
return Joystick->GetControllerName(out_name);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::IsCalibrationEnabled()
|
||||
* Descr:
|
||||
*/
|
||||
bool
|
||||
BJoystick_IsCalibrationEnabled(BJoystick *Joystick)
|
||||
{
|
||||
return Joystick->IsCalibrationEnabled();
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::EnableCalibration()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BJoystick_EnableCalibration(BJoystick *Joystick, bool calibrates)
|
||||
{
|
||||
return Joystick->EnableCalibration(calibrates);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BJoystick::Calibrate()
|
||||
* Descr:
|
||||
*/
|
||||
/*
|
||||
void
|
||||
BJoystick_Calibrate(BJoystick *Joystick, struct _extended_joystick *reading)
|
||||
{
|
||||
Joystick->Calibrate(reading);
|
||||
}
|
||||
|
||||
*/
|
||||
/*
|
||||
* Method: BJoystick::gather_enhanced_info()
|
||||
* Descr:
|
||||
*/
|
||||
/*status_t
|
||||
BJoystick_gather_enhanced_info(BJoystick *Joystick, const entry_ref *ref)
|
||||
{
|
||||
return Joystick->gather_enhanced_info(ref);
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::save_config()
|
||||
* Descr:
|
||||
*/
|
||||
/*status_t
|
||||
BJoystick_save_config(BJoystick *Joystick, const entry_ref *ref)
|
||||
{
|
||||
return Joystick->save_config(ref);
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::_ReservedJoystick1()
|
||||
* Descr:
|
||||
*/
|
||||
/*void
|
||||
BJoystick__ReservedJoystick1(BJoystick *Joystick)
|
||||
{
|
||||
Joystick->_ReservedJoystick1();
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::_ReservedJoystick2()
|
||||
* Descr:
|
||||
*/
|
||||
/*void
|
||||
BJoystick__ReservedJoystick2(BJoystick *Joystick)
|
||||
{
|
||||
Joystick->_ReservedJoystick2();
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::_ReservedJoystick3()
|
||||
* Descr:
|
||||
*/
|
||||
/*void
|
||||
BJoystick__ReservedJoystick3(BJoystick *Joystick)
|
||||
{
|
||||
Joystick->_ReservedJoystick3();
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::_Reserved_Joystick_4()
|
||||
* Descr:
|
||||
*/
|
||||
/*status_t
|
||||
BJoystick__Reserved_Joystick_4(BJoystick *Joystick, void *,
|
||||
...)
|
||||
{
|
||||
return Joystick->_Reserved_Joystick_4(,
|
||||
);
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::_Reserved_Joystick_5()
|
||||
* Descr:
|
||||
*/
|
||||
/*status_t
|
||||
BJoystick__Reserved_Joystick_5(BJoystick *Joystick, void *,
|
||||
...)
|
||||
{
|
||||
return Joystick->_Reserved_Joystick_5(,
|
||||
);
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
* Method: BJoystick::_Reserved_Joystick_6()
|
||||
* Descr:
|
||||
*/
|
||||
/*status_t
|
||||
BJoystick__Reserved_Joystick_6(BJoystick *Joystick, void *,
|
||||
...)
|
||||
{
|
||||
return Joystick->_Reserved_Joystick_6(,
|
||||
);
|
||||
}
|
||||
*/
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _JOYSTICK_CPP_ */
|
||||
220
bepascal/bepascal/be/device/Joystick.pp
Normal file
220
bepascal/bepascal/be/device/Joystick.pp
Normal file
@@ -0,0 +1,220 @@
|
||||
{ BePascal - A pascal wrapper around the BeOS API
|
||||
Copyright (C) 2002 Eric Jourde
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 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
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
}
|
||||
unit joystick;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
beobj, SupportDefs, os;
|
||||
|
||||
type
|
||||
TJoystick = class(TBeObject)
|
||||
private
|
||||
public
|
||||
constructor Create; override;
|
||||
destructor Destroy; override;
|
||||
function Open(portName : PChar) : TStatus_t;
|
||||
procedure Close;
|
||||
function Open_1(portName : PChar; enter_enhanced : boolean):TStatus_t;
|
||||
|
||||
function Update: TStatus_t;
|
||||
function SetMaxLatency( max_latency:TBigtime_t): TStatus_t;
|
||||
function CountDevices : Cardinal;
|
||||
function GetDeviceName( n : Integer; name : PChar; bufSize: Tsize_t): TStatus_t;
|
||||
|
||||
function CountSticks: Cardinal;
|
||||
function CountAxes:Cardinal;
|
||||
function CountHats:Cardinal;
|
||||
function CountButtons:Cardinal;
|
||||
function GetAxisValues( out_values : Integer; for_stick : cardinal): TStatus_t;
|
||||
function ButtonValues(for_stick: cardinal):Cardinal;
|
||||
function IsCalibrationEnabled:boolean;
|
||||
function EnableCalibration (calibrates : boolean): TStatus_t;
|
||||
|
||||
//function BJoystick_EnterEnhancedMode(BAObject : TCPlusObject; const entry_ref *ref): Boolean;
|
||||
// function GetAxisNameAt(index: cardinal; BString *out_name): TStatus_t;
|
||||
// function GetHatNameAt( index: cardinal,BString *out_name): TStatus_t;
|
||||
// function GetButtonNameAt( index: cardinal,BString *out_name): TStatus_t; c
|
||||
// function GetControllerModule( BString *out_name): TStatus_t;
|
||||
// function GetControllerName( BString *out_name): TStatus_t;
|
||||
// function GetHatValues( uint8 *out_hats;for_stick: cardinal): TStatus_t;
|
||||
|
||||
end;
|
||||
|
||||
|
||||
|
||||
function BJoystick_Create(AObject : TBeObject) : TCPlusObject; cdecl; external BePascalLibName name 'BJoystick_Create';
|
||||
procedure BJoystick_Free(AObject : TCPlusObject); cdecl; external BePascalLibName name 'BJoystick_Free';
|
||||
|
||||
function BJoystick_Open(AObject : TCPlusObject; portName : PChar):TStatus_t ; cdecl; external BePascalLibName name 'BJoystick_Open';
|
||||
function BJoystick_Open_1(AObject : TCPlusObject; portName : PChar; enter_enhanced : boolean):TStatus_t; cdecl; external BePascalLibName name 'BJoystick_Open_1';
|
||||
procedure BJoystick_Close(AObject : TCPlusObject); cdecl; external BePascalLibName name 'BJoystick_Close';
|
||||
function BJoystick_Update(AObject : TCPlusObject): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_Update';
|
||||
function BJoystick_SetMaxLatency(AObject : TCPlusObject; max_latency:TBigtime_t): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_SetMaxLatency';
|
||||
function BJoystick_CountDevices(AObject : TCPlusObject):Cardinal; cdecl; external BePascalLibName name 'BJoystick_CountDevices';
|
||||
function BJoystick_GetDeviceName(AObject : TCPlusObject; n : Integer; name : PChar; bufSize: Tsize_t): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetDeviceName';
|
||||
|
||||
function BJoystick_CountSticks(BAObject : TCPlusObject): Cardinal; cdecl; external BePascalLibName name 'BJoystick_CountSticks';
|
||||
function BJoystick_CountAxes(BAObject : TCPlusObject):Cardinal; cdecl; external BePascalLibName name 'BJoystick_CountAxes';
|
||||
function BJoystick_CountHats(BAObject : TCPlusObject):Cardinal; cdecl; external BePascalLibName name 'BJoystick_CountHats';
|
||||
function BJoystick_CountButtons(BAObject : TCPlusObject):Cardinal; cdecl; external BePascalLibName name 'BJoystick_CountButtons';
|
||||
function BJoystick_GetAxisValues(BAObject : TCPlusObject; out_values : Integer; for_stick : cardinal): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetAxisValues';
|
||||
function BJoystick_ButtonValues(BAObject : TCPlusObject;for_stick: cardinal):Cardinal; cdecl; external BePascalLibName name 'BJoystick_ButtonValues';
|
||||
function BJoystick_IsCalibrationEnabled(BAObject : TCPlusObject):boolean; cdecl; external BePascalLibName name 'BJoystick_IsCalibrationEnabled';
|
||||
function BJoystick_EnableCalibration(BAObject : TCPlusObject;calibrates : boolean): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_EnableCalibration';
|
||||
|
||||
//function BJoystick_EnterEnhancedMode(BAObject : TCPlusObject; const entry_ref *ref): Boolean; cdecl; external BePascalLibName name 'BJoystick_EnterEnhancedMode';
|
||||
//function BJoystick_GetHatValues(BAObject : TCPlusObject, uint8 *out_hats;for_stick: cardinal): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetHatValues';
|
||||
//function BJoystick_GetAxisNameAt(BAObject : TCPlusObject;index: cardinal; BString *out_name): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetAxisNameAt';
|
||||
//function BJoystick_GetHatNameAt(BAObject : TCPlusObject; index: cardinal, BString *out_name): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetHatNameAt';
|
||||
//function BJoystick_GetButtonNameAt(BAObject : TCPlusObject; index: cardinal,BString *out_name): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetButtonNameAt';
|
||||
//function BJoystick_GetControllerModule(BAObject : TCPlusObject, BString *out_name): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetControllerModule';
|
||||
//function BJoystick_GetControllerName(BAObject : TCPlusObject, BString *out_name): TStatus_t; cdecl; external BePascalLibName name 'BJoystick_GetControllerName';
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
|
||||
|
||||
constructor TJoystick.Create;
|
||||
begin
|
||||
inherited;
|
||||
CPlusObject := BJoystick_Create(Self);
|
||||
end;
|
||||
|
||||
destructor TJoystick.Destroy;
|
||||
begin
|
||||
if CPlusObject <> nil then
|
||||
BJoystick_Free(CPlusObject);
|
||||
inherited;
|
||||
end;
|
||||
|
||||
|
||||
function TJoystick.Open(portName : PChar) : TStatus_t;
|
||||
begin
|
||||
result := BJoystick_Open(CPlusObject, portName);
|
||||
end;
|
||||
|
||||
function TJoystick.Open_1( portName : PChar; enter_enhanced : boolean):TStatus_t;
|
||||
begin
|
||||
result := BJoystick_Open_1(CPlusObject, portName , enter_enhanced);
|
||||
end;
|
||||
|
||||
|
||||
procedure TJoystick.Close;
|
||||
begin
|
||||
BJoystick_Close(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.Update: TStatus_t;
|
||||
begin
|
||||
result:=BJoystick_Update(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.SetMaxLatency(max_latency:TBigtime_t): TStatus_t;
|
||||
begin
|
||||
result:=BJoystick_SetMaxLatency(CPlusObject, max_latency);
|
||||
end;
|
||||
|
||||
function TJoystick.CountDevices :Cardinal;
|
||||
begin
|
||||
result:=BJoystick_CountDevices(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.GetDeviceName( n : Integer; name : PChar; bufSize: Tsize_t): TStatus_t;
|
||||
begin
|
||||
result:=BJoystick_GetDeviceName(CPlusObject, n, name, bufSize );
|
||||
end;
|
||||
|
||||
//function BJoystick_EnterEnhancedMode(BAObject : TCPlusObject; const entry_ref *ref): Boolean;
|
||||
|
||||
function TJoystick.CountSticks: Cardinal;
|
||||
begin
|
||||
result:=BJoystick_CountSticks(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.CountAxes:Cardinal;
|
||||
begin
|
||||
result:=BJoystick_CountAxes(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.CountHats:Cardinal;
|
||||
begin
|
||||
result:=BJoystick_CountHats(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.CountButtons:Cardinal;
|
||||
begin
|
||||
result:=BJoystick_CountButtons(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.GetAxisValues( out_values : Integer; for_stick : cardinal): TStatus_t;
|
||||
begin
|
||||
result:=BJoystick_GetAxisValues(CPlusObject, out_values, for_stick);
|
||||
end;
|
||||
|
||||
//function TJoystick.GetHatValues( uint8 *out_hats ; for_stick: cardinal): TStatus_t;
|
||||
//begin
|
||||
// result:=BJoystick_GetHatValues( out_hats,for_stick);
|
||||
//end;
|
||||
|
||||
function TJoystick.ButtonValues(for_stick: cardinal):Cardinal;
|
||||
begin
|
||||
result:=BJoystick_ButtonValues(CPlusObject,for_stick);
|
||||
end;
|
||||
|
||||
//function TJoystick.GetAxisNameAt(index: cardinal; BString *out_name): TStatus_t;
|
||||
//begin
|
||||
// result:=BJoystick_GetAxisNameAt(CPlusObject,index,out_name);
|
||||
//end;
|
||||
|
||||
//function TJoystick.GetHatNameAt( index: cardinal,BString *out_name): TStatus_t;
|
||||
//begin
|
||||
// result:=BJoystick_GetHatNameAt(CPlusObject, index,out_name);
|
||||
//end;
|
||||
|
||||
//function TJoystick.GetButtonNameAt( index: cardinal,BString *out_name): TStatus_t;
|
||||
//begin
|
||||
// result:=BJoystick_GetButtonNameAt(CPlusObject, index,out_name);
|
||||
//end;
|
||||
|
||||
//function TJoystick.GetControllerModule( BString *out_name): TStatus_t;
|
||||
//begin
|
||||
// result:=BJoystick_GetControllerModule(CPlusObject, out_name);
|
||||
//end;
|
||||
|
||||
//function TJoystick.GetControllerName( BString: *out_name): TStatus_t;
|
||||
//begin
|
||||
// result:=BJoystick_GetControllerName(CPlusObject, out_name);
|
||||
//end;
|
||||
|
||||
function TJoystick.IsCalibrationEnabled:boolean;
|
||||
begin
|
||||
result:=BJoystick_IsCalibrationEnabled(CPlusObject);
|
||||
end;
|
||||
|
||||
function TJoystick.EnableCalibration( calibrates : boolean): TStatus_t;
|
||||
begin
|
||||
result:=BJoystick_EnableCalibration(CPlusObject, calibrates);
|
||||
end;
|
||||
|
||||
|
||||
end.
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user