commit d868148927bc9001315f5ac4323e84a7e7f3cbea Author: JoeEnderman Date: Sat Jan 6 12:01:33 2024 -0600 Seeing if Git is better than drag-and-drop diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cc70160 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +Code +---- + +MIT License + +Copyright (c) 2023 JoeEnderman + +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. + + +Textures +-------- + +CC0 + +(C) 2023 JoeEnderman diff --git a/README.md b/README.md new file mode 100644 index 0000000..569d5a0 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Paintings Gallery + +#### +Adds a bunch of example paintings usings Paintings Library. Uses AI generated art from the following AI generators: +#### +Blue Willow https://www.bluewillow.ai/ +#### +Stable Diffusion https://huggingface.co/spaces/stabilityai/stable-diffusion-1 diff --git a/craft.lua b/craft.lua new file mode 100644 index 0000000..c8e9db6 --- /dev/null +++ b/craft.lua @@ -0,0 +1,118 @@ +if minetest.get_modpath("default") ~= nil then + + if minetest.get_modpath("dye") ~= nil then + + if minetest.get_modpath("wool") ~= nil then + +-- The Basics + +minetest.register_craft({ + output = "paintings_lib:1x1_blank1x1", + recipe = { + {"default:stick", "default:stick", "default:stick"}, + {"default:stick", "group:wool", "default:stick"}, + {"default:stick", "default:stick", "default:stick"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:1x2_blank1x2", + recipe = { + {"paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x1_blank2x1", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:2x2_blank2x2", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x2_blank3x2", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:3x3_blank3x3", + recipe = { + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + {"paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1", "paintings_lib:1x1_blank1x1"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x2_blank4x2", + recipe = { + {"paintings_lib:2x2_blank2x2", "paintings_lib:2x2_blank2x2"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x3_blank4x3", + recipe = { + {"paintings_lib:3x2_blank3x2", "paintings_lib:3x2_blank3x2"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_blank4x4", + recipe = { + {"paintings_lib:2x2_blank2x2", "paintings_lib:2x2_blank2x2"}, + {"paintings_lib:2x2_blank2x2", "paintings_lib:2x2_blank2x2"}, + } +}) + +minetest.register_craft({ + output = "paintings_lib:4x4_blank4x4", + recipe = { + {"paintings_lib:4x2_blank4x2"}, + {"paintings_lib:4x2_blank4x2"}, + } +}) + +-- The Paintings + +-- 1x1 + +-- 1x2 + +-- 2x1 + +-- 2x2 + +-- 3x2 + +-- 3x3 + +-- 4x2 + +-- 4x3 + +-- 4x4 + +minetest.register_craft({ + output = "paintings_lib:4x4_tree_4", + recipe = { + {"paintings_lib:4x4_blank4x4", "dye:pink"}, + {"", "dye:pink"}, + } +}) + + end + end +end diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..091e22b --- /dev/null +++ b/init.lua @@ -0,0 +1,8 @@ +-- Paintings Gallery + +paintings_gallery = {} + +local default_path = minetest.get_modpath("paintings_gallery") + +dofile(minetest.get_modpath("paintings_gallery") .. "/paintings.lua") +dofile(minetest.get_modpath("paintings_gallery") .. "/craft.lua") diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..ab0fee6 --- /dev/null +++ b/mod.conf @@ -0,0 +1,8 @@ +mod_name = paintings_galleryii +title = Paintings Gallery II: The Enhanced Exhibit +description = An upgrade over Paintings Gallery to say the least. Next gen art is now. Using Tengr.ai for image gen and ChatGPT4.0 to basically make prompts more verbose and come up with more painting ideas and genres than I ever could. +depends = default, paintings_lib, dye, wool +optional_depends = dye, wool +min_minetest_version = 5.5 +author = JoeEnderman +name = paintings_galleryii diff --git a/paintings.lua b/paintings.lua new file mode 100644 index 0000000..f764edb --- /dev/null +++ b/paintings.lua @@ -0,0 +1,36 @@ + +-- 1x1 + +paintings_lib.register1x1("blue_vase", "Blue Vase", "paintings_gallery_1x1_blue_vase.png^paintings_lib_frame1x1.png") + +-- 1x2 + +paintings_lib.register1x2("abstract_expression", "Abstract Expression", "paintings_gallery_1x2_abstract_expression.png^paintings_lib_frame1x2.png") +-- 2x1 + +paintings_lib.register2x1("aurora", "Aurora", "paintings_gallery_2x1_aurora.png^paintings_lib_frame2x1.png") + +-- 2x2 + +paintings_lib.register2x2("abstract_man", "Abstract Man", "paintings_gallery_2x2_abstract_man.png^paintings_lib_frame2x2.png") + +-- 3x2 + +paintings_lib.register3x2("billboard", "Billboard", "paintings_gallery_3x2_billboard.png^paintings_lib_frame3x2.png") + +--3x3 + +paintings_lib.register3x3("baroque_cyborg_2", "Baroque Cyborg 2", "paintings_gallery_3x3_baroque_cyborg_2.png^paintings_lib_frame3x3.png") + + +-- 4x2 + +paintings_lib.register4x2("canada", "Canada", "paintings_gallery_4x2_canada.png^paintings_lib_frame4x2.png") + +-- 4x3 + +paintings_lib.register4x3("alley", "Alley", "paintings_gallery_4x3_alley.png^paintings_lib_frame4x3.png") + +-- 4x4 + +paintings_lib.register4x4("car_3", "Car 3", "paintings_gallery_4x4_car_3.png^paintings_lib_frame4x4.png") diff --git a/textures/#abyssal_relic.png b/textures/#abyssal_relic.png new file mode 100644 index 0000000..175c3bb Binary files /dev/null and b/textures/#abyssal_relic.png differ diff --git a/textures/#angry_reviewer.png b/textures/#angry_reviewer.png new file mode 100644 index 0000000..cbeaed4 Binary files /dev/null and b/textures/#angry_reviewer.png differ diff --git a/textures/#between_worlds.png b/textures/#between_worlds.png new file mode 100644 index 0000000..e4870f1 Binary files /dev/null and b/textures/#between_worlds.png differ diff --git a/textures/#brass_gears.png b/textures/#brass_gears.png new file mode 100644 index 0000000..88d759f Binary files /dev/null and b/textures/#brass_gears.png differ diff --git a/textures/#burning_coal.png b/textures/#burning_coal.png new file mode 100644 index 0000000..5c3769c Binary files /dev/null and b/textures/#burning_coal.png differ diff --git a/textures/#cabin_homestead.png b/textures/#cabin_homestead.png new file mode 100644 index 0000000..e0ca9dc Binary files /dev/null and b/textures/#cabin_homestead.png differ diff --git a/textures/#city_of_fog.png b/textures/#city_of_fog.png new file mode 100644 index 0000000..7c99bcc Binary files /dev/null and b/textures/#city_of_fog.png differ diff --git a/textures/#cityscape_small.png b/textures/#cityscape_small.png new file mode 100644 index 0000000..2474532 Binary files /dev/null and b/textures/#cityscape_small.png differ diff --git a/textures/#closeup_moon.png b/textures/#closeup_moon.png new file mode 100644 index 0000000..f151cb9 Binary files /dev/null and b/textures/#closeup_moon.png differ diff --git a/textures/#coral_reef.png b/textures/#coral_reef.png new file mode 100644 index 0000000..6e7f473 Binary files /dev/null and b/textures/#coral_reef.png differ diff --git a/textures/#cosmic_kitty.png b/textures/#cosmic_kitty.png new file mode 100644 index 0000000..3279160 Binary files /dev/null and b/textures/#cosmic_kitty.png differ diff --git a/textures/#cosmos_stares_back.png b/textures/#cosmos_stares_back.png new file mode 100644 index 0000000..bd9b6d9 Binary files /dev/null and b/textures/#cosmos_stares_back.png differ diff --git a/textures/#crabby_space.png b/textures/#crabby_space.png new file mode 100644 index 0000000..1d5da16 Binary files /dev/null and b/textures/#crabby_space.png differ diff --git a/textures/#cybercar_parked.png b/textures/#cybercar_parked.png new file mode 100644 index 0000000..2e43878 Binary files /dev/null and b/textures/#cybercar_parked.png differ diff --git a/textures/#deep_city.png b/textures/#deep_city.png new file mode 100644 index 0000000..6dd9cd5 Binary files /dev/null and b/textures/#deep_city.png differ diff --git a/textures/#desert_sun.png b/textures/#desert_sun.png new file mode 100644 index 0000000..05abffb Binary files /dev/null and b/textures/#desert_sun.png differ diff --git a/textures/#drinking_cat.png b/textures/#drinking_cat.png new file mode 100644 index 0000000..edf87a5 Binary files /dev/null and b/textures/#drinking_cat.png differ diff --git a/textures/#elven_scholar.png b/textures/#elven_scholar.png new file mode 100644 index 0000000..018cef3 Binary files /dev/null and b/textures/#elven_scholar.png differ diff --git a/textures/#emotion_explosion.png b/textures/#emotion_explosion.png new file mode 100644 index 0000000..5e1667f Binary files /dev/null and b/textures/#emotion_explosion.png differ diff --git a/textures/#eye_of_universe.png b/textures/#eye_of_universe.png new file mode 100644 index 0000000..9ff67d0 Binary files /dev/null and b/textures/#eye_of_universe.png differ diff --git a/textures/#frost_punk.png b/textures/#frost_punk.png new file mode 100644 index 0000000..548d3db Binary files /dev/null and b/textures/#frost_punk.png differ diff --git a/textures/#goodnight_greenery.png b/textures/#goodnight_greenery.png new file mode 100644 index 0000000..351ab09 Binary files /dev/null and b/textures/#goodnight_greenery.png differ diff --git a/textures/#happy_corgi.png b/textures/#happy_corgi.png new file mode 100644 index 0000000..5327c49 Binary files /dev/null and b/textures/#happy_corgi.png differ diff --git a/textures/#happy_moth.png b/textures/#happy_moth.png new file mode 100644 index 0000000..a15ca3d Binary files /dev/null and b/textures/#happy_moth.png differ diff --git a/textures/#landing_eagle.png b/textures/#landing_eagle.png new file mode 100644 index 0000000..e4788f0 Binary files /dev/null and b/textures/#landing_eagle.png differ diff --git a/textures/#lost_wonderland.png b/textures/#lost_wonderland.png new file mode 100644 index 0000000..dfbbfc1 Binary files /dev/null and b/textures/#lost_wonderland.png differ diff --git a/textures/#mistress_time.png b/textures/#mistress_time.png new file mode 100644 index 0000000..0b02f77 Binary files /dev/null and b/textures/#mistress_time.png differ diff --git a/textures/#morning_beach.png b/textures/#morning_beach.png new file mode 100644 index 0000000..29b9559 Binary files /dev/null and b/textures/#morning_beach.png differ diff --git a/textures/#mundane_relization.png b/textures/#mundane_relization.png new file mode 100644 index 0000000..50fff1f Binary files /dev/null and b/textures/#mundane_relization.png differ diff --git a/textures/#mushroom_planet.png b/textures/#mushroom_planet.png new file mode 100644 index 0000000..f8e6203 Binary files /dev/null and b/textures/#mushroom_planet.png differ diff --git a/textures/#nebulous_events.png b/textures/#nebulous_events.png new file mode 100644 index 0000000..4aa9c46 Binary files /dev/null and b/textures/#nebulous_events.png differ diff --git a/textures/#ocean_wave.png b/textures/#ocean_wave.png new file mode 100644 index 0000000..70200be Binary files /dev/null and b/textures/#ocean_wave.png differ diff --git a/textures/#peaceful_sleep.png b/textures/#peaceful_sleep.png new file mode 100644 index 0000000..fa37fcf Binary files /dev/null and b/textures/#peaceful_sleep.png differ diff --git a/textures/#psychedelic_trip.png b/textures/#psychedelic_trip.png new file mode 100644 index 0000000..ed7b601 Binary files /dev/null and b/textures/#psychedelic_trip.png differ diff --git a/textures/#psychedelic_trip2.png b/textures/#psychedelic_trip2.png new file mode 100644 index 0000000..57ec91b Binary files /dev/null and b/textures/#psychedelic_trip2.png differ diff --git a/textures/#purple_mountain.png b/textures/#purple_mountain.png new file mode 100644 index 0000000..b8c89b2 Binary files /dev/null and b/textures/#purple_mountain.png differ diff --git a/textures/#quantum_garden.png b/textures/#quantum_garden.png new file mode 100644 index 0000000..1f7372c Binary files /dev/null and b/textures/#quantum_garden.png differ diff --git a/textures/#quantum_tea.png b/textures/#quantum_tea.png new file mode 100644 index 0000000..174d21f Binary files /dev/null and b/textures/#quantum_tea.png differ diff --git a/textures/#royal_highness.png b/textures/#royal_highness.png new file mode 100644 index 0000000..d32df68 Binary files /dev/null and b/textures/#royal_highness.png differ diff --git a/textures/#rpg_cliff.png b/textures/#rpg_cliff.png new file mode 100644 index 0000000..35e6a54 Binary files /dev/null and b/textures/#rpg_cliff.png differ diff --git a/textures/#sea_of_stars.png b/textures/#sea_of_stars.png new file mode 100644 index 0000000..33cc0c8 Binary files /dev/null and b/textures/#sea_of_stars.png differ diff --git a/textures/#serene_sunset.png b/textures/#serene_sunset.png new file mode 100644 index 0000000..a466a4c Binary files /dev/null and b/textures/#serene_sunset.png differ diff --git a/textures/#spectral_guitarist.png b/textures/#spectral_guitarist.png new file mode 100644 index 0000000..bc7078f Binary files /dev/null and b/textures/#spectral_guitarist.png differ diff --git a/textures/#summer_desert.png b/textures/#summer_desert.png new file mode 100644 index 0000000..c08b0d5 Binary files /dev/null and b/textures/#summer_desert.png differ diff --git a/textures/#superposition_cat.png b/textures/#superposition_cat.png new file mode 100644 index 0000000..59f5b58 Binary files /dev/null and b/textures/#superposition_cat.png differ diff --git a/textures/#to_the_clearing.png b/textures/#to_the_clearing.png new file mode 100644 index 0000000..37e5c48 Binary files /dev/null and b/textures/#to_the_clearing.png differ diff --git a/textures/#trees_gathered.png b/textures/#trees_gathered.png new file mode 100644 index 0000000..f872552 Binary files /dev/null and b/textures/#trees_gathered.png differ diff --git a/textures/#trippy_shrooms.png b/textures/#trippy_shrooms.png new file mode 100644 index 0000000..d28982b Binary files /dev/null and b/textures/#trippy_shrooms.png differ diff --git a/textures/#trippy_shrooms2.png b/textures/#trippy_shrooms2.png new file mode 100644 index 0000000..a0bcad2 Binary files /dev/null and b/textures/#trippy_shrooms2.png differ diff --git a/textures/#water_background.png b/textures/#water_background.png new file mode 100644 index 0000000..8f25bdb Binary files /dev/null and b/textures/#water_background.png differ diff --git a/textures/#where_the_phoenix_was.png b/textures/#where_the_phoenix_was.png new file mode 100644 index 0000000..ebe8144 Binary files /dev/null and b/textures/#where_the_phoenix_was.png differ diff --git a/textures/#yellow_city.png b/textures/#yellow_city.png new file mode 100644 index 0000000..e126a36 Binary files /dev/null and b/textures/#yellow_city.png differ