Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
WhalesState committed Dec 20, 2024
1 parent 29451e4 commit ddaa6f8
Show file tree
Hide file tree
Showing 6 changed files with 218 additions and 4 deletions.
25 changes: 23 additions & 2 deletions pixel/main_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,32 @@

#include "main_tree.h"

#include "core/config/project_settings.h"
#include "pixel/pixel_engine.h"
#include "scene/main/window.h"

MainTree *MainTree::singleton = nullptr;

void MainTree::initialize() {
SceneTree::initialize();

// DisplayServer::get_singleton()->window_set_vsync_mode(DisplayServer::VSyncMode::VSYNC_DISABLED);
// ProjectSettings::get_singleton()->set("debug/settings/stdout/print_fps", true);

// List<PropertyInfo> plist;
// ProjectSettings::get_singleton()->get_property_list(&plist);

// for (const PropertyInfo &E : plist) {
// print_line(E.name);
// }

// print_line(PixelEngine::get_singleton()->get_name());
// print_line(Engine::get_singleton()->get_version_info());
// print_line(OS::get_singleton()->get_current_rendering_driver_name());
// print_line(OS::get_singleton()->get_current_rendering_method());
// OS::get_singleton()->shell_show_in_file_manager(OS::get_singleton()->get_user_data_dir(), true);

if (!FileAccess::exists(OS::get_singleton()->get_user_data_dir().path_join("settings.pixel"))) {
ProjectSettings::get_singleton()->save();
}
}

MainTree::MainTree() {
Expand All @@ -46,4 +66,5 @@ MainTree::MainTree() {
root->set_title("Pixel Engine");
root->set_name("Root");
root->set_auto_translate_mode(Node::AUTO_TRANSLATE_MODE_DISABLED);
root->add_child(memnew(PixelEngine));
}
4 changes: 2 additions & 2 deletions pixel/main_tree.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
#include "scene/main/scene_tree.h"

class MainTree : public SceneTree {
GDCLASS(MainTree, SceneTree);
GDCLASS(MainTree, SceneTree)

static inline MainTree *singleton;
Window *root = nullptr;
static MainTree *singleton;

public:
static MainTree *get_singleton() { return singleton; }
Expand Down
46 changes: 46 additions & 0 deletions pixel/pixel_engine.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/**************************************************************************/
/* pixel_engine.cpp */
/**************************************************************************/
/* PIXEL ENGINE */
/**************************************************************************/
/* Copyright (c) 2024-present Pixel Engine contributors (see AUTHORS.md). */
/* */
/* 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. */
/**************************************************************************/

#include "pixel_engine.h"

// #include "core/input/input_event.h"
#include "pixel/user_interface.h"

void PixelEngine::_notification(int p_what) {
}

void PixelEngine::shortcut_input(const Ref<InputEvent> &p_event) {
// Shortcuts.
}

PixelEngine::PixelEngine() {
set_name("PixelEngine");
singleton = this;
set_process_shortcut_input(true);

add_child(memnew(UserInterface));
}
51 changes: 51 additions & 0 deletions pixel/pixel_engine.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**************************************************************************/
/* pixel_engine.h */
/**************************************************************************/
/* PIXEL ENGINE */
/**************************************************************************/
/* Copyright (c) 2024-present Pixel Engine contributors (see AUTHORS.md). */
/* */
/* 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. */
/**************************************************************************/

#ifndef PIXEL_ENGINE_H
#define PIXEL_ENGINE_H

#include "scene/main/node.h"

class UserInterface;

class PixelEngine : public Node {
GDCLASS(PixelEngine, Node)

static inline PixelEngine *singleton;

protected:
void _notification(int p_what);
void shortcut_input(const Ref<InputEvent> &p_event) override;

public:
static PixelEngine *get_singleton() { return singleton; }

PixelEngine();
~PixelEngine() {}
};

#endif // PIXEL_ENGINE_H
45 changes: 45 additions & 0 deletions pixel/user_interface.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/**************************************************************************/
/* user_interface.cpp */
/**************************************************************************/
/* PIXEL ENGINE */
/**************************************************************************/
/* Copyright (c) 2024-present Pixel Engine contributors (see AUTHORS.md). */
/* */
/* 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. */
/**************************************************************************/

#include "user_interface.h"
#include "scene/gui/box_container.h"

void UserInterface::_notification(int p_what) {
}

UserInterface::UserInterface() {
singleton = this;
set_name("UserInterface");
set_anchors_and_offsets_preset(PRESET_FULL_RECT);
set_theme_type_variation("FlatPanel");

main_vbox = memnew(VBoxContainer);
add_child(main_vbox);

top_hbox = memnew(HBoxContainer);
main_vbox->add_child(top_hbox);
}
51 changes: 51 additions & 0 deletions pixel/user_interface.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**************************************************************************/
/* user_interface.h */
/**************************************************************************/
/* PIXEL ENGINE */
/**************************************************************************/
/* Copyright (c) 2024-present Pixel Engine contributors (see AUTHORS.md). */
/* */
/* 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. */
/**************************************************************************/

#ifndef USER_INTERFACE_H
#define USER_INTERFACE_H

#include "scene/gui/panel_container.h"

class HBoxContainer;
class VBoxContainer;

class UserInterface : public PanelContainer {
GDCLASS(UserInterface, PanelContainer)

static inline UserInterface *singleton;
VBoxContainer *main_vbox;
HBoxContainer *top_hbox;

public:
static UserInterface *get_singleton() { return singleton; }

void _notification(int p_what);

UserInterface();
};

#endif // USER_INTERFACE_H

0 comments on commit ddaa6f8

Please sign in to comment.