forked from SilverStudioGames/WTS
Expression Editor 0.3a
* Added new expression editor * Fixed error parser for mods * Unified Non-doll character expression parameter names * Moved strip quotes function to global scope * Added matches function that strips spaces before comparing
This commit is contained in:
parent
6d30d842f5
commit
bb594c74c6
@ -5,6 +5,7 @@ init python:
|
||||
import json
|
||||
import os
|
||||
import renpy.error as rpy_error
|
||||
from renpy.parser import ParseError
|
||||
|
||||
mods_list = dict()
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
define character.genie_say = Character("Genie", show_icon="genie")
|
||||
|
||||
init python:
|
||||
def gen(what, attributes=None, xpos=None, ypos=None, pos=None, flip=None, trans=None, animation=False, **kwargs):
|
||||
def gen(what, face=None, xpos=None, ypos=None, pos=None, flip=None, trans=None, animation=False, **kwargs):
|
||||
global genie_xpos, genie_ypos, genie_offset, genie_flip, genie_zoom
|
||||
redraw = False
|
||||
tag = "genie_main"
|
||||
@ -24,8 +24,8 @@ init python:
|
||||
else:
|
||||
genie_offset = (0, 600)
|
||||
|
||||
if attributes:
|
||||
variant = "genie {}".format(attributes)
|
||||
if face:
|
||||
variant = "genie {}".format(face)
|
||||
renpy.set_tag_attributes(variant)
|
||||
side = "genie"
|
||||
|
||||
|
@ -10,6 +10,7 @@ init -1 python:
|
||||
import fnmatch
|
||||
import posixpath
|
||||
import re
|
||||
import string
|
||||
from bisect import bisect
|
||||
from operator import itemgetter
|
||||
from operator import add as _add
|
||||
@ -208,3 +209,13 @@ init -1 python:
|
||||
continue
|
||||
|
||||
i.ret(who)
|
||||
|
||||
def strip(s):
|
||||
# We need a custom strip implementation because we cannot tell
|
||||
# if the raw argument isn't encapsulated in double, or triple quotes
|
||||
if s.startswith(('"', "'")) and s.endswith(('"', "'")):
|
||||
return s[1:-1]
|
||||
return s
|
||||
|
||||
def matches(s1, s2, filter=" "):
|
||||
return s1.replace(filter, "") == s2.replace(filter, "")
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -16,14 +16,6 @@ init -1 python:
|
||||
if config.developer:
|
||||
|
||||
def lint_characters():
|
||||
|
||||
def strip(s):
|
||||
# We need a custom strip implementation because we cannot tell
|
||||
# if the raw argument isn't encapsulated in double, or triple quotes
|
||||
if s.startswith(('"', "'")) and s.endswith(('"', "'")):
|
||||
return s[1:-1]
|
||||
return s
|
||||
|
||||
renpy.execute_default_statement(False)
|
||||
|
||||
# Add images to linting list to avoid undefined errors
|
||||
|
Loading…
Reference in New Issue
Block a user