123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- # -*- coding: utf-8 -*-
- """
- pygments.lexers.gdscript
- ~~~~~~~~~~~~~~~~~~~~~~
- Lexer for GDScript.
- :copyright: Copyright 2xxx by The Godot Engine Community
- :license: MIT.
- modified by Daniel J. Ramirez <djrmuv@gmail.com> based on the original python.py pygment
- """
- import re
- from pygments.lexer import (
- RegexLexer,
- include,
- bygroups,
- default,
- words,
- combined,
- )
- from pygments.token import (
- Text,
- Comment,
- Operator,
- Keyword,
- Name,
- String,
- Number,
- Punctuation,
- Whitespace,
- )
- __all__ = ["GDScriptLexer"]
- line_re = re.compile(".*?\n")
- class GDScriptLexer(RegexLexer):
- """
- For `GDScript source code <https://www.godotengine.org>`_.
- """
- name = "GDScript"
- aliases = ["gdscript", "gd"]
- filenames = ["*.gd"]
- mimetypes = ["text/x-gdscript", "application/x-gdscript"]
- def innerstring_rules(ttype):
- return [
- # the old style '%s' % (...) string formatting
- (
- r"%(\(\w+\))?[-#0 +]*([0-9]+|[*])?(\.([0-9]+|[*]))?"
- "[hlL]?[E-GXc-giorsux%]",
- String.Interpol,
- ),
- # backslashes, quotes and formatting signs must be parsed one at a time
- (r'[^\\\'"%\n]+', ttype),
- (r'[\'"\\]', ttype),
- # unhandled string formatting sign
- (r"%", ttype),
- # newlines are an error (use "nl" state)
- ]
- tokens = {
- "root": [
- (r"\n", Whitespace),
- (
- r'^(\s*)([rRuUbB]{,2})("""(?:.|\n)*?""")',
- bygroups(Whitespace, String.Affix, String.Doc),
- ),
- (
- r"^(\s*)([rRuUbB]{,2})('''(?:.|\n)*?''')",
- bygroups(Whitespace, String.Affix, String.Doc),
- ),
- (r"[^\S\n]+", Whitespace),
- (r"#.*$", Comment.Single),
- (r"[]{}:(),;[]", Punctuation),
- (r"(\\)(\n)", Whitespace),
- (r"\\", Text),
- # modules/gdscript/gdscript.cpp - GDScriptLanguage::get_reserved_words()
- # Operators.
- (r"(and|as|in|is|not|or)\b", Operator.Word),
- (
- r"!=|==|<<|>>|&&|\+=|-=|\*=|/=|%=|&=|\|=|\|\||[-~+/*%=<>&^.!|$]",
- Operator,
- ),
- include("keywords"),
- include("control_flow_keywords"),
- (r"(func)((?:\s|\\\s)+)", bygroups(Keyword, Whitespace), "funcname"),
- (r"(class)((?:\s|\\\s)+)", bygroups(Keyword, Whitespace), "classname"),
- include("builtins"),
- include("decorators"),
- (
- '([rR]|[uUbB][rR]|[rR][uUbB])(""")',
- bygroups(String.Affix, String.Double),
- "tdqs",
- ),
- (
- "([rR]|[uUbB][rR]|[rR][uUbB])(''')",
- bygroups(String.Affix, String.Single),
- "tsqs",
- ),
- (
- '([rR]|[uUbB][rR]|[rR][uUbB])(")',
- bygroups(String.Affix, String.Double),
- "dqs",
- ),
- (
- "([rR]|[uUbB][rR]|[rR][uUbB])(')",
- bygroups(String.Affix, String.Single),
- "sqs",
- ),
- (
- '([uUbB]?)(""")',
- bygroups(String.Affix, String.Double),
- combined("stringescape", "tdqs"),
- ),
- (
- "([uUbB]?)(''')",
- bygroups(String.Affix, String.Single),
- combined("stringescape", "tsqs"),
- ),
- (
- '([uUbB]?)(")',
- bygroups(String.Affix, String.Double),
- combined("stringescape", "dqs"),
- ),
- (
- "([uUbB]?)(')",
- bygroups(String.Affix, String.Single),
- combined("stringescape", "sqs"),
- ),
- include("name"),
- include("numbers"),
- ],
- "keywords": [
- (
- words(
- (
- # modules/gdscript/gdscript.cpp - GDScriptLanguage::get_reserved_words()
- # Declarations.
- "class",
- "class_name",
- "const",
- "enum",
- "extends",
- "func",
- "namespace", # Reserved for potential future use.
- "signal",
- "static",
- "trait", # Reserved for potential future use.
- "var",
- # Other keywords.
- "await",
- "breakpoint",
- "self",
- "super",
- "yield", # Reserved for potential future use.
- # Not really keywords, but used in property syntax.
- "set",
- "get",
- ),
- suffix=r"\b",
- ),
- Keyword,
- ),
- ],
- "control_flow_keywords": [
- (
- words(
- (
- # modules/gdscript/gdscript.cpp - GDScriptLanguage::get_reserved_words()
- # Control flow.
- "break",
- "continue",
- "elif",
- "else",
- "for",
- "if",
- "match",
- "pass",
- "return",
- "when",
- "while",
- ),
- suffix=r"\b",
- ),
- # Custom control flow class used to give control flow keywords a different color,
- # like in the Godot editor.
- Keyword.ControlFlow,
- ),
- ],
- "builtins": [
- (
- words(
- (
- # doc/classes/@GlobalScope.xml
- "abs",
- "absf",
- "absi",
- "acos",
- "acosh",
- "angle_difference",
- "asin",
- "asinh",
- "atan",
- "atan2",
- "atanh",
- "bezier_derivative",
- "bezier_interpolate",
- "bytes_to_var",
- "bytes_to_var_with_objects",
- "ceil",
- "ceilf",
- "ceili",
- "clamp",
- "clampf",
- "clampi",
- "cos",
- "cosh",
- "cubic_interpolate",
- "cubic_interpolate_angle",
- "cubic_interpolate_angle_in_time",
- "cubic_interpolate_in_time",
- "db_to_linear",
- "deg_to_rad",
- "ease",
- "error_string",
- "exp",
- "floor",
- "floorf",
- "floori",
- "fmod",
- "fposmod",
- "hash",
- "instance_from_id",
- "inverse_lerp",
- "is_equal_approx",
- "is_finite",
- "is_inf",
- "is_instance_id_valid",
- "is_instance_valid",
- "is_nan",
- "is_same",
- "is_zero_approx",
- "lerp",
- "lerp_angle",
- "lerpf",
- "linear_to_db",
- "log",
- "max",
- "maxf",
- "maxi",
- "min",
- "minf",
- "mini",
- "move_toward",
- "nearest_po2",
- "pingpong",
- "posmod",
- "pow",
- "print",
- "print_rich",
- "print_verbose",
- "printerr",
- "printraw",
- "prints",
- "printt",
- "push_error",
- "push_warning",
- "rad_to_deg",
- "rand_from_seed",
- "randf",
- "randf_range",
- "randfn",
- "randi",
- "randi_range",
- "randomize",
- "remap",
- "rid_allocate_id",
- "rid_from_int64",
- "rotate_toward",
- "round",
- "roundf",
- "roundi",
- "seed",
- "sign",
- "signf",
- "signi",
- "sin",
- "sinh",
- "smoothstep",
- "snapped",
- "snappedf",
- "snappedi",
- "sqrt",
- "step_decimals",
- "str",
- "str_to_var",
- "tan",
- "tanh",
- "type_convert",
- "type_string",
- "typeof",
- "var_to_bytes",
- "var_to_bytes_with_objects",
- "var_to_str",
- "weakref",
- "wrap",
- "wrapf",
- "wrapi",
- # modules/gdscript/doc_classes/@GDScript.xml
- "Color8",
- "assert",
- "char",
- "convert",
- "dict_to_inst",
- "get_stack",
- "inst_to_dict",
- "is_instance_of",
- "len",
- "load",
- "preload",
- "print_debug",
- "print_stack",
- "range",
- "type_exists",
- ),
- prefix=r"(?<!\.)",
- suffix=r"\b",
- ),
- Name.Builtin,
- ),
- # modules/gdscript/gdscript.cpp - GDScriptLanguage::get_reserved_words()
- # Special values. Constants.
- (r"((?<!\.)(false|null|true)|(INF|NAN|PI|TAU))\b", Name.Builtin.Pseudo),
- (
- words(
- (
- # core/variant/variant.cpp - Variant::get_type_name()
- # `Nil` is excluded because it is not allowed in GDScript.
- "bool",
- "int",
- "float",
- "String",
- "Vector2",
- "Vector2i",
- "Rect2",
- "Rect2i",
- "Transform2D",
- "Vector3",
- "Vector3i",
- "Vector4",
- "Vector4i",
- "Plane",
- "AABB",
- "Quaternion",
- "Basis",
- "Transform3D",
- "Projection",
- "Color",
- "RID",
- "Object",
- "Callable",
- "Signal",
- "StringName",
- "NodePath",
- "Dictionary",
- "Array",
- "PackedByteArray",
- "PackedInt32Array",
- "PackedInt64Array",
- "PackedFloat32Array",
- "PackedFloat64Array",
- "PackedStringArray",
- "PackedVector2Array",
- "PackedVector3Array",
- "PackedColorArray",
- "PackedVector4Array",
- # The following are also considered types in GDScript.
- "Variant",
- "void",
- ),
- prefix=r"(?<!\.)",
- suffix=r"\b",
- ),
- Name.Builtin.Type,
- ),
- ],
- "decorators": [
- (
- words(
- (
- # modules/gdscript/doc_classes/@GDScript.xml
- "@export",
- "@export_category",
- "@export_color_no_alpha",
- "@export_custom",
- "@export_dir",
- "@export_enum",
- "@export_exp_easing",
- "@export_file",
- "@export_flags",
- "@export_flags_2d_navigation",
- "@export_flags_2d_physics",
- "@export_flags_2d_render",
- "@export_flags_3d_navigation",
- "@export_flags_3d_physics",
- "@export_flags_3d_render",
- "@export_flags_avoidance",
- "@export_global_dir",
- "@export_global_file",
- "@export_group",
- "@export_multiline",
- "@export_node_path",
- "@export_placeholder",
- "@export_range",
- "@export_storage",
- "@export_subgroup",
- "@export_tool_button",
- "@icon",
- "@onready",
- "@rpc",
- "@static_unload",
- "@tool",
- "@warning_ignore",
- ),
- prefix=r"(?<!\.)",
- suffix=r"\b",
- ),
- Name.Decorator,
- ),
- ],
- "numbers": [
- (
- r"(-)?((\d|(?<=\d)_)+\.(\d|(?<=\d)_)*|(\d|(?<=\d)_)*\.(\d|(?<=\d)_)+)([eE][+-]?(\d|(?<=\d)_)+)?j?",
- Number.Float,
- ),
- (r"(-)?(\d|(?<=\d)_)+[eE][+-]?(\d|(?<=\d)_)+j?", Number.Float),
- (r"(-)?0[xX]([a-fA-F0-9]|(?<=[a-fA-F0-9])_)+", Number.Hex),
- (r"(-)?0[bB]([01]|(?<=[01])_)+", Number.Bin),
- (r"(-)?(\d|(?<=\d)_)+j?", Number.Integer),
- ],
- "name": [(r"@?[a-zA-Z_]\w*", Name)],
- "funcname": [(r"[a-zA-Z_]\w*", Name.Function, "#pop"), default("#pop")],
- "classname": [(r"[a-zA-Z_]\w*", Name.Class, "#pop")],
- "stringescape": [
- (
- r'\\([\\abfnrtv"\']|\n|N\{.*?\}|u[a-fA-F0-9]{4}|'
- r"U[a-fA-F0-9]{8}|x[a-fA-F0-9]{2}|[0-7]{1,3})",
- String.Escape,
- )
- ],
- "strings-single": innerstring_rules(String.Single),
- "strings-double": innerstring_rules(String.Double),
- "dqs": [
- (r'"', String.Double, "#pop"),
- (r'\\\\|\\"|\\\n', String.Escape), # included here for raw strings
- include("strings-double"),
- ],
- "sqs": [
- (r"'", String.Single, "#pop"),
- (r"\\\\|\\'|\\\n", String.Escape), # included here for raw strings
- include("strings-single"),
- ],
- "tdqs": [
- (r'"""', String.Double, "#pop"),
- include("strings-double"),
- (r"\n", Whitespace),
- ],
- "tsqs": [
- (r"'''", String.Single, "#pop"),
- include("strings-single"),
- (r"\n", Whitespace),
- ],
- }
- def setup(sphinx):
- sphinx.add_lexer("gdscript", GDScriptLexer)
- return {
- "parallel_read_safe": True,
- "parallel_write_safe": True,
- }
|