File tree 3 files changed +31
-7
lines changed
3 files changed +31
-7
lines changed Original file line number Diff line number Diff line change @@ -402,15 +402,20 @@ def rect(self) -> Rect:
402
402
"""Return a Rect describing the size of the window."""
403
403
return LBWH (0 , 0 , self .width , self .height )
404
404
405
- def run (self ) -> None :
405
+ def run (self , view : View | None = None ) -> None :
406
406
"""
407
- Run the event loop.
407
+ Run the event loop. Optionally start with a specified view.
408
408
409
409
After the window has been set up, and the event hooks are in place, this
410
410
is usually one of the last commands on the main program. This is a blocking
411
411
function starting pyglet's event loop meaning it will start to dispatch
412
412
events such as ``on_draw`` and ``on_update``.
413
+
414
+ Args:
415
+ view: The view to display when starting the run. Defaults to None.
413
416
"""
417
+ if view is not None :
418
+ self .show_view (view )
414
419
arcade .run ()
415
420
416
421
def close (self ) -> None :
Original file line number Diff line number Diff line change 16
16
17
17
if TYPE_CHECKING :
18
18
from arcade import Window
19
-
19
+ from arcade . application import View
20
20
21
21
_window : Window | None = None
22
22
@@ -97,17 +97,23 @@ def close_window() -> None:
97
97
gc .collect ()
98
98
99
99
100
- def run () :
100
+ def run (view : View | None = None ) -> None :
101
101
"""
102
- Run the main loop.
102
+ Run the main loop. Optionally start with a specified view.
103
103
104
104
After the window has been set up, and the event hooks are in place,
105
105
this is usually one of the last commands on the main program.
106
106
This is a blocking function starting pyglet's event loop meaning
107
107
it will start to dispatch events such as ``on_draw`` and ``on_update``.
108
+
109
+ Args:
110
+ view: The view to display when starting the run. Defaults to None.
108
111
"""
109
112
window = get_window ()
110
113
114
+ if view is not None :
115
+ window .show_view (view )
116
+
111
117
# Used in some unit test
112
118
if os .environ .get ("ARCADE_TEST" ):
113
119
window .on_update (1.0 / 60.0 )
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def test_window(window: arcade.Window):
41
41
assert v [3 ] == height
42
42
43
43
factor = window .get_pixel_ratio ()
44
- assert isinstance (factor , float )
44
+ assert isinstance (factor , float )
45
45
assert factor > 0
46
46
47
47
def f ():
@@ -52,6 +52,19 @@ def f():
52
52
arcade .unschedule (f )
53
53
window .test ()
54
54
55
+ def test_window_with_view_arg (window : arcade .Window ):
56
+ class TestView (arcade .View ):
57
+ def __init__ (self ):
58
+ super ().__init__ ()
59
+ self .on_show_called = False
60
+
61
+ def on_show_view (self ):
62
+ self .on_show_called = True
63
+ v = TestView ()
64
+ window .run (view = v )
65
+
66
+ assert v .on_show_called
67
+ assert window .current_view is v
55
68
56
69
def test_start_finish_render (window ):
57
70
"""Test start and finish render"""
@@ -68,7 +81,7 @@ def test_start_finish_render(window):
68
81
# Only allowed to call start_render once
69
82
with pytest .raises (RuntimeError ):
70
83
arcade .start_render ()
71
-
84
+
72
85
arcade .finish_render ()
73
86
74
87
# Make sure we rendered something to the screen
You can’t perform that action at this time.
0 commit comments