main.dart 5.74 KB
Newer Older
1 2 3 4 5 6
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:sky/mojo/asset_bundle.dart';
import 'package:sky/theme/colors.dart' as colors;
7
import 'package:sky/rendering/object.dart';
8
import 'package:sky/painting/text_style.dart';
9
import 'package:sky/widgets/basic.dart';
10
import 'package:sky/widgets/button_base.dart';
11
import 'package:sky/widgets/navigator.dart';
12
import 'package:sky/widgets/framework.dart';
13 14 15
import 'package:sky/widgets/task_description.dart';
import 'package:sky/widgets/theme.dart';

16 17
import 'game_demo.dart';
import 'sprites.dart';
18 19 20 21

AssetBundle _initBundle() {
  if (rootBundle != null)
    return rootBundle;
22
  return new NetworkAssetBundle(new Uri.directory(Uri.base.origin));
23 24 25 26 27 28
}

final AssetBundle _bundle = _initBundle();

ImageMap _loader;
SpriteSheet _spriteSheet;
29
SpriteSheet _spriteSheetUI;
30 31 32 33 34 35 36 37 38
GameDemoApp _app;

main() async {
  _loader = new ImageMap(_bundle);

  await _loader.load([
    'assets/nebula.png',
    'assets/sprites.png',
    'assets/starfield.png',
39
    'assets/game_ui.png',
40 41 42 43
  ]);

  String json = await _bundle.loadString('assets/sprites.json');
  _spriteSheet = new SpriteSheet(_loader['assets/sprites.png'], json);
44 45 46 47

  json = await _bundle.loadString('assets/game_ui.json');
  _spriteSheetUI = new SpriteSheet(_loader["assets/game_ui.png"], json);

48 49 50 51 52 53 54
  _app = new GameDemoApp();

  runApp(_app);
}

class GameDemoApp extends App {

55
  NavigationState _navigationState;
56
  GameDemoWorld _game;
57
  int _lastScore = 0;
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

  void initState() {
    _navigationState = new NavigationState([
      new Route(
        name: '/',
        builder: _buildMainScene
      ),
      new Route(
        name: '/game',
        builder: _buildGameScene
      ),
    ]);
    super.initState();
  }

73 74 75 76 77 78 79 80 81 82 83 84
  Widget build() {
    // TODO(viktork): The task bar purple is the wrong purple, we may need
    // a custom theme swatch to match the purples in the sprites.
    ThemeData theme = new ThemeData(
      brightness: ThemeBrightness.light,
      primarySwatch: colors.Purple
    );

    return new Theme(
      data: theme,
      child: new TaskDescription(
        label: 'Asteroids',
85 86 87 88 89 90
        child: new Navigator(_navigationState)
      )
    );
  }

  Widget _buildGameScene(navigator, route) {
91
    return new SpriteWidget(_game);
92 93 94
  }

  Widget _buildMainScene(navigator, route) {
95 96
    return new Stack([
      new SpriteWidget(new MainScreenBackground()),
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
      new Flex([
        new TextureButton(
          onPressed: () {
            _game = new GameDemoWorld(
              _app,
              navigator,
              _loader,
              _spriteSheet,
              _spriteSheetUI,
              (lastScore) {
                setState(() {_lastScore = lastScore;});
              }
            );
            navigator.pushNamed('/game');
          },
          texture: _spriteSheetUI["btn_play_up.png"],
          textureDown: _spriteSheetUI["btn_play_down.png"],
          width: 128.0,
          height: 128.0
        ),
        new Text(
          "Last Score: $_lastScore",
          style: new TextStyle(fontSize:20.0)
        )
      ],
      direction: FlexDirection.vertical,
      justifyContent: FlexJustifyContent.center)
124
    ]);
125 126
  }
}
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169

class TextureButton extends ButtonBase {
  TextureButton({
    Key key,
    this.onPressed,
    this.texture,
    this.textureDown,
    this.width: 128.0,
    this.height: 128.0
  }) : super(key: key);

  final Function onPressed;
  final Texture texture;
  final Texture textureDown;
  final double width;
  final double height;

  Widget buildContent() {
    return new Listener(
      child: new Container(
        width: width,
        height: height,
        child: new CustomPaint(
          callback: paintCallback,
          token: new _TextureButtonToken(
            highlight,
            texture,
            textureDown,
            width,
            height
          )
        )
      ),
      onPointerUp: (_) {
        if (onPressed != null) onPressed();
      }
    );
  }

  void paintCallback(PaintingCanvas canvas, Size size) {
    if (texture == null)
      return;

170
    canvas.save();
171 172 173 174 175 176 177 178 179
    if (highlight && textureDown != null) {
      // Draw down state
      canvas.scale(size.width / textureDown.size.width, size.height / textureDown.size.height);
      textureDown.drawTexture(canvas, Point.origin, new Paint());
    } else {
      // Draw up state
      canvas.scale(size.width / texture.size.width, size.height / texture.size.height);
      texture.drawTexture(canvas, Point.origin, new Paint());
    }
180
    canvas.restore();
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
  }
}

class _TextureButtonToken {
  _TextureButtonToken(
    this._highlight,
    this._texture,
    this._textureDown,
    this._width,
    this._height
  );

  final bool _highlight;
  final Texture _texture;
  final Texture _textureDown;
  final double _width;
  final double _height;

  bool operator== (other) {
    return
      other is _TextureButtonToken &&
      _highlight == other._highlight &&
      _texture == other._texture &&
      _textureDown == other._textureDown &&
      _width == other._width &&
      _height == other._height;
  }

  int get hashCode {
    int value = 373;
    value = 37 * value * _highlight.hashCode;
    value = 37 * value * _texture.hashCode;
    value = 37 * value * _textureDown.hashCode;
    value = 37 * value * _width.hashCode;
    value = 37 * value * _height.hashCode;
    return value;
  }
}
219 220 221 222 223 224 225 226 227 228 229

class MainScreenBackground extends NodeWithSize {
  MainScreenBackground() : super(new Size(1024.0, 1024.0)) {
    Sprite sprtBackground = new Sprite.fromImage(_loader["assets/starfield.png"]);
    sprtBackground.position = new Point(512.0, 512.0);
    addChild(sprtBackground);

    StarField starField = new StarField(_spriteSheet, 200, true);
    addChild(starField);
  }
}