allow pybullet to connect to GRPC server. (need to use flag --enable_grpc in premake build system)
add grpcPlugin, it can work in GUI, SHARED_MEMORY_SERVER, DIRECT and other modes.
example script to start server from pybullet:
import pybullet as p
p.connect(p.GUI)
#if statically linked plugin
id = p.loadPlugin("grpcPlugin")
#dynamics loading the plugin
#id = p.loadPlugin("E:/develop/bullet3/bin/pybullet_grpcPlugin_vs2010_x64_debug.dll", postFix="_grpcPlugin")
#start the GRPC server at hostname, port
if (id>=0):
p.executePluginCommand(id, "localhost:1234")
Only in DIRECT mode, since there is no 'ping' you need to call to handle RCPs:
numRPC = 10
while (1):
p.executePluginCommand(id, intArgs=[numRPC])
This commit is contained in:
@@ -2397,9 +2397,9 @@ B3_SHARED_API void b3CustomCommandExecutePluginCommand(b3SharedMemoryCommandHand
|
||||
command->m_customCommandArgs.m_arguments.m_numFloats = 0;
|
||||
command->m_customCommandArgs.m_arguments.m_text[0] = 0;
|
||||
|
||||
int len = strlen(textArguments);
|
||||
int len = textArguments ? strlen(textArguments) : 0;
|
||||
|
||||
if (len<MAX_FILENAME_LENGTH)
|
||||
if (len && len<MAX_FILENAME_LENGTH)
|
||||
{
|
||||
strcpy(command->m_customCommandArgs.m_arguments.m_text, textArguments);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user