Util¶
On this page you can find documentation for some utility classes and methods.
Device Class¶
This class can be accessed from Flame.device
and it has some methods that can be used to control
the state of the device, for instance you can change the screen orientation and set whether the
application should be fullscreen or not.
Flame.device.fullScreen()
¶
When called, this disables all SystemUiOverlay
making the app full screen.
When called in the main method, it makes your app full screen (no top nor bottom bars).
Note: It has no effect when called on the web.
Flame.device.setLandscape()
¶
This method sets the orientation of the whole application (effectively, also the game) to landscape
and depending on operating system and device setting, should allow both left and right landscape
orientations. To set the app orientation to landscape on a specific direction, use either
Flame.device.setLandscapeLeftOnly
or Flame.device.setLandscapeRightOnly
.
Note: It has no effect when called on the web.
Flame.device.setPortrait()
¶
This method sets the orientation of the whole application (effectively, also the game) to portrait
and depending on operating system and device setting, it should allow for both up and down portrait
orientations. To set the app orientation to portrait for a specific direction, use either
Flame.device.setPortraitUpOnly
or Flame.device.setPortraitDownOnly
.
Note: It has no effect when called on the web.
Flame.device.setOrientation()
and Flame.device.setOrientations()
¶
If a finer control of the allowed orientations is required (without having to deal with
SystemChrome
directly), setOrientation
(accepts a single DeviceOrientation
as a parameter) and
setOrientations
(accepts a List<DeviceOrientation>
for possible orientations) can be used.
Note: It has no effect when called on the web.
Timer¶
Flame provides a simple utility class to help you handle countdowns and timer state changes like events.
Countdown example:
import 'dart:ui';
import 'package:flame/game.dart';
import 'package:flame/text_config.dart';
import 'package:flame/timer.dart';
import 'package:flame/vector2.dart';
class MyGame extends Game {
final TextConfig textConfig = TextConfig(color: const Color(0xFFFFFFFF));
final countdown = Timer(2);
@override
void update(double dt) {
countdown.update(dt);
if (countdown.finished) {
// Prefer the timer callback, but this is better in some cases
}
}
@override
void render(Canvas canvas) {
textConfig.render(
canvas,
"Countdown: ${countdown.current.toString()}",
Vector2(10, 100),
);
}
}
Interval example:
import 'dart:ui';
import 'package:flame/game.dart';
import 'package:flame/text_config.dart';
import 'package:flame/timer.dart';
import 'package:flame/vector2.dart';
class MyGame extends Game {
final TextConfig textConfig = TextConfig(color: const Color(0xFFFFFFFF));
Timer interval;
int elapsedSecs = 0;
MyGame() {
interval = Timer(
1,
onTick: () => elapsedSecs += 1,
repeat: true,
);
}
@override
void update(double dt) {
interval.update(dt);
}
@override
void render(Canvas canvas) {
textConfig.render(canvas, "Elapsed time: $elapsedSecs", Vector2(10, 150));
}
}
Timer
instances can also be used inside a FlameGame
game by using the TimerComponent
class.
TimerComponent
example:
import 'package:flame/timer.dart';
import 'package:flame/components.dart';
import 'package:flame/game.dart';
class MyFlameGame extends FlameGame {
MyFlameGame() {
add(
TimerComponent(
period: 10,
repeat: true,
onTick: () => print('10 seconds elapsed'),
)
);
}
}
Extensions¶
Flame bundles a collection of utility extensions, these extensions are meant to help the developer with shortcuts and conversion methods, here you can find the summary of those extensions.
They can all be imported from package:flame/extensions.dart
Canvas¶
Methods:
scaleVector
: Just likecanvas scale
method, but takes aVector2
as an argument.translateVector
: Just likecanvas translate
method, but takes aVector2
as an argument.renderPoint
: renders a single point on the canvas (mostly for debugging purposes).renderAt
andrenderRotated
: if you are directly rendering to theCanvas
, you can use these functions to easily manipulate coordinates to render things on the correct places. They change theCanvas
transformation matrix but reset afterwards.
Color¶
Methods:
darken
: Darken the shade of the color by an amount between 0 to 1.brighten
: Brighten the shade of the color by an amount between 0 to 1.
Factories:
ColorExtension.fromRGBHexString
: Parses an RGB color from a valid hex string (e.g. #1C1C1C).ColorExtension.fromARGBHexString
: Parses an ARGB color from a valid hex string (e.g. #FF1C1C1C).
Image¶
Methods:
pixelsInUint8
: Retrieves the pixel data as aUint8List
, in theImageByteFormat.rawRgba
pixel format, for the image.getBoundingRect
: Get the bounding rectangle of theImage
as aRect
.size
: The size of anImage
asVector2
.darken
: Darken each pixel of theImage
by an amount between 0 to 1.brighten
: Brighten each pixel of theImage
by an amount between 0 to 1.
Offset¶
Methods;
toVector2
; Creates anVector2
from theOffset
.toSize
: Creates aSize
from theOffset
.toPoint
: Creates aPoint
from theOffset
.toRect
: Creates aRect
starting in (0,0) and its bottom right corner is the [Offset].
Rect¶
Methods:
toOffset
: Creates anOffset
from theRect
.toVector2
: Creates aVector2
starting in (0,0) and goes to the size of theRect
.containsPoint
Whether thisRect
contains aVector2
point or not.intersectsSegment
; Whether the segment formed by twoVector2
s intersects thisRect
.intersectsLineSegment
: Whether theLineSegment
intersects theRect
.toVertices
: Turns the four corners of theRect
into a list ofVector2
.toMathRectangle
: Converts thisRect
into amath.Rectangle
.toGeometryRectangle
: Converts thisRect
into aRectangle
from flame-geom.transform
: Transforms theRect
using aMatrix4
.
Factories:
RectExtension.getBounds
: Construct aRect
that represents the bounds of a list ofVector2
s.RectExtension.fromCenter
: Construct aRect
from a center point (usingVector2
).
math.Rectangle¶
Methods:
toRect
: Converts this mathRectangle
into an uiRect
.
Size¶
Methods:
toVector2
; Creates anVector2
from theSize
.toOffset
: Creates aOffset
from theSize
.toPoint
: Creates aPoint
from theSize
.toRect
: Creates aRect
starting in (0,0) with the size ofSize
.
Vector2¶
This class comes from the vector_math
package and we have some useful extension methods on top of
what is offered by that package.
Methods:
toOffset
: Creates aOffset
from theVector2
.toPoint
: Creates aPoint
from theVector2
.toRect
: Creates aRect
starting in (0,0) with the size ofVector2
.toPositionedRect
: Creates aRect
starting from [x, y] in theVector2
and has the size of theVector2
argument.lerp
: Linearly interpolates theVector2
towards another Vector2.rotate
: Rotates theVector2
with an angle specified in radians, it rotates around the optionally definedVector2
, otherwise around the center.scaleTo
: Changes the length of theVector2
to the length provided, without changing direction.moveToTarget
: Smoothly moves a Vector2 in the target direction by a given distance.
Factories:
Vector2Extension.fromInts
: Create aVector2
with ints as input.
Operators:
&
: Combines twoVector2
s to form a Rect, the origin should be on the left and the size on the right.%
: Modulo/Remainder of x and y separately of twoVector2
s.
Matrix4¶
This class comes from the vector_math
package. We have created a few extension methods on top
of what is already offered by vector_math
.
Methods:
translate2
: Translate theMatrix4
by the givenVector2
.transform2
: Create a newVector2
by transforming the givenVector2
using theMatrix4
.transformed2
: Transform the inputVector2
into the outputVector2
.
Getters:
m11
: The first row and first column.m12
: The first row and second column.m13
: The first row and third column.m14
: The first row and fourth column.m21
: The second row and first column.m22
: The second row and second column.m23
: The second row and third column.m24
: The second row and fourth column.m31
: The third row and first column.m32
: The third row and second column.m33
: The third row and third column.m34
: The third row and fourth column.m41
: The fourth row and first column.m42
: The fourth row and second column.m43
: The fourth row and third column.m44
: The fourth row and fourth column.
Factories:
Matrix4Extension.scale
: Create a scaledMatrix4
. Either by passing aVector4
orVector2
as it’s first argument, or by passing x y z doubles.