/* XLogo4Schools - A Logo Interpreter specialized for use in schools, based on XLogo by Loïc Le Coq * Copyright (C) 2013 Marko Zivkovic * * Contact Information: marko88zivkovic at gmail dot com * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. This program is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. You should have received a copy of the * GNU General Public License along with this program; if not, write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * * * This Java source code belongs to XLogo4Schools, written by Marko Zivkovic * during his Bachelor thesis at the computer science department of ETH Zürich, * in the year 2013 and/or during future work. * * It is a reengineered version of XLogo written by Loïc Le Coq, published * under the GPL License at http://xlogo.tuxfamily.org/ * * Contents of this file were initially written by Loïc Le Coq, * a lot of modifications, extensions, refactorings have been applied by Marko Zivkovic */ /** * Title : XLogo * Description : XLogo is an interpreter for the Logo * programming language * @author Loïc Le Coq */ package xlogo; import javax.media.j3d.VirtualUniverse; import javax.swing.UIManager; import javax.swing.SwingUtilities; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ResourceBundle; import xlogo.storage.WSManager; import xlogo.storage.global.GlobalConfig; import xlogo.storage.workspace.Language; import xlogo.storage.workspace.WorkspaceConfig; import xlogo.gui.welcome.WelcomeScreen; import xlogo.kernel.Primitive; /** * @author loic * *@author Marko - this class generates the language, *displays the welcome screen for workspace and user selection, *and then starts {@link Application} when the user space is entered. */ public class Logo { /** * This ResourceBundle contains all messages for XLogo (menu, errors...) */ public static ResourceBundle messages=null; public static String translationLanguage[]=new String[14]; /** * Welcome screen is always displayed when the application is started. * The user selected a workspace and a user to enter the application. */ private WelcomeScreen welcomeScreen=null; // private Language language; /** * The main methods * @param args The file *.lgo to load on startup */ public static void main(String[] args) { try{ // Display the java3d version java.util.Map map=VirtualUniverse.getProperties(); System.out.println("Java3d :"+map.get("j3d.version")); } catch(Exception e){ System.out.println("Java3d problem"); e.printStackTrace(); } try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch(Exception e) { e.printStackTrace(); } //Recuperer les fichiers de démarrage correspondant au double clic de souris // ou au lancement en ligne de commande GlobalConfig gc = WSManager.getInstance().getGlobalConfigInstance(); for(int i=0;i