Autorepeat in conf
This commit is contained in:
		@ -190,6 +190,10 @@ class TetrArcade(tetrislogic.TetrisLogic, arcade.Window):
 | 
				
			|||||||
            "pause": "ESCAPE",
 | 
					            "pause": "ESCAPE",
 | 
				
			||||||
            "fullscreen": "F11",
 | 
					            "fullscreen": "F11",
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					        self.conf["AUTO-REPEAT"] = {
 | 
				
			||||||
 | 
					            "delay": 0.3,
 | 
				
			||||||
 | 
					            "period": 0.01
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
        self.load_conf()
 | 
					        self.load_conf()
 | 
				
			||||||
        if not os.path.exists(USER_PROFILE_DIR):
 | 
					        if not os.path.exists(USER_PROFILE_DIR):
 | 
				
			||||||
            os.makedirs(USER_PROFILE_DIR)
 | 
					            os.makedirs(USER_PROFILE_DIR)
 | 
				
			||||||
@ -241,6 +245,9 @@ class TetrArcade(tetrislogic.TetrisLogic, arcade.Window):
 | 
				
			|||||||
            },
 | 
					            },
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        self.AUTOREPEAT_DELAY = float(self.conf["AUTO-REPEAT"]["delay"])
 | 
				
			||||||
 | 
					        self.AUTOREPEAT_PERIOD = float(self.conf["AUTO-REPEAT"]["period"])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        controls_text = (
 | 
					        controls_text = (
 | 
				
			||||||
            "\n\n\nCONTROLS\n\n"
 | 
					            "\n\n\nCONTROLS\n\n"
 | 
				
			||||||
            + "\n".join(
 | 
					            + "\n".join(
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user