From 606bab37aba7dee74e17f9687a02e5806205249a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=A1k?= <novako19@fel.cvut.cz> Date: Sat, 7 Apr 2018 23:48:44 +0200 Subject: [PATCH] Add script to launch Robocode --- robocode.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 robocode.sh diff --git a/robocode.sh b/robocode.sh new file mode 100755 index 0000000..d4acc29 --- /dev/null +++ b/robocode.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# +# Copyright (c) 2001-2017 Mathew A. Nelson and Robocode contributors +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://robocode.sourceforge.net/license/epl-v10.html +# + +wd=`pwd` +cd "${0%/*}/resources/robocode" +pwd +java -Xss515m -DNOSECURITY=true -Xmx512M -cp libs/robocode.jar -XX:+IgnoreUnrecognizedVMOptions "--add-opens=java.base/sun.net.www.protocol.jar=ALL-UNNAMED" "--add-opens=java.base/java.lang.reflect=ALL-UNNAMED" "--add-opens=java.desktop/sun.awt=ALL-UNNAMED" robocode.Robocode $* +cd "${wd}" -- GitLab