FF1: update some client texts
This commit is contained in:
		
							parent
							
								
									a60c6176be
								
							
						
					
					
						commit
						a767d7723c
					
				
							
								
								
									
										10
									
								
								FF1Client.py
								
								
								
								
							
							
						
						
									
										10
									
								
								FF1Client.py
								
								
								
								
							| 
						 | 
					@ -11,9 +11,9 @@ from CommonClient import CommonContext, server_loop, gui_enabled, console_loop,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SYSTEM_MESSAGE_ID = 0
 | 
					SYSTEM_MESSAGE_ID = 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CONNECTION_TIMING_OUT_STATUS = "Connection timing out. Please restart your emulator then restart ff1_connector.lua"
 | 
					CONNECTION_TIMING_OUT_STATUS = "Connection timing out. Please restart your emulator, then restart ff1_connector.lua"
 | 
				
			||||||
CONNECTION_REFUSED_STATUS = "Connection Refused. Please start your emulator make sure ff1_connector.lua is running"
 | 
					CONNECTION_REFUSED_STATUS = "Connection Refused. Please start your emulator and make sure ff1_connector.lua is running"
 | 
				
			||||||
CONNECTION_RESET_STATUS = "Connection was reset. Please restart your emulator then restart ff1_connector.lua"
 | 
					CONNECTION_RESET_STATUS = "Connection was reset. Please restart your emulator, then restart ff1_connector.lua"
 | 
				
			||||||
CONNECTION_TENTATIVE_STATUS = "Initial Connection Made"
 | 
					CONNECTION_TENTATIVE_STATUS = "Initial Connection Made"
 | 
				
			||||||
CONNECTION_CONNECTED_STATUS = "Connected"
 | 
					CONNECTION_CONNECTED_STATUS = "Connected"
 | 
				
			||||||
CONNECTION_INITIAL_STATUS = "Connection has not been initiated"
 | 
					CONNECTION_INITIAL_STATUS = "Connection has not been initiated"
 | 
				
			||||||
| 
						 | 
					@ -219,8 +219,8 @@ if __name__ == '__main__':
 | 
				
			||||||
        ctx.server_task = asyncio.create_task(server_loop(ctx), name="ServerLoop")
 | 
					        ctx.server_task = asyncio.create_task(server_loop(ctx), name="ServerLoop")
 | 
				
			||||||
        if gui_enabled:
 | 
					        if gui_enabled:
 | 
				
			||||||
            input_task = None
 | 
					            input_task = None
 | 
				
			||||||
            from kvui import TextManager
 | 
					            from kvui import FF1Manager
 | 
				
			||||||
            ctx.ui = TextManager(ctx)
 | 
					            ctx.ui = FF1Manager(ctx)
 | 
				
			||||||
            ui_task = asyncio.create_task(ctx.ui.async_run(), name="UI")
 | 
					            ui_task = asyncio.create_task(ctx.ui.async_run(), name="UI")
 | 
				
			||||||
        else:
 | 
					        else:
 | 
				
			||||||
            input_task = asyncio.create_task(console_loop(ctx), name="Input")
 | 
					            input_task = asyncio.create_task(console_loop(ctx), name="Input")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										7
									
								
								kvui.py
								
								
								
								
							
							
						
						
									
										7
									
								
								kvui.py
								
								
								
								
							| 
						 | 
					@ -365,6 +365,13 @@ class TextManager(GameManager):
 | 
				
			||||||
    base_title = "Archipelago Text Client"
 | 
					    base_title = "Archipelago Text Client"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class FF1Manager(GameManager):
 | 
				
			||||||
 | 
					    logging_pairs = [
 | 
				
			||||||
 | 
					        ("Client", "Archipelago")
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
 | 
					    base_title = "Archipelago Final Fantasy 1 Client"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class LogtoUI(logging.Handler):
 | 
					class LogtoUI(logging.Handler):
 | 
				
			||||||
    def __init__(self, on_log):
 | 
					    def __init__(self, on_log):
 | 
				
			||||||
        super(LogtoUI, self).__init__(logging.INFO)
 | 
					        super(LogtoUI, self).__init__(logging.INFO)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue