feat:if score over goal , pass to next directly

This commit is contained in:
Kylin_on_Mac 2023-11-16 15:02:36 +08:00
parent 8253a0d519
commit 178dfd20a0
2 changed files with 22 additions and 19 deletions

View File

@ -3,7 +3,9 @@ from os import path
from mlgame.utils.enum import StringEnum from mlgame.utils.enum import StringEnum
# game # game
WIDTH = 900 WIDTH = 950
WIDTH_OF_INFO = 250
HEIGHT = 600 HEIGHT = 600
BG_COLOR = "#2B2B49" BG_COLOR = "#2B2B49"
PG_COLOR = "#B3E5FC" PG_COLOR = "#B3E5FC"

View File

@ -8,7 +8,6 @@ from mlgame.game.paia_game import PaiaGame, GameResultState, GameStatus
from mlgame.utils.enum import get_ai_name from mlgame.utils.enum import get_ai_name
from mlgame.view.decorator import check_game_progress, check_game_result from mlgame.view.decorator import check_game_progress, check_game_result
from mlgame.view.view_model import * from mlgame.view.view_model import *
from .env import *
from .foods import * from .foods import *
from .game_object import Squid, LevelParams from .game_object import Squid, LevelParams
from .sound_controller import SoundController from .sound_controller import SoundController
@ -73,7 +72,7 @@ class SwimmingSquid(PaiaGame):
self._score_to_pass = game_params.score_to_pass self._score_to_pass = game_params.score_to_pass
self._frame_limit = game_params.time_to_play self._frame_limit = game_params.time_to_play
self.playground.center = ((WIDTH-200) / 2, HEIGHT / 2) self.playground.center = ((WIDTH - WIDTH_OF_INFO) / 2, HEIGHT / 2)
# init game # init game
self.squid = Squid() self.squid = Squid()
@ -193,11 +192,12 @@ class SwimmingSquid(PaiaGame):
@property @property
def is_passed(self): def is_passed(self):
return self.squid.score > self._score_to_pass return self.squid.score >= self._score_to_pass
@property @property
def is_running(self): def is_running(self):
return self.frame_count < self._frame_limit # return self.frame_count < self._frame_limit
return (self.frame_count < self._frame_limit) and (not self.is_passed)
def get_scene_init_data(self): def get_scene_init_data(self):
""" """
@ -254,16 +254,17 @@ class SwimmingSquid(PaiaGame):
foregrounds = [ foregrounds = [
] ]
star_string = '+' * self.squid.lv
toggle_objs = [ toggle_objs = [
create_text_view_data(f"Lv : {self.squid.lv:4d}", 720, 50, "#EEEEEE", "24px Arial BOLD"), create_text_view_data(f"Squid Lv: {star_string}", 705, 50, "#EEEEEE", "20px Consolas BOLD"),
create_text_view_data(f"Vel : {self.squid.vel:4d}", 720, 80, "#EEEEEE", "24px Arial BOLD"), create_text_view_data(f"To Lv up: {LEVEL_THRESHOLDS[self.squid.lv - 1]-self.squid.score :04d} pt", 705, 80, "#EEEEEE", "20px Consolas BOLD"),
create_text_view_data(f"Score: {self.squid.score:04d}", 720, 110, "#EEEEEE", "24px Arial BOLD"), create_text_view_data(f"Vel : {self.squid.vel:4d}", 705, 110, "#EEEEEE", "20px Consolas BOLD"),
create_text_view_data(f"Lv_up: {LEVEL_THRESHOLDS[self.squid.lv-1]:4d}", 720, 140, "#EEEEEE", "24px Arial BOLD"), create_text_view_data(f"Timer : {self._frame_count_down:04d}", 705, 150, "#EEEEEE", "20px Consolas BOLD"),
create_text_view_data(f"Time : {self._frame_count_down:04d}", 720, 200, "#EEEEEE", "24px Arial BOLD"), create_text_view_data(f"My Score: {self.squid.score:04d} pt", 705, 180, "#EEEEEE", "20px Consolas BOLD"),
create_text_view_data(f"ToPass: {self._score_to_pass:04d}", 720, 230, "#EEEEEE", "24px Arial BOLD"), create_text_view_data(f"Goal : {self._score_to_pass:04d} pt", 705, 210, "#EEEEEE", "20px Consolas BOLD"),
] ]
scene_progress = create_scene_progress_data(frame=self.frame_count, background=backgrounds, scene_progress = create_scene_progress_data(
frame=self.frame_count, background=backgrounds,
object_list=game_obj_list, object_list=game_obj_list,
foreground=foregrounds, toggle=toggle_objs) foreground=foregrounds, toggle=toggle_objs)
return scene_progress return scene_progress