Oxygen Basic
Programming => Problems & Solutions => Topic started by: Alex_Longard on July 12, 2018, 04:12:21 AM
-
Hello all!
Help me please!
I'am translate Steinberg VST2 sdk to O2 and have some problems, because I do not know well C.
How to write this code in O2:
typedef VstIntPtr (VSTCALLBACK *audioMasterCallback) (AEffect* effect, VstInt32 opcode, VstInt32 index, VstIntPtr value, void* ptr, float opt);
PS: vstint32 - int, vstintptr - pointer.
Thanks in advance!
-
Hi Alex,
This is all new to me.
In the context of creating a VST host which I'm assuming is cdecl:
'http://teragonaudio.com/article/How-to-make-your-own-VST-host.html
'typedef VstIntPtr (VSTCALLBACK *audioMasterCallback) (
' AEffect* effect,
' VstInt32 opcode,
' VstInt32 index,
' VstIntPtr value,
' void* ptr,
' float opt);
extern cdecl
function HostCallback (
=====================
AEffect* effect,
VstInt32 opcode,
VstInt32 index,
VstIntPtr value,
void* ptr,
float opt
) as sys, callback
...
end function
end extern
...
'@HostCallback
string vstPath="..." 'specify pathname
sys VST=LoadLibrary(vstPath)
sys p=GetProcAddress(VST,"VSTPluginMain")
sys plugin = call p(@HostCallback) 'passing address of your main callback
...
I hope this helps
-
Hello Charles!
Thanks for your code.
I try to write vst plugin in Oxygen, i have some ideas for write this, only i not translate "AudioMasterCallback" and "Dispatcher" functions.
In attached file assembler test plugin written on Fasm.
-
Hi Charles!
It's possible to make function as field in structure?
For example:
Type mytype
int a
int b
Function myfunc(int a, int b)
return a+b
End Function
End Type
-
Hi Alex,
This is the simplest form of o2 OOP:
class mytype
int a
int b
Function myfunc() as int
return a+b
End Function
end class
mytype t
t.a=1
t.b=2
print t.myfunc()
-
Good morning Charles,
Thanks for your code, i will try this.
-
Hi Charles!
Help me please:)
If i write in Oxygen my code in C style, this not work and show errors...
#include "inc\msvcrt.inc"
#define effVendorName 1
struct AEffect
{
int* (*dispatcher) (struct AEffect*, int, int, int*, void*, float);
};
int* dispatcher(AEffect *effect, int index, int opcode, int *value, void* ptr, float opt);
{
switch (opcode)
{
case effVendorName:
strncpy((char*)ptr, "Alexey Longard", 20);
}
...
}
AEffect* VSTPluginMain()
{
AEffect *effect = (AEffect*) malloc(sizeof(AEffect));
memset(effect, 0, sizeof(AEffect));
effect->dispatcher = @dispatcher;
return effect;
}
Thanks in advance!!!
Happy Merry Christmas and happy New Year!
Cheers.
-
Merry Christmas Alex,
I assume this code is part of a DLL. This is one way to do it without the heavy C type-casting:
'12:01 26/12/2019
'#include "inc\msvcrt.inc"
uses msvcrt
extern
#define effVendorName 1
type AEffect
sys pDispatcher
end type
function dispatcher(AEffect*effect,int index, int opcode, int *value, sys pt, float opt) as int*
switch (opcode)
case effVendorName:
copy (pt, "Alexey Longard", 20)
end switch
...
end function
function VSTPluginMain() as AEffect*, export
AEffect *effect
@effect = malloc(sizeof(AEffect))
memset(@effect, 0, sizeof(AEffect))
effect.pdispatcher = @dispatcher
return @effect
end function
-
Very big thanks Charles!!!
I will try to test it.