opt: item

opt: util

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-16 23:48:25 +08:00
parent 12c711424b
commit d886569dc3
85 changed files with 1983 additions and 1964 deletions

View File

@@ -0,0 +1,22 @@
import 'package:canvas_danmaku/models/danmaku_content_item.dart';
import 'package:flutter/material.dart';
class DmUtils {
static Color decimalToColor(int decimalColor) {
// 16777215 表示白色
int red = (decimalColor >> 16) & 0xFF;
int green = (decimalColor >> 8) & 0xFF;
int blue = decimalColor & 0xFF;
return Color.fromARGB(255, red, green, blue);
}
static DanmakuItemType getPosition(int mode) {
return switch (mode) {
4 => DanmakuItemType.bottom,
5 => DanmakuItemType.top,
7 => DanmakuItemType.special,
_ => DanmakuItemType.scroll,
};
}
}