I am making a Unity project and trying to send float* array
received at BLE (BlueTooth)
at iPhone to C# code
at Unity project.
Those function calls initiated from C# to C++ side to receive data by passing array is quite common. But here, this data transfer is initiated from Objective side to C# when data is received.
I used Plugin to interface to C#.
My Objective C
side has
BLEObject.h, BLEObject.m, UnityBridge.h and UnityBridge.mm
.
UnityBridge is C++ code to interface to C#.
UnityBridge.h has
#ifdef __cplusplus
extern "C" {
#endif
void CallMethod(float* array);
#ifdef __cplusplus
}
#endif
UnityBridge.mm has
#import "UnityBridge.h"
void CallMethod(float* objectName)
{
//some implementation here
}
BLEObject.h has
+(void) sendMessage:(NSData*)floatArray;
BLEObject.m has
+(void) sendMessage:(NSData*)floatArray
{
//I need to convert here NSData* to float array, how?
CallMethod(floatArray);
}
When I receive data from BLE, I call [BLEObject sendMessage:floatArray]
at Objective C side.
Then at C# side,
[DllImport ("__Internal")]
public static extern void CallMethod (float* array);
Then I implement CallMethod as
public static void CallMethod (float* array){
//reading array here
}
Actually this code doesn't work, but this is the flow I like to implement. How can I implement that?
Let me describe how I implement callback from Objective C to C#.
So this
LastCallBack
memorises the function to call back whenever the event happens at Objective C side.On top of BLEObject.m, there is a decalaration.
So whenever, there is an event, you call this
CallMethod()
. Since the last call back function is memorised, it will always go back to the same place you want in C#.Inside C#: You have this
During the initialisation of the C# Object, we call this
So Objective C side knows
That is how I implement
Callback from Objective C going through C++ interface to C# Unity side
.