| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 'use strict';
- var game = Atomic.game;
- var view = game.uiView;
- var UI = Atomic.UI;
- var UIWindow = Atomic.UIWindow;
- var window;
- function closeWindow() {
- if (window)
- window.die();
- window = null;
- }
- exports.init = function(onClose) {
- window = new UIWindow();
- window.settings = UI.WINDOW_SETTINGS_TITLEBAR;
- window.text = "About Atomic Space Game";
- window.load("UI/about.ui.txt");
- window.resizeToFitContent();
- view.addChild(window);
- window.center();
- var file = game.cache.getFile("UI/about.txt");
- var text = file.readText();
- text = text.replace("$Platform", Atomic.platform);
- window.getWidget("about_text").text = text ;
- window.getWidget("ok").onClick = function () {
- closeWindow();
- onClose();
- };
- };
- exports.shutdown = function() {
- closeWindow();
- };
|