全部评论 5

  • 置顶

    反编译结果
    未完成

    3天前 来自 广东

    0
  • 难绷,ACGO 还有玩这个的

    3天前 来自 湖北

    1
    • 刚出的,看看能不能解了

      3天前 来自 广东

      0
    • 现在反编译了两个

      3天前 来自 广东

      0
  • 1.2.3

    3天前 来自 广东

    0
  • # Copyright 2004-2025 Tom Rothamel <pytom@bishoujo.us>
    #
    # Permission is hereby granted, free of charge, to any person
    # obtaining a copy of this software and associated documentation files
    # (the "Software"), to deal in the Software without restriction,
    # including without limitation the rights to use, copy, modify, merge,
    # publish, distribute, sublicense, and/or sell copies of the Software,
    # and to permit persons to whom the Software is furnished to do so,
    # subject to the following conditions:
    #
    # The above copyright notice and this permission notice shall be
    # included in all copies or substantial portions of the Software.
    #
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    
    # This file contains the AST for the Ren'Py script language. Each class
    # here corresponds to a statement in the script language.
    
    # NOTE:
    # When updating this file, consider if lint.py or warp.py also need
    # updating.
    
    from typing import Any, Callable, ClassVar, Literal, Never
    
    import time
    import hashlib
    import ast
    import re
    import sys
    import zlib
    
    import renpy
    
    from renpy.cslots import Object, Slot, IntegerSlot
    from renpy.astsupport import hash32, PyExpr
    
    from renpy.parameter import (
        ParameterInfo,
        ArgumentInfo,
        apply_arguments,
        EMPTY_PARAMETERS,
    )
    
    # For pickle compatibility.
    if True:
        from renpy.parameter import (
            Parameter,
            Signature,
            EMPTY_ARGUMENTS,
        )
    
    
    # Config variables that are set twice - once when the rpy is first loaded,
    # and then again at init time.
    EARLY_CONFIG = {
        "save_directory",
        "allow
    

    3天前 来自 广东

    0
  • 1

    3天前 来自 广东

    0

热门讨论