mirror of
				https://github.com/flame-engine/flame.git
				synced 2025-10-31 17:06:50 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:math' as math;
 | |
| import 'dart:ui';
 | |
| 
 | |
| import 'package:flame/anchor.dart';
 | |
| import 'package:flame/gestures.dart';
 | |
| import 'package:flame/components/component.dart';
 | |
| import 'package:flame/components/mixins/has_game_ref.dart';
 | |
| import 'package:flame/game.dart';
 | |
| import 'package:flame/palette.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| 
 | |
| void main() {
 | |
|   final game = MyGame()..runOnCreation = false;
 | |
| 
 | |
|   runApp(game.widget);
 | |
| }
 | |
| 
 | |
| class Palette {
 | |
|   static const PaletteEntry white = BasicPalette.white;
 | |
|   static const PaletteEntry red = PaletteEntry(Color(0xFFFF0000));
 | |
|   static const PaletteEntry blue = PaletteEntry(Color(0xFF0000FF));
 | |
| }
 | |
| 
 | |
| class Square extends PositionComponent with HasGameRef<MyGame> {
 | |
|   static const SPEED = 0.25;
 | |
| 
 | |
|   @override
 | |
|   void resize(Size size) {
 | |
|     x = size.width / 2;
 | |
|     y = size.height / 2;
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   void render(Canvas c) {
 | |
|     prepareCanvas(c);
 | |
| 
 | |
|     c.drawRect(Rect.fromLTWH(0, 0, width, height), Palette.white.paint);
 | |
|     c.drawRect(const Rect.fromLTWH(0, 0, 3, 3), Palette.red.paint);
 | |
|     c.drawRect(Rect.fromLTWH(width / 2, height / 2, 3, 3), Palette.blue.paint);
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   void update(double t) {
 | |
|     angle += SPEED * t;
 | |
|     angle %= 2 * math.pi;
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   void onMount() {
 | |
|     width = height = gameRef.squareSize;
 | |
|     anchor = Anchor.center;
 | |
|   }
 | |
| }
 | |
| 
 | |
| class MyGame extends BaseGame with TapDetector {
 | |
|   final double squareSize = 128;
 | |
|   bool running = false;
 | |
| 
 | |
|   MyGame() {
 | |
|     add(Square());
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   void onTap() {
 | |
|     if (running) {
 | |
|       pauseEngine();
 | |
|     } else {
 | |
|       resumeEngine();
 | |
|     }
 | |
| 
 | |
|     running = !running;
 | |
|   }
 | |
| }
 | 
