We are about to switch to a new forum software. Until then we have removed the registration on this forum.
hello #Quark
I have noticed several time instability problems when using the G4P library to generate multiwindows. I'm using G4P builder tool in Processing 3.7. I stripped the code to the bare minimum to narrow down what could generate the error. The code (see below) loads a .obj file, set a .JPG picture as background to main window and rotate the .obj in the main window. It also create an empty window using G4P with P3D randerer.
If the createGUI() line is commented the code runs for hours with no problem. If I uncomment the createGUI() line, the code crash with the error reported below. The behaviour is different depending upon the platform used:
Same behavior if I export the code as .exe. I'm running on both PC Java8.
I really need to get this stable (not many time left to the end of my project...)... Are you aware about that kind of trouble on Windows10 ? any hint to get it stable ?
Appreciate very much your help,
///////////////////// code////////////////////////////////////////////////////////////
import g4p_controls.*;
PShape Arr,Tip, Gr, Rd, Pt;
PShape s;
float Rx, Ry=80, Rz ,mix=0.0001;
PImage bg;
public void setup(){
bg = loadImage("Back.JPG");
bg.resize(500,650);
size(500, 650, P3D);
background(bg);
s = loadShape("wingXstrmUs.obj");
createGUI(); //<<====== this is the problematic line
}
public void draw() {
background(bg);
// generate random angles
Rx=(1-mix)*Rx+mix*radians(random(180));
Ry=(1-mix)*Ry+mix*radians(random(180));
Rz=(1-mix)*Rx+mix*radians(random(180));
// draw the object rotation in the main window
translate(width/2, height/2);
rotateX (Rx);
rotateY(Ry);
rotateZ(Rz);
scale(4, 4, 4);
shape(s, 0, 0);
}
////// Below code generated by G4P builder in the GUI tab to generate the empty window
synchronized public void win_draw1(PApplet appc, GWinData data) { //_CODE_:window1:517716:
appc.background(230);
} //_CODE_:window1:517716:
// Create all the GUI controls.
// autogenerated do not edit
public void createGUI(){
G4P.messagesEnabled(false);
G4P.setGlobalColorScheme(GCScheme.BLUE_SCHEME);
G4P.setCursor(ARROW);
surface.setTitle("Sketch Window");
window1 = GWindow.getWindow(this, "Window title", 0, 0, 500, 650, P3D);
window1.noLoop();
window1.addDrawHandler(this, "win_draw1");
window1.loop();
}
// Variable declarations
// autogenerated do not edit
GWindow window1;
////////////////////////////// Error generated by Processing
JRE version: Java(TM) SE Runtime Environment (8.0_162-b12) (build 1.8.0_162-b12)
#
Could not run the sketch (Target VM failed to initialize). For more information, read revisions.txt and Help ? Troubleshooting
Answers
There is a New forum
Please ask there
https://Discourse.Processing.org/t/g4p-library-crashes-with-multi-window/3791