Hello Guest

[SOLVED] Game Launcher programm.

  • 10 Replies
  • 11353 Views
*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
[SOLVED] Game Launcher programm.
« on: June 15, 2013, 12:30:21 »
Here is my problem : Impossible to make a working a programm who will execute game with process builder ! In effect i wan't to run my game without .bat or IDE !

Here is my process builder problem and code :
I'm getting this JVM Error : "Could not find the main class C:\*************\.brickBroken\app\slick.jar. Program will exit." while trying to launch game by process builder !
Here is my java code :
processCommands represent an array list that is used by the process builder to launch game.
 --PRIVATE--

Can you help me ?
EDIT : In plus don't know why when i use "java" for "javaw" nothing happen !
« Last Edit: June 17, 2013, 15:06:09 by Yuri6037 »

Re: Game Launcher programm.
« Reply #1 on: June 15, 2013, 13:18:47 »
hi,
it's just because of the java runtime classpath syntax : a pathSeparator character must be interleaved between each .jar. Additionally you need enclosing strings "\\\\"" at the beginning of the classpath.
e.g : 
Code: [Select]
processCommands.add("\\\\""+Util.getWorkingDirectory() + File.separator + "app" + File.separator + "slick-util.jar" + pathSeparator);
        processCommands.add(Util.getWorkingDirectory() + File.separator + "app" + File.separator + "slick.jar" + "\\\\"");
cu

*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
Re: Game Launcher programm.
« Reply #2 on: June 16, 2013, 13:05:34 »
Can't type your code : pathSeparator is not defined !

Re: Game Launcher programm.
« Reply #3 on: June 16, 2013, 13:08:25 »
its  File.class I think > File.pathSeparator

*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
Re: Game Launcher programm.
« Reply #4 on: June 16, 2013, 13:14:59 »
pathSeparator is ok but when i add eclosing strings i get this from IntelliJ : Cannot resolve method 'add(java.lang.String, ?, java.lang.String, ?, ?, ?, java.lang.String, ?, ?, ?, java.lang.String, ?, boolean)'

Here is new code :      
--PRIVATE--
« Last Edit: June 17, 2013, 15:03:21 by Yuri6037 »

Re: Game Launcher programm.
« Reply #5 on: June 16, 2013, 13:25:10 »
it may be of the backslash entry. try escaping the string ' " ' character only,  like add(" \" "+ ....)
check your imports. is processcommands a java.util.List ?

*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
Re: Game Launcher programm.
« Reply #6 on: June 16, 2013, 14:31:58 »
Yes.

EDIT : Now i have another JVM error : Could not find the main class fr.brickbroken.client.BrickBroken !
Unfortunatly, this class exists in the jar brickbroken.jar !

EDIT2 : Here is new code :
--PRIVATE--
« Last Edit: June 17, 2013, 15:03:43 by Yuri6037 »

Re: Game Launcher programm.
« Reply #7 on: June 16, 2013, 14:47:30 »
Good.

*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
Re: Game Launcher programm.
« Reply #8 on: June 16, 2013, 17:38:06 »
Not very good ! Launcher doesn't work !

*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
Re: Game Launcher programm.
« Reply #9 on: June 17, 2013, 08:05:34 »
Please, help me !
I don't know why the launcher doesn't work !

*

Offline Yuri6037

  • ***
  • 104
  • Check out our website : http://www.sldt-team.net !
    • SLDT
Re: Game Launcher programm.
« Reply #10 on: June 17, 2013, 15:04:51 »
Thanks for all the launcher is now 100% online ! I can now make the authenthification system.