Compare commits
22 Commits
5cccf3ace9
...
topic/bg/c
Author | SHA1 | Date | |
---|---|---|---|
9a5918f3f7 | |||
18ebf33e2c | |||
d8065f6266 | |||
f25548085f | |||
85d787151a | |||
d69b144ebe | |||
a686df5bf6 | |||
3500a288bc | |||
e51908ae09 | |||
4ea7575057 | |||
e3ed4a3b43 | |||
3f507fd19e | |||
f8ec08008a | |||
4942012da1 | |||
9501954587 | |||
751533dcf6 | |||
5a1997873d | |||
5cd29460fb | |||
7a2052575d | |||
a475a0c82d | |||
32da34cad6 | |||
af633a4fdf |
3
.clangd
Normal file
3
.clangd
Normal file
@@ -0,0 +1,3 @@
|
||||
CompileFlags:
|
||||
Remove: [-fmodules-ts, -mno-shared, -mno-llsc, -march=r2000, -mtune=r2000, implied_comparison_category_type_not_found]
|
||||
Compiler: mipsel-linux-gnu-g++
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -9,6 +9,8 @@
|
||||
**/config
|
||||
|
||||
.lfsconfig
|
||||
.cache
|
||||
compile_commands.json
|
||||
|
||||
*.d
|
||||
*.a
|
||||
|
3
examples/PoolBox/.gitignore
vendored
3
examples/PoolBox/.gitignore
vendored
@@ -4,4 +4,5 @@
|
||||
*.d
|
||||
*.o
|
||||
*.lba
|
||||
**/bin
|
||||
**/bin
|
||||
**/auto_gen
|
@@ -11,7 +11,7 @@
|
||||
{
|
||||
"label": "build",
|
||||
"type": "shell",
|
||||
"command": "${env:JABY_ENGINE_PATH}/scripts/podman_jaby_engine.sh ${workspaceFolder}:. make ${input:project}_${input:target} BUILD_PROFILE=${input:build profile} REGION=${input:region} CUSTOM_CONFIG=${input:custom config}",
|
||||
"command": "${env:JABY_ENGINE_PATH}/scripts/podman_jaby_engine.sh ${workspaceFolder}:. bear -- make ${input:project}_${input:target} BUILD_PROFILE=${input:build profile} REGION=${input:region} CUSTOM_CONFIG=${input:custom config}",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
|
@@ -1,4 +1,5 @@
|
||||
#pragma once
|
||||
#include "auto_gen/vram_layout.hpp"
|
||||
#include <PSX/File/cd_file_types.hpp>
|
||||
|
||||
namespace Assets {
|
||||
@@ -11,11 +12,6 @@ namespace Assets {
|
||||
};
|
||||
|
||||
static constexpr auto PacoTIM = SimpleTIM::create(896, 0, 960, 510);
|
||||
static constexpr auto DoenerFishInfo = ImageInfo{
|
||||
.tim = SimpleTIM::create(896 + 30, 0, 960 + 16, 510),
|
||||
.size = GPU::SizeI16::create(128, 64)
|
||||
};
|
||||
|
||||
namespace JabyLoader {
|
||||
static constexpr auto TIMLoaction = SimpleTIM::create(PacoTIM.get_texture_x(), PacoTIM.get_texture_y() + 128, 960 + 48, 510);
|
||||
static constexpr auto JabyFrame = GPU::AreaI16::create(0, 0, 32, 44);
|
||||
|
@@ -1,3 +1,4 @@
|
||||
#include "../../../include/auto_gen/vram_layout.hpp"
|
||||
#include "../../../include/shared.hpp"
|
||||
#include "include/controller_state.hpp"
|
||||
#include <PSX/Periphery/periphery.hpp>
|
||||
|
@@ -1,4 +1,4 @@
|
||||
#include "include/controller_test_assets.hpp"
|
||||
#include "../../../include/auto_gen/vram_layout.hpp"
|
||||
#include <PSX/File/Processor/cd_file_processor.hpp>
|
||||
#include <PSX/AutoLBA/auto_lba_declaration.hpp>
|
||||
|
||||
@@ -13,6 +13,6 @@ namespace ControllerTest {
|
||||
__declare_lba_header(LBA);
|
||||
|
||||
CDFile Assets[1] = {
|
||||
CDFileBuilder::simple_tim(LBA::CONT, ControllerButtonTIM),
|
||||
CDFileBuilder::simple_tim(LBA::CONT, Controller_png::tim),
|
||||
};
|
||||
}
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
#include "controller_test_assets.hpp"
|
||||
#include "../../../../include/auto_gen/vram_layout.hpp"
|
||||
#include <FontWriter/font_writer.hpp>
|
||||
#include <PSX/GPU/make_gpu_primitives.hpp>
|
||||
#include <PSX/Periphery/controller.hpp>
|
||||
@@ -18,43 +18,43 @@ namespace ControllerTest {
|
||||
ControllerState state;
|
||||
|
||||
for(auto& tex_page : state.tex_page) {
|
||||
tex_page = Make::TexPage(ControllerButtonTIM.get_texture_position(), GPU::TextureColorMode::clut4).linked();
|
||||
tex_page = Make::TexPage(Controller_png::tim.get_texture_position(), GPU::TextureColorMode::clut4).linked();
|
||||
}
|
||||
|
||||
for(auto& buttons : state.buttons) {
|
||||
// Triangle
|
||||
buttons[0] = Make::SPRT_16(Make::Vertex(71, 0).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(0, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[0] = Make::SPRT_16(Make::Vertex(71, 0).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(0, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// Circle
|
||||
buttons[1] = Make::SPRT_16(Make::Vertex(82, 12).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(1, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[1] = Make::SPRT_16(Make::Vertex(82, 12).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(1, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// Cross
|
||||
buttons[2] = Make::SPRT_16(Make::Vertex(71, 23).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(2, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[2] = Make::SPRT_16(Make::Vertex(71, 23).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(2, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// Square
|
||||
buttons[3] = Make::SPRT_16(Make::Vertex(60, 11).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(3, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[3] = Make::SPRT_16(Make::Vertex(60, 11).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(3, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// Play
|
||||
buttons[4] = Make::SPRT_16(Make::Vertex(51, 21).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(4, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[4] = Make::SPRT_16(Make::Vertex(51, 21).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(4, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// Block
|
||||
buttons[5] = Make::SPRT_16(Make::Vertex(24, 21).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(5, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[5] = Make::SPRT_16(Make::Vertex(24, 21).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(5, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// L1
|
||||
buttons[6] = Make::SPRT_16(Make::Vertex(7, 39).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(7, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[6] = Make::SPRT_16(Make::Vertex(7, 39).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(7, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// L2
|
||||
buttons[7] = Make::SPRT_16(Make::Vertex(7, 49).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(8, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[7] = Make::SPRT_16(Make::Vertex(7, 49).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(8, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// R1
|
||||
buttons[8] = Make::SPRT_16(Make::Vertex(71, 39).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(7, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[8] = Make::SPRT_16(Make::Vertex(71, 39).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(7, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// R2
|
||||
buttons[9] = Make::SPRT_16(Make::Vertex(71, 49).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(8, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[9] = Make::SPRT_16(Make::Vertex(71, 49).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(8, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// L3
|
||||
buttons[10] = Make::SPRT_16(Make::Vertex(24, 34).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(9, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[10] = Make::SPRT_16(Make::Vertex(24, 34).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(9, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// R3
|
||||
buttons[11] = Make::SPRT_16(Make::Vertex(52, 34).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(9, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[11] = Make::SPRT_16(Make::Vertex(52, 34).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(9, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
// Connection Symbol
|
||||
buttons[12] = Make::SPRT_16(Make::Vertex(37, 9).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(10, Make::SizeI16(16, 16)), Make::PageClut(ControllerButtonTIM.get_clut_position()))).linked();
|
||||
buttons[12] = Make::SPRT_16(Make::Vertex(37, 9).move(offset.x, offset.y), Make::OffsetPageWithClut(GPU::PageOffset::from_tile_id16(10, Make::SizeI16(16, 16)), Make::PageClut(Controller_png::tim.get_clut_position()))).linked();
|
||||
}
|
||||
|
||||
for(auto& arrows : state.arrows) {
|
||||
arrows[0] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect( Make::AreaI16(Make::PositionI16( 7, 5).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(ControllerButtonTIM.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(ControllerButtonTIM.get_clut_position())).linked();
|
||||
arrows[1] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect270(Make::AreaI16(Make::PositionI16(14, 11).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(ControllerButtonTIM.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(ControllerButtonTIM.get_clut_position())).linked();
|
||||
arrows[2] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect180(Make::AreaI16(Make::PositionI16( 7, 17).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(ControllerButtonTIM.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(ControllerButtonTIM.get_clut_position())).linked();
|
||||
arrows[3] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect90( Make::AreaI16(Make::PositionI16( 0, 11).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(ControllerButtonTIM.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(ControllerButtonTIM.get_clut_position())).linked();
|
||||
arrows[0] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect( Make::AreaI16(Make::PositionI16( 7, 5).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(Controller_png::tim.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(Controller_png::tim.get_clut_position())).linked();
|
||||
arrows[1] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect270(Make::AreaI16(Make::PositionI16(14, 11).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(Controller_png::tim.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(Controller_png::tim.get_clut_position())).linked();
|
||||
arrows[2] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect180(Make::AreaI16(Make::PositionI16( 7, 17).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(Controller_png::tim.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(Controller_png::tim.get_clut_position())).linked();
|
||||
arrows[3] = Make::POLY_FT4(__jabyengine_polyFT4_vertex_rect90( Make::AreaI16(Make::PositionI16( 0, 11).move(offset.x, offset.y), Make::SizeI16(16, 16)), Make::PositionI16(6*16, 0)), Make::TPage(Controller_png::tim.get_texture_position(), GPU::SemiTransparency::B_Half_add_F_Half, GPU::TextureColorMode::clut4), Make::PageClut(Controller_png::tim.get_clut_position())).linked();
|
||||
}
|
||||
|
||||
return state;
|
||||
|
@@ -1,8 +0,0 @@
|
||||
#pragma once
|
||||
#include <PSX/File/cd_file_types.hpp>
|
||||
|
||||
namespace ControllerTest {
|
||||
using namespace JabyEngine;
|
||||
|
||||
static constexpr auto ControllerButtonTIM = SimpleTIM::create(384, 0, 384, 511);
|
||||
}
|
@@ -86,10 +86,10 @@ namespace GTETest {
|
||||
}
|
||||
|
||||
static auto doener_fish = GTE_Sprite::create(Make::POLY_FT4(
|
||||
Make::AreaI16(Make::PositionI16(0, 0), Assets::Main::DoenerFishInfo.size),
|
||||
Assets::Main::DoenerFishInfo.tim.get_page_offset_clut4(),
|
||||
Make::TPage(Assets::Main::DoenerFishInfo.tim.get_texture_position(), GPU::SemiTransparency::B_add_F, GPU::TextureColorMode::clut4),
|
||||
Make::PageClut(Assets::Main::DoenerFishInfo.tim.get_clut_position()),
|
||||
Make::AreaI16(Make::PositionI16(0, 0), doener_fish_png::size),
|
||||
doener_fish_png::tim.get_page_offset_clut4(),
|
||||
Make::TPage(doener_fish_png::tim.get_texture_position(), GPU::SemiTransparency::B_add_F, GPU::TextureColorMode::clut4),
|
||||
Make::PageClut(doener_fish_png::tim.get_clut_position()),
|
||||
GPU::Color24::Grey()
|
||||
).linked());
|
||||
|
||||
|
@@ -6,8 +6,8 @@ namespace GTETest {
|
||||
using namespace JabyEngine;
|
||||
|
||||
static constexpr auto JabySTARTim = SimpleTIM::create(
|
||||
// v Doenerfisch rotates so we need some space
|
||||
Assets::Main::DoenerFishInfo.tim.get_texture_x(), Assets::Main::DoenerFishInfo.tim.get_texture_y() + Assets::Main::DoenerFishInfo.size.height + 2,
|
||||
Assets::Main::DoenerFishInfo.tim.get_clut_x() + 16, Assets::Main::DoenerFishInfo.tim.get_clut_y()
|
||||
// v Dönerfisch rotates so we need some space
|
||||
doener_fish_png::tim.get_texture_x(), doener_fish_png::tim.get_texture_y() + doener_fish_png::size.height + 2,
|
||||
doener_fish_png::tim.get_clut_x() + 16, doener_fish_png::tim.get_clut_y()
|
||||
);
|
||||
}
|
@@ -108,8 +108,9 @@ static const Menu::SimpleMenu::Entry MenuEntries[] = {
|
||||
};
|
||||
|
||||
static const auto doener_fish = Make::SPRT(
|
||||
Make::AreaI16(Make::PositionI16(8, GPU::Display::Height - Assets::Main::DoenerFishInfo.size.height), Assets::Main::DoenerFishInfo.size), // v this needs to be nicer! Has to be
|
||||
Make::OffsetPageWithClut(Assets::Main::DoenerFishInfo.tim.get_page_offset_clut4(), Make::PageClut(Assets::Main::DoenerFishInfo.tim.get_clut_position())),
|
||||
Make::AreaI16(Make::PositionI16(8, GPU::Display::Height - doener_fish_png::size.height), doener_fish_png::size),
|
||||
// v this needs to be nicer! Has to be
|
||||
Make::OffsetPageWithClut(doener_fish_png::tim.get_page_offset_clut4(), Make::PageClut(doener_fish_png::tim.get_clut_position())),
|
||||
GPU::Color24::Grey()
|
||||
);
|
||||
|
||||
|
@@ -68,7 +68,7 @@ namespace Assets {
|
||||
|
||||
static const CDFile Files[] = {
|
||||
CDFileBuilder::simple_tim(LBA::PACO, PacoTIM),
|
||||
CDFileBuilder::simple_tim(LBA::DFISH, DoenerFishInfo.tim),
|
||||
CDFileBuilder::simple_tim(LBA::DFISH, doener_fish_png::tim),
|
||||
CDFileBuilder::simple_tim(LBA::JABY_LOAD, JabyLoader::TIMLoaction),
|
||||
CDFileBuilder::sony_vag(LBA::APPLE_SFX, VAG::create(0, 1.0_vol)),
|
||||
CDFileBuilder::sony_vag(LBA::BLUBB_SFX, VAG::create(1, 1.0_vol)),
|
||||
|
@@ -1,7 +1,8 @@
|
||||
include $(JABY_ENGINE_DIR)/mkfile/common/ExportPath.mk
|
||||
include $(JABY_ENGINE_DIR)/mkfile/common/RebuildTarget.mk
|
||||
|
||||
OUTPUT_DIR = bin
|
||||
OUTPUT_DIR = bin
|
||||
AUTO_GEN_DIR = ../application/include/auto_gen
|
||||
CLUT_4_COLOR_TRANS_FLAGS = simple-tim clut4 --color-trans
|
||||
|
||||
# Ressources to convert
|
||||
@@ -22,12 +23,6 @@ IconTexture_FLAGS = simple-tim clut4 --semi-trans --color-trans
|
||||
INPUT += $(OUTPUT_DIR)/Paco.img
|
||||
Paco_FLAGS = $(CLUT_4_COLOR_TRANS_FLAGS)
|
||||
|
||||
INPUT += $(OUTPUT_DIR)/Controller.img
|
||||
Controller_FLAGS = $(CLUT_4_COLOR_TRANS_FLAGS)
|
||||
|
||||
INPUT += $(OUTPUT_DIR)/doener_fish.img
|
||||
doener_fish_FLAGS = $(CLUT_4_COLOR_TRANS_FLAGS)
|
||||
|
||||
INPUT += $(OUTPUT_DIR)/JabyStar.img
|
||||
JabyStar_FLAGS = $(CLUT_4_COLOR_TRANS_FLAGS)
|
||||
|
||||
@@ -60,7 +55,12 @@ $(OUTPUT_DIR)/%.tim: %.png
|
||||
@mkdir -p $(OUTPUT_DIR)
|
||||
psxfileconv --lz4 $< -o $@ $($*_TIM_FLAGS)
|
||||
|
||||
all: $(INPUT)
|
||||
$(AUTO_GEN_DIR)/vram_layout.hpp: tim_example.tim_project Controller.png doener_fish.png
|
||||
@mkdir -p $(AUTO_GEN_DIR)
|
||||
psxfileconv tim_example.tim_project -o $(OUTPUT_DIR)/dummy.img project --hpp $(AUTO_GEN_DIR)/vram_layout.hpp
|
||||
|
||||
all: $(INPUT) $(AUTO_GEN_DIR)/vram_layout.hpp
|
||||
|
||||
clean:
|
||||
rm -fr $(OUTPUT_DIR)
|
||||
rm -fr $(OUTPUT_DIR)
|
||||
rm -fr $(AUTO_GEN_DIR)
|
1
examples/PoolBox/assets/tim_example.tim_project
Normal file
1
examples/PoolBox/assets/tim_example.tim_project
Normal file
@@ -0,0 +1 @@
|
||||
{"jobs":[{"name":"doener_fish.png","file_path":"doener_fish.png","image_pos":{"x":926,"y":0},"palette_rect":{"pos":{"x":976,"y":510},"size":{"width":16,"height":1}},"settings":{"compress":true,"transparency":"FirstColor","encoding":"FourBit"}},{"name":"Controller.png","file_path":"Controller.png","image_pos":{"x":384,"y":0},"palette_rect":{"pos":{"x":384,"y":511},"size":{"width":16,"height":1}},"settings":{"compress":true,"transparency":"FirstColor","encoding":"FourBit"}}]}
|
@@ -224,7 +224,7 @@ namespace JabyEngine {
|
||||
return Size::create(static_cast<T>(size.width), static_cast<T>(size.height));
|
||||
}
|
||||
|
||||
auto operator<=>(const Size<T>&) const = default;
|
||||
bool operator<=>(const Size<T>&) const = default;
|
||||
};
|
||||
using SizeI8 = Size<int8_t>;
|
||||
using SizeU8 = Size<uint8_t>;
|
||||
|
@@ -19,13 +19,13 @@
|
||||
{
|
||||
"label": "make",
|
||||
"type": "shell",
|
||||
"command": "../../scripts/podman_jaby_engine.sh ../../:src/Library make ${input:target} BUILD_PROFILE=${input:build cfg} PSX_TV_FORMAT=${input:tv format} CUSTOM_CONFIG=${input:config options}",
|
||||
"command": "../../scripts/podman_jaby_engine.sh ../../:src/Library bear --output ${workspaceFolder}/../../compile_commands.json -- make ${input:target} BUILD_PROFILE=${input:build cfg} PSX_TV_FORMAT=${input:tv format} CUSTOM_CONFIG=${input:config options}",
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "make_all",
|
||||
"type": "shell",
|
||||
"command": "../../scripts/podman_jaby_engine.sh ../../:src/Library make -f MakeAll.mk ${input:target prefix}_${input:target} BUILD_PROFILE=${input:build cfg} CUSTOM_CONFIG=${input:config options}",
|
||||
"command": "../../scripts/podman_jaby_engine.sh ../../:src/Library bear --output ${workspaceFolder}/../../compile_commands.json -- make -f MakeAll.mk ${input:target prefix}_${input:target} BUILD_PROFILE=${input:build cfg} CUSTOM_CONFIG=${input:config options}",
|
||||
"group": "build"
|
||||
}
|
||||
],
|
||||
@@ -75,29 +75,5 @@
|
||||
},
|
||||
"settings": {
|
||||
"cmake.configureOnOpen": false,
|
||||
"C_Cpp.default.includePath": [
|
||||
"include",
|
||||
"../../include"
|
||||
],
|
||||
"C_Cpp.default.compilerPath": "",
|
||||
"C_Cpp.default.cStandard": "c17",
|
||||
"C_Cpp.default.cppStandard": "c++20",
|
||||
"C_Cpp.default.intelliSenseMode": "linux-gcc-x86",
|
||||
"C_Cpp.default.compilerArgs": [
|
||||
],
|
||||
"C_Cpp.default.defines": [
|
||||
"JABYENGINE_PAL",
|
||||
"__DEBUG_SPU_MMU__",
|
||||
"__friends=public"
|
||||
],
|
||||
"files.exclude": {
|
||||
"**/*.o": true,
|
||||
"**/*.dep": true
|
||||
},
|
||||
"files.associations": {
|
||||
"stdio.h": "c",
|
||||
"TUTO0.C": "cpp",
|
||||
"MAIN.C": "cpp"
|
||||
}
|
||||
}
|
||||
}
|
5748
src/Tools/psxfileconv/Cargo.lock
generated
5748
src/Tools/psxfileconv/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -28,11 +28,15 @@ symphonia-vorbis = ["symphonia", "symphonia/vorbis"]
|
||||
[dependencies]
|
||||
bitflags = "2.8.0"
|
||||
cdtypes = {path = "../cdtypes"}
|
||||
cpp_out = {path = "../cpp_out"}
|
||||
clap = {version = "4.5.27", features = ["derive"]}
|
||||
image = "0.24.9"
|
||||
hound = "3.5.1"
|
||||
paste = "1.0.15"
|
||||
png = "0.17.16"
|
||||
rubato = "0.16.1"
|
||||
serde = {version = "1.0.219", features = ["derive"]}
|
||||
serde_json = "1.0"
|
||||
symphonia = {version = "0.5.4", optional = true, default-features = false}
|
||||
tim_tool = {path = "../tim_tool"}
|
||||
tool_helper = {path = "../tool_helper"}
|
||||
|
@@ -23,7 +23,7 @@ pub struct Point {
|
||||
}
|
||||
|
||||
impl Point {
|
||||
pub const POINT_VALUE_NAME:&'static str = "{x,y}";
|
||||
pub const POINT_VALUE_NAME:&'static str = "{x,y}";
|
||||
}
|
||||
|
||||
impl std::default::Default for Point {
|
||||
|
@@ -36,7 +36,8 @@ fn modify_palette(mut image: IndexedImage, clut_align: ClutAlignment, semi_trans
|
||||
image
|
||||
}
|
||||
|
||||
fn encode<T: PSXImageConverter>(header_conv: &mut dyn HeaderEncoder, image: T, tex_pos: Point, clut_pos: Point, color_depth: ColorType, clut_align: ClutAlignment, output: &mut dyn Write) -> Result<(), Error> {
|
||||
fn encode<T: PSXImageConverter>(header_conv: &mut dyn HeaderEncoder, image: T, tex_pos: Point, clut_pos: Point, color_depth: ColorType, clut_align: ClutAlignment, output: &mut dyn Write) -> Result<(u16, u16), Error> {
|
||||
let image_size = (image.width(), image.height());
|
||||
let (width, height) = {
|
||||
fn return_error(clut_type: u32, div: u32, width: u16, height: u16) -> Result<(u16, u16), Error> {
|
||||
return Err(Error::from_callback(|| {format!("CLUT {} images require a width divideable by {} (found width: {}/{}={}, height: {})", clut_type, div, width, div, (width as f32/div as f32), height)}));
|
||||
@@ -115,10 +116,10 @@ fn encode<T: PSXImageConverter>(header_conv: &mut dyn HeaderEncoder, image: T, t
|
||||
tool_helper::raw::write_raw(output, &color)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
Ok(image_size)
|
||||
}
|
||||
|
||||
fn convert_full16(header_conv: &mut dyn HeaderEncoder, input: Input, output: &mut dyn Write, tex_pos: Point) -> Result<(), Error> {
|
||||
fn convert_full16(header_conv: &mut dyn HeaderEncoder, input: Input, output: &mut dyn Write, tex_pos: Point) -> Result<(u16, u16), Error> {
|
||||
match ImageReader::new(Cursor::new(tool_helper::input_to_vec(input)?)).with_guessed_format()?.decode() {
|
||||
Ok(image) => {
|
||||
match image {
|
||||
@@ -132,7 +133,7 @@ fn convert_full16(header_conv: &mut dyn HeaderEncoder, input: Input, output: &mu
|
||||
}
|
||||
}
|
||||
|
||||
fn convert_palette_based(header_conv: &mut dyn HeaderEncoder, input: Input, output: &mut dyn Write, tex_pos: Point, clut_pos: Point, color_type: ColorType, clut_align: ClutAlignment, semi_transparent: bool, transparent_palette: bool) -> Result<(), Error> {
|
||||
fn convert_palette_based(header_conv: &mut dyn HeaderEncoder, input: Input, output: &mut dyn Write, tex_pos: Point, clut_pos: Point, color_type: ColorType, clut_align: ClutAlignment, semi_transparent: bool, transparent_palette: bool) -> Result<(u16, u16), Error> {
|
||||
match png::Decoder::new(input).read_info() {
|
||||
Ok(reader) => {
|
||||
let output_type = {
|
||||
|
@@ -7,7 +7,7 @@ use tool_helper::{Error, Input};
|
||||
|
||||
pub type Arguments = super::args::Arguments;
|
||||
|
||||
pub fn convert(args: Arguments, input: Input, output: &mut dyn Write) -> Result<(), Error> {
|
||||
pub fn convert(args: Arguments, input: Input, output: &mut dyn Write) -> Result<(u16, u16), Error> {
|
||||
let mut header_conv = Header::default();
|
||||
match args.color_depth {
|
||||
ColorType::Full16 => super::convert_full16(&mut header_conv, input, output, Point::default()),
|
||||
|
@@ -9,16 +9,16 @@ use tool_helper::{Error, Input};
|
||||
#[derive(Args)]
|
||||
pub struct Arguments {
|
||||
#[clap(flatten)]
|
||||
global: super::args::Arguments,
|
||||
pub(crate) global: super::args::Arguments,
|
||||
|
||||
#[clap(long, value_parser, default_value_t, value_name = Point::POINT_VALUE_NAME)]
|
||||
clut_pos: Point,
|
||||
pub(crate) clut_pos: Point,
|
||||
|
||||
#[clap(long, value_parser, default_value_t, value_name = Point::POINT_VALUE_NAME)]
|
||||
tex_pos: Point,
|
||||
pub(crate) tex_pos: Point,
|
||||
}
|
||||
|
||||
pub fn convert(args: Arguments, input: Input, output: &mut dyn Write) -> Result<(), Error> {
|
||||
pub fn convert(args: Arguments, input: Input, output: &mut dyn Write) -> Result<(u16, u16), Error> {
|
||||
let global_args = args.global;
|
||||
let mut header_conv = Header::default();
|
||||
|
||||
|
@@ -1,3 +1,88 @@
|
||||
pub mod audio;
|
||||
pub mod images;
|
||||
pub mod nothing;
|
||||
pub mod nothing;
|
||||
pub mod project;
|
||||
|
||||
use crate::audio::*;
|
||||
use crate::images::*;
|
||||
|
||||
use clap::Subcommand;
|
||||
use std::path::PathBuf;
|
||||
use tool_helper::Error;
|
||||
|
||||
#[derive(Subcommand)]
|
||||
pub enum SubCommands {
|
||||
Nothing,
|
||||
SimpleTIM(reduced_tim::Arguments),
|
||||
TIM(tim::Arguments),
|
||||
VAG(vag::Arguments),
|
||||
XA(xa::Arguments),
|
||||
Project(project::Arguments),
|
||||
}
|
||||
|
||||
pub fn run_subcommand(compress_lz4: bool, input_path: Option<PathBuf>, output_path: Option<PathBuf>, sub_command: SubCommands) -> Result<Option<(u16, u16)>, Error> {
|
||||
let mut input = tool_helper::open_input(&input_path)?;
|
||||
let mut buffer = Vec::<u8>::new();
|
||||
let mut output_file = tool_helper::open_output(&output_path)?;
|
||||
let dst_buffer = {
|
||||
if compress_lz4 {
|
||||
&mut buffer as &mut dyn std::io::Write
|
||||
}
|
||||
|
||||
else {
|
||||
&mut output_file as &mut dyn std::io::Write
|
||||
}
|
||||
};
|
||||
|
||||
let cmd_result: Result<Option<(u16, u16)>, Error> = {
|
||||
match sub_command {
|
||||
SubCommands::Nothing => {
|
||||
nothing::copy(&mut input, dst_buffer)?;
|
||||
Ok(None)
|
||||
},
|
||||
SubCommands::SimpleTIM(args) => {
|
||||
Ok(Some(reduced_tim::convert(args, input, dst_buffer)?))
|
||||
},
|
||||
SubCommands::TIM(args) => {
|
||||
Ok(Some(tim::convert(args, input, dst_buffer)?))
|
||||
},
|
||||
SubCommands::VAG(args) => {
|
||||
audio::vag::convert(args, &output_path, input, dst_buffer)?;
|
||||
Ok(None)
|
||||
}
|
||||
SubCommands::XA(args) => {
|
||||
audio::xa::convert(args, input, dst_buffer)?;
|
||||
Ok(None)
|
||||
}
|
||||
SubCommands::Project(args) => {
|
||||
project::run_project(input, args, input_path, &output_path)?;
|
||||
if let Some(file_path) = &output_path {
|
||||
let _result = std::fs::remove_file(file_path);
|
||||
}
|
||||
Ok(None)
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
match cmd_result {
|
||||
Ok(cmd_result) => {
|
||||
// We encoded the file to a temporary buffer and now need to write it
|
||||
if compress_lz4 {
|
||||
let buffer = tool_helper::compress::psx_default::lz4(&buffer)?;
|
||||
output_file.write(&buffer)?;
|
||||
}
|
||||
Ok(cmd_result)
|
||||
}
|
||||
Err(cmd_error) => {
|
||||
if let Some(file_path) = output_path {
|
||||
let _result = std::fs::remove_file(file_path);
|
||||
}
|
||||
|
||||
else {
|
||||
tool_helper::print_warning("Open stream detected! Incomplete file can not be deleted".to_owned());
|
||||
}
|
||||
|
||||
Err(cmd_error)
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,11 +1,11 @@
|
||||
use clap::{Parser, Subcommand};
|
||||
use psxfileconv::{audio::{self, *}, images::*, nothing};
|
||||
use clap::Parser;
|
||||
use std::path::PathBuf;
|
||||
use tool_helper::{exit_with_error, Error};
|
||||
use psxfileconv::{SubCommands, run_subcommand};
|
||||
use tool_helper::exit_with_error;
|
||||
|
||||
#[derive(Parser)]
|
||||
#[clap(about = "Converts files to various JabyEngine related file formats", long_about = None)]
|
||||
struct CommandLine {
|
||||
pub struct CommandLine {
|
||||
#[clap(long="lz4", default_value_t=false)]
|
||||
compress_lz4: bool,
|
||||
|
||||
@@ -19,64 +19,10 @@ struct CommandLine {
|
||||
sub_command: SubCommands,
|
||||
}
|
||||
|
||||
#[derive(Subcommand)]
|
||||
enum SubCommands {
|
||||
Nothing,
|
||||
SimpleTIM(reduced_tim::Arguments),
|
||||
TIM(tim::Arguments),
|
||||
VAG(vag::Arguments),
|
||||
XA(xa::Arguments),
|
||||
}
|
||||
|
||||
fn run_main(cmd: CommandLine) -> Result<(), Error> {
|
||||
let mut input = tool_helper::open_input(&cmd.input_file)?;
|
||||
let mut buffer = Vec::<u8>::new();
|
||||
let mut output_file = tool_helper::open_output(&cmd.output_file)?;
|
||||
let dst_buffer = {
|
||||
if cmd.compress_lz4 {
|
||||
&mut buffer as &mut dyn std::io::Write
|
||||
}
|
||||
|
||||
else {
|
||||
&mut output_file as &mut dyn std::io::Write
|
||||
}
|
||||
};
|
||||
|
||||
let cmd_result: Result<(), Error> = {
|
||||
match cmd.sub_command {
|
||||
SubCommands::Nothing => nothing::copy(&mut input, dst_buffer),
|
||||
SubCommands::SimpleTIM(args) => reduced_tim::convert(args, input, dst_buffer),
|
||||
SubCommands::TIM(args) => tim::convert(args, input, dst_buffer),
|
||||
SubCommands::VAG(args) => audio::vag::convert(args, &cmd.output_file, input, dst_buffer),
|
||||
SubCommands::XA(args) => audio::xa::convert(args, input, dst_buffer),
|
||||
}
|
||||
};
|
||||
|
||||
if let Err(cmd_error) = cmd_result {
|
||||
if let Some(file_path) = cmd.output_file {
|
||||
let _result = std::fs::remove_file(file_path);
|
||||
}
|
||||
|
||||
else {
|
||||
tool_helper::print_warning("Open stream detected! Incomplete file can not be deleted".to_owned());
|
||||
}
|
||||
|
||||
return Err(cmd_error);
|
||||
}
|
||||
|
||||
// We encoded the file to a temporary buffer and now need to write it
|
||||
if cmd.compress_lz4 {
|
||||
let buffer = tool_helper::compress::psx_default::lz4(&buffer)?;
|
||||
output_file.write(&buffer)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() {
|
||||
match CommandLine::try_parse() {
|
||||
Ok(cmd) => {
|
||||
if let Err(error) = run_main(cmd) {
|
||||
if let Err(error) = run_subcommand(cmd.compress_lz4, cmd.input_file, cmd.output_file, cmd.sub_command) {
|
||||
exit_with_error(error);
|
||||
}
|
||||
},
|
||||
|
39
src/Tools/psxfileconv/src/project/hpp_out.rs
Normal file
39
src/Tools/psxfileconv/src/project/hpp_out.rs
Normal file
@@ -0,0 +1,39 @@
|
||||
use std::path::PathBuf;
|
||||
use tim_tool::logic::project::Job;
|
||||
use tool_helper::{Error, Output};
|
||||
|
||||
pub struct CppHeader {
|
||||
file_out: Output,
|
||||
}
|
||||
|
||||
impl CppHeader {
|
||||
pub fn new(file_path: &Option<PathBuf>) -> Result<CppHeader, Error> {
|
||||
let mut file_out = tool_helper::open_output(file_path)?;
|
||||
|
||||
writeln!(file_out, "#pragma once")?;
|
||||
writeln!(file_out, "#include <PSX/File/cd_file_types.hpp>")?;
|
||||
writeln!(file_out, "")?;
|
||||
|
||||
Ok(CppHeader{file_out})
|
||||
}
|
||||
|
||||
pub fn push_job(&mut self, job: &Job, size: (u16, u16)) -> Result<(), Error> {
|
||||
let name = job.name.replace('.', "_");
|
||||
let (clut_x, clut_y) = if let Some(palette_rect) = &job.palette_rect {(palette_rect.pos.x, palette_rect.pos.y)} else {(0, 0)};
|
||||
|
||||
writeln!(self.file_out, "namespace {} {{", name)?;
|
||||
writeln!(self.file_out, "\tusing namespace JabyEngine;")?;
|
||||
writeln!(self.file_out, "")?;
|
||||
writeln!(self.file_out, "\tstatic constexpr auto tim = SimpleTIM::create({}, {}, {}, {});", job.image_pos.x, job.image_pos.y, clut_x, clut_y)?;
|
||||
writeln!(self.file_out, "\tstatic constexpr auto size = GPU::SizeI16::create({}, {});", size.0, size.1)?;
|
||||
writeln!(self.file_out, "}}")?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Drop for CppHeader {
|
||||
fn drop(&mut self) {
|
||||
|
||||
}
|
||||
}
|
90
src/Tools/psxfileconv/src/project/mod.rs
Normal file
90
src/Tools/psxfileconv/src/project/mod.rs
Normal file
@@ -0,0 +1,90 @@
|
||||
mod hpp_out;
|
||||
|
||||
use crate::images::args::{Arguments as IMGArguments, ClutAlignment, ColorType};
|
||||
use clap::Args;
|
||||
use hpp_out::CppHeader;
|
||||
use std::path::PathBuf;
|
||||
use tool_helper::{Error, Input};
|
||||
use tim_tool::logic::{tim::types::Encoding, project::*};
|
||||
|
||||
#[derive(Args)]
|
||||
pub struct Arguments {
|
||||
#[clap(long="hpp", value_parser)]
|
||||
hpp_out_path: Option<PathBuf>
|
||||
}
|
||||
|
||||
pub fn run_project(input: Input, args: Arguments, input_path: Option<PathBuf>, output_path: &Option<PathBuf>) -> Result<(), Error> {
|
||||
let location_path = if let Some(input_path) = input_path {input_path} else {PathBuf::from(".")};
|
||||
let output_path = if let Some(output_path) = &output_path {
|
||||
let mut output_path = output_path.clone();
|
||||
if output_path.is_file() {
|
||||
output_path.pop();
|
||||
}
|
||||
output_path
|
||||
} else {PathBuf::from(".")};
|
||||
let project = serde_json::from_reader::<Input, Project>(input).map_err(|error|{Error::from_text(format!("Reading project failed: {}", error))})?;
|
||||
let mut hpp_out = CppHeader::new(&args.hpp_out_path)?;
|
||||
|
||||
for mut job in project.jobs {
|
||||
let args = to_arguments(&job)?;
|
||||
let output_path = {
|
||||
let mut path = output_path.clone();
|
||||
|
||||
path.push(&job.name);
|
||||
path.set_extension("img");
|
||||
path
|
||||
};
|
||||
|
||||
let sub_command = crate::SubCommands::SimpleTIM(args);
|
||||
let org_img_size = crate::run_subcommand(job.settings.compress, Some(Job::create_file_path(job.file_path, &location_path)), Some(output_path), sub_command)?;
|
||||
|
||||
job.file_path = PathBuf::new();
|
||||
hpp_out.push_job(&job, org_img_size.unwrap_or((0, 0)))?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn to_arguments(job: &Job) -> Result<IMGArguments, Error> {
|
||||
let (semi_transparent, transparent_palette) = get_transparency(&job.settings.transparency);
|
||||
|
||||
return Ok(IMGArguments {
|
||||
color_depth: get_encoding(&job.settings.encoding),
|
||||
clut_align: get_palette_rect(&job.palette_rect)?,
|
||||
semi_transparent,
|
||||
transparent_palette,
|
||||
});
|
||||
|
||||
fn get_transparency(transparency: &Transparency) -> (bool, bool) {
|
||||
match transparency {
|
||||
Transparency::None => (false, false),
|
||||
Transparency::FirstColor => (false, true),
|
||||
Transparency::PSXSemi => (true, false),
|
||||
Transparency::Both => (true, true),
|
||||
}
|
||||
}
|
||||
|
||||
fn get_encoding(encoding: &Encoding) -> ColorType {
|
||||
match encoding {
|
||||
Encoding::FourBit => ColorType::Clut4,
|
||||
Encoding::EightBit => ColorType::Clut8,
|
||||
Encoding::FullColor => ColorType::Full16,
|
||||
}
|
||||
}
|
||||
|
||||
fn get_palette_rect(rect: &Option<PaletteRect>) -> Result<ClutAlignment, Error> {
|
||||
if let Some(rect) = rect {
|
||||
if rect.size.height == 1 {
|
||||
return Ok(ClutAlignment::Linear);
|
||||
}
|
||||
|
||||
if rect.size.width%16 == 0 {
|
||||
return Ok(ClutAlignment::Block);
|
||||
}
|
||||
|
||||
return Err(Error::from_text(format!("psxfileconv currently only supports linear or block CLUTs with a width of 16px")));
|
||||
}
|
||||
|
||||
Ok(ClutAlignment::None)
|
||||
}
|
||||
}
|
1660
src/Tools/tim_tool/Cargo.lock
generated
1660
src/Tools/tim_tool/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -9,15 +9,15 @@ panic = "abort"
|
||||
[dependencies]
|
||||
pathdiff = "0.2.3"
|
||||
png = "0.17.16"
|
||||
rfd = "0.15.2"
|
||||
slint = "1.9.2"
|
||||
serde = {version = "1.0.140", features = ["derive"]}
|
||||
rfd = "0.15.3"
|
||||
slint = "1.10.0"
|
||||
serde = {version = "1.0.219", features = ["derive"]}
|
||||
serde_json = "1.0"
|
||||
tiny-skia = "0.11.4"
|
||||
tool_helper = {path = "../tool_helper"}
|
||||
|
||||
[build-dependencies]
|
||||
slint-build = "1.9.2"
|
||||
slint-build = "1.10.0"
|
||||
|
||||
[package.metadata.bundle]
|
||||
name = "TIMTOOL"
|
||||
@@ -28,4 +28,4 @@ category = "Developer Tool"
|
||||
short_description = "TIM Tool for JabyEngine"
|
||||
long_description = """
|
||||
A new interpetation of the TIM Tool from Sony, for use with PSYQ and the JabyEngine
|
||||
"""
|
||||
"""
|
||||
|
@@ -81,6 +81,7 @@ export component MainWindow inherits Window {
|
||||
|
||||
public function change_to_main() {
|
||||
tab_widget.current-index = 1;
|
||||
main_tab.set_active();
|
||||
}
|
||||
|
||||
public function clear_file_tab-current_selected_file() {
|
||||
|
@@ -31,8 +31,9 @@ export component MainTab inherits Rectangle {
|
||||
callback remove_file_clicked(int);
|
||||
callback move_vram_image(int, int, int);
|
||||
|
||||
width: group.width + group.x*2;
|
||||
height: group.height + group.y*2 + 32px;
|
||||
width: group.width + group.x*2;
|
||||
height: group.height + group.y*2 + 32px;
|
||||
forward-focus: key_focus;
|
||||
|
||||
group := GroupBox {
|
||||
title: "VRAM Layout";
|
||||
@@ -131,10 +132,20 @@ export component MainTab inherits Rectangle {
|
||||
}
|
||||
|
||||
function update_viewport() {
|
||||
// If this value is positive, then the image moved so much to the right, that we do not use the full display area anymore
|
||||
if self.viewport-x > 0 {
|
||||
self.viewport-x = 0;
|
||||
}
|
||||
|
||||
if abs(self.viewport-x) + self.width > self.viewport-width {
|
||||
self.viewport-x += (self.width + abs(self.viewport-x)) - self.viewport-width;
|
||||
}
|
||||
|
||||
if self.viewport-y > 0 {
|
||||
self.viewport-y = 0;
|
||||
}
|
||||
|
||||
// If this value is positive, then the image moved so much down, that we do not use the full display area anymore
|
||||
if abs(self.viewport-y) + self.height > self.viewport-height {
|
||||
self.viewport-y += (self.height + abs(self.viewport-y)) - self.viewport-height;
|
||||
}
|
||||
@@ -349,7 +360,7 @@ export component MainTab inherits Rectangle {
|
||||
}
|
||||
}
|
||||
|
||||
FocusScope {
|
||||
key_focus := FocusScope {
|
||||
key-pressed(event) => {
|
||||
if(vram_files_list.current-item != -1) {
|
||||
if(event.text == Key.LeftArrow) {
|
||||
@@ -386,4 +397,8 @@ export component MainTab inherits Rectangle {
|
||||
cur_sel_y.text = 0;
|
||||
cur_sel_img.visible = false;
|
||||
}
|
||||
|
||||
public function set_active() {
|
||||
key_focus.focus();
|
||||
}
|
||||
}
|
@@ -19,7 +19,7 @@
|
||||
{
|
||||
"label": "make",
|
||||
"type": "shell",
|
||||
"command": "../../scripts/podman_jaby_engine.sh ${workspaceFolder}/..:src/FontWriter make ${input:target} BUILD_PROFILE=${input:build cfg}",
|
||||
"command": "../../scripts/podman_jaby_engine.sh ${workspaceFolder}/..:src/FontWriter bear --output ${workspaceFolder}/../compile_commands.json -- make ${input:target} BUILD_PROFILE=${input:build cfg}",
|
||||
"group": "build"
|
||||
}
|
||||
],
|
||||
|
Reference in New Issue
Block a user