well time to MAKE THREAD!

This commit is contained in:
沈瑗杰 2020-12-13 18:39:12 +08:00
parent 0fe5d53705
commit 82ce83ea73
5 changed files with 55 additions and 11 deletions

View File

@ -0,0 +1,12 @@
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
# import folders
import libs.Game_threads
# import in this forder
import libs.main
import libs.loads
import libs.setup
import libs.render

View File

@ -0,0 +1,11 @@
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
import libs
import threading
class Orbit_demo(threading.Thread):
def __init__(self):
pass

View File

@ -5,6 +5,3 @@ mail: 3695888@qq.com
# import folders
# import in this forder
import libs.main
import libs.loads
import libs.setup

View File

@ -20,8 +20,14 @@ def mbool(thing): # stand for my bool
else:
raise ValueError("Need a 'like bool' not anything else")
class Game:
class Game():
def __init__(self):
pass
class RenderThread(threading.Thread):
def __init__(self,):
# value
# dic
self.parts = {} # this ship parts
@ -36,9 +42,12 @@ class Game:
def setup(self):
# dic
self.window_c = libs.loads.config(".\\configs\\window.json") # stand for window config
self.planet_c = libs.loads.config(".\\configs\\planet.json") # stand for planet config
self.textures_c = libs.loads.config(".\\configs\\basic_config", "textures") # stand for textures config
self.window_c = libs.loads.config(
".\\configs\\window.json") # stand for window config
self.planet_c = libs.loads.config(
".\\configs\\planet.json") # stand for planet config
self.textures_c = libs.loads.config(
".\\configs\\basic_config", "textures") # stand for textures config
# image
self.b_g = image("back_ground_space.png")
# window

15
libs/render.py Normal file
View File

@ -0,0 +1,15 @@
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
import pyglet
import threading
from pyglet.app import run
from pyglet.window import Window
from pyglet.resource import image
class RenderThread(threading.Thread):
def __init__(self):
pass