Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/language_server/gdscript_text_document.h
10278 views
1
/**************************************************************************/
2
/* gdscript_text_document.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "godot_lsp.h"
34
35
#include "core/io/file_access.h"
36
#include "core/object/ref_counted.h"
37
38
class GDScript;
39
40
class GDScriptTextDocument : public RefCounted {
41
GDCLASS(GDScriptTextDocument, RefCounted)
42
protected:
43
static void _bind_methods();
44
45
Ref<FileAccess> file_checker;
46
47
Array native_member_completions;
48
49
private:
50
Array find_symbols(const LSP::TextDocumentPositionParams &p_location, List<const LSP::DocumentSymbol *> &r_list);
51
LSP::TextDocumentItem load_document_item(const Variant &p_param);
52
void notify_client_show_symbol(const LSP::DocumentSymbol *symbol);
53
54
public:
55
void didOpen(const Variant &p_param);
56
void didClose(const Variant &p_param);
57
void didChange(const Variant &p_param);
58
void willSaveWaitUntil(const Variant &p_param);
59
void didSave(const Variant &p_param);
60
61
void reload_script(Ref<GDScript> p_to_reload_script);
62
void sync_script_content(const String &p_path, const String &p_content);
63
void show_native_symbol_in_editor(const String &p_symbol_id);
64
65
Variant nativeSymbol(const Dictionary &p_params);
66
Array documentSymbol(const Dictionary &p_params);
67
Array completion(const Dictionary &p_params);
68
Dictionary resolve(const Dictionary &p_params);
69
Dictionary rename(const Dictionary &p_params);
70
Variant prepareRename(const Dictionary &p_params);
71
Array references(const Dictionary &p_params);
72
Array foldingRange(const Dictionary &p_params);
73
Array codeLens(const Dictionary &p_params);
74
Array documentLink(const Dictionary &p_params);
75
Array colorPresentation(const Dictionary &p_params);
76
Variant hover(const Dictionary &p_params);
77
Array definition(const Dictionary &p_params);
78
Variant declaration(const Dictionary &p_params);
79
Variant signatureHelp(const Dictionary &p_params);
80
81
void initialize();
82
83
GDScriptTextDocument();
84
};
85
86