- Mar 7, 2018
- 245
- 175
Bonjour. Je développe actuellement un software mais je bloque sur la sur la partie récupération du menu.
Voilà comment je récupère le texte actuellement
Hello. I am developing a software but I am stuck on collecting the item menu.
That is how I currently get the text
J'ai besoin de la même chose pour les choix
j'ai besoin de récupérer le nom du fichier et la ligne de chaque choix.
Si quelqu'un c'est comment faire ça m'aiderait grandement.
I need the same thing for the choices
I need to get the file name and the line of each choice.
If someone is how to do this it would help me greatly.
Voilà comment je récupère le texte actuellement
Hello. I am developing a software but I am stuck on collecting the item menu.
That is how I currently get the text
Code:
init python:
import inspect
import pygame.scrap
import socket
host="127.0.0.1"
port=8585
SocketClient= socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
SocketClient.connect((host, port))
def send_to_socket(msg):
SocketClient.sendall(msg.encode("utf8"))
def text_msg(event, **kwargs):
if event == "begin":
d = get_filename_line()
tl = "%s|separateur|%s" % ((d))
e = inspect.currentframe().f_back.f_locals
t="Text"
line=t+'|separateur|'+tl+'|separateur|'+e.get("what")
send_to_socket(line)
def get_filename_line():
n = renpy.game.script.namemap.get(renpy.game.context().current, None)
line=""
if n is None:
return "unknown", 0
else:
return n.filename, n.linenumber
return
config.all_character_callbacks.append(text_msg)
j'ai besoin de récupérer le nom du fichier et la ligne de chaque choix.
Si quelqu'un c'est comment faire ça m'aiderait grandement.
I need the same thing for the choices
I need to get the file name and the line of each choice.
If someone is how to do this it would help me greatly.