CPラベルが1文字しか出ない、起動が遅い
This commit is contained in:
@ -24,7 +24,7 @@ import 'package:rogapp/services/perfecture_service.dart';
|
||||
import 'package:rogapp/utils/database_gps.dart';
|
||||
import 'package:rogapp/utils/database_helper.dart';
|
||||
import 'package:rogapp/utils/location_controller.dart';
|
||||
import 'package:rogapp/widgets/bottom_sheet_new.dart';
|
||||
import 'package:rogapp/widgets/bottom_sheets/bottom_sheet_normal_point.dart';
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:modal_bottom_sheet/modal_bottom_sheet.dart';
|
||||
@ -33,14 +33,12 @@ import 'package:shared_preferences/shared_preferences.dart';
|
||||
|
||||
import 'package:image_gallery_saver/image_gallery_saver.dart';
|
||||
|
||||
import 'package:geolocator/geolocator.dart';
|
||||
|
||||
// 目的地に関連する状態管理とロジックを担当するクラスです。
|
||||
//
|
||||
class DestinationController extends GetxController {
|
||||
late LocationSettings locationSettings; // 位置情報の設定を保持する変数です。
|
||||
|
||||
Timer? _GPStimer; // GPSタイマーを保持する変数です。
|
||||
//Timer? _GPStimer; // GPSタイマーを保持する変数です。
|
||||
|
||||
var destinationCount = 0.obs; // 目的地の数を保持するReactive変数です。
|
||||
List<Destination> destinations = <Destination>[].obs; // 目的地のリストを保持するObservable変数です。
|
||||
@ -92,7 +90,20 @@ class DestinationController extends GetxController {
|
||||
|
||||
int _start = 0; // 開始時刻を保持する変数です。
|
||||
int chekcs = 0; // チェックポイントの数を保持する変数です。
|
||||
|
||||
var rogainingCounted = false.obs; // ロゲイニングがカウントされたかどうかを示すReactive変数です。
|
||||
// destinationController.rogainingCountedは、現在のロゲイニングセッションでポイントがカウントされたかどうかを管理するフラグです。
|
||||
//
|
||||
// このフラグは以下のような状況で使用されます:
|
||||
//
|
||||
// ロゲイニングを開始したとき、rogainingCountedはfalseに初期化されます。これは、まだポイントがカウントされていないことを示します。
|
||||
// チェックポイントに到着し、チェックインが成功したとき、rogainingCountedはtrueに設定されます。これは、そのセッションでポイントがカウントされたことを示します。
|
||||
// ロゲイニングを終了したとき、rogainingCountedは再びfalseに設定されます。これは、次のセッションに備えてフラグをリセットするためです。
|
||||
// このフラグは、主に以下の目的で使用されます:
|
||||
//
|
||||
// ゴール地点でのロジックの制御:rogainingCountedがtrueの場合、つまりポイントがカウントされている場合にのみ、ゴール処理を実行できます。
|
||||
// UI の更新:rogainingCountedの状態に基づいて、適切なメッセージやボタンを表示することができます。
|
||||
|
||||
|
||||
/*
|
||||
//==== Akira .. GPS信号シミュレーション用 ===== ここから、2024-4-5
|
||||
@ -317,15 +328,17 @@ class DestinationController extends GetxController {
|
||||
isAtStart.value = true;
|
||||
if (shouldShowBottomSheet) {
|
||||
shouldShowBottomSheet = false;
|
||||
if (d.cp == -1) return;
|
||||
|
||||
if (d.cp == -1||d.cp==-2||d.cp==0) return;
|
||||
Widget bottomSheet = BottomSheetNormalPoint(destination: d);
|
||||
|
||||
await showModalBottomSheet(
|
||||
constraints:
|
||||
BoxConstraints.loose(Size(Get.width, Get.height * 0.85)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => BottomSheetNew(
|
||||
destination: d,
|
||||
))).whenComplete(() {
|
||||
builder: ((context) => bottomSheet)
|
||||
).whenComplete(() {
|
||||
shouldShowBottomSheet = true;
|
||||
skipGps = false;
|
||||
chekcs = 0;
|
||||
@ -342,15 +355,17 @@ class DestinationController extends GetxController {
|
||||
isInCheckin.value = true;
|
||||
if (shouldShowBottomSheet) {
|
||||
shouldShowBottomSheet = false;
|
||||
if (d.cp == -1) return;
|
||||
|
||||
if (d.cp == -1||d.cp==-2||d.cp==0) return;
|
||||
Widget bottomSheet = BottomSheetNormalPoint(destination: d);
|
||||
|
||||
await showModalBottomSheet(
|
||||
constraints:
|
||||
BoxConstraints.loose(Size(Get.width, Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => BottomSheetNew(
|
||||
destination: d,
|
||||
))).whenComplete(() {
|
||||
builder: ((context) => bottomSheet)
|
||||
).whenComplete(() {
|
||||
shouldShowBottomSheet = true;
|
||||
skipGps = false;
|
||||
chekcs = 0;
|
||||
@ -412,14 +427,16 @@ class DestinationController extends GetxController {
|
||||
isInCheckin.value = true;
|
||||
if (shouldShowBottomSheet) {
|
||||
shouldShowBottomSheet = false;
|
||||
if (d.cp == -1) return;
|
||||
|
||||
if (d.cp == -1||d.cp==-2||d.cp==0) return;
|
||||
Widget bottomSheet = BottomSheetNormalPoint(destination: d);
|
||||
|
||||
await showMaterialModalBottomSheet(
|
||||
expand: true,
|
||||
context: Get.context!,
|
||||
backgroundColor: Colors.transparent,
|
||||
builder: (context) => BottomSheetNew(
|
||||
destination: d,
|
||||
)).whenComplete(() {
|
||||
builder: (context) => bottomSheet
|
||||
).whenComplete(() {
|
||||
shouldShowBottomSheet = true;
|
||||
skipGps = false;
|
||||
chekcs = 0;
|
||||
@ -506,15 +523,17 @@ class DestinationController extends GetxController {
|
||||
isAtStart.value = true;
|
||||
if (shouldShowBottomSheet) {
|
||||
shouldShowBottomSheet = false;
|
||||
if (d.cp == -1) return;
|
||||
|
||||
if (d.cp == -1||d.cp==-2||d.cp==0) return;
|
||||
Widget bottomSheet = BottomSheetNormalPoint(destination: d);
|
||||
|
||||
await showModalBottomSheet(
|
||||
constraints:
|
||||
BoxConstraints.loose(Size(Get.width, Get.height * 0.75)),
|
||||
context: Get.context!,
|
||||
isScrollControlled: true,
|
||||
builder: ((context) => BottomSheetNew(
|
||||
destination: d,
|
||||
))).whenComplete(() {
|
||||
builder: ((context) => bottomSheet)
|
||||
).whenComplete(() {
|
||||
shouldShowBottomSheet = true;
|
||||
//print("----- finished start -------");
|
||||
skipGps = false;
|
||||
@ -932,11 +951,11 @@ class DestinationController extends GetxController {
|
||||
//
|
||||
locationController.locationMarkerPositionStream.listen(
|
||||
(locationMarkerPosition) {
|
||||
if (locationMarkerPosition != null) {
|
||||
//if (locationMarkerPosition != null) {
|
||||
handleLocationUpdate(locationMarkerPosition);
|
||||
}
|
||||
//}
|
||||
}, onError: (err) {
|
||||
print("Error: $err");
|
||||
print("Location Error: $err");
|
||||
});
|
||||
|
||||
startGame();
|
||||
@ -957,7 +976,7 @@ class DestinationController extends GetxController {
|
||||
//
|
||||
void handleLocationUpdate(LocationMarkerPosition? position) async {
|
||||
try {
|
||||
final DestinationController destinationController = Get.find<DestinationController>();
|
||||
//final DestinationController destinationController = Get.find<DestinationController>();
|
||||
//final signalStrength = locationController.getGpsSignalStrength();
|
||||
|
||||
okToUseGPS = false;
|
||||
@ -1209,10 +1228,7 @@ class DestinationController extends GetxController {
|
||||
// 地図を現在位置に中央揃えする関数です。
|
||||
//
|
||||
void centerMapToCurrentLocation() {
|
||||
assert(() {
|
||||
print("center is ${currentLat}, ${currentLon}");
|
||||
return true;
|
||||
}());
|
||||
//print("center is ${currentLat}, ${currentLon}");
|
||||
// Akira ... 状況によって呼ぶか呼ばないか
|
||||
if (currentLat != 0 || currentLon != 0) {
|
||||
indexController.mapController.move(LatLng(currentLat, currentLon), 17.0);
|
||||
|
||||
Reference in New Issue
Block a user