Post your screenshots!

vtwindsurfer
Member
Posts: 13
Joined: Sun Oct 01, 2017 14:57
Location: Vermont, USA

Re: Post your screenshots!

by vtwindsurfer » Post

tashbaugh wrote:
vtwindsurfer, thats very impressive! It looks great!
Thanks! The interior is coming along but it's slow. A programming error caused almost 2 dozen Lua Controllers to overheat recently. I have several mini-games on the ship. You can load and fire torpedoes, fly shuttles, beam down to the planet or one of two space stations. Most of them are centered around the operation of the ship.

Image
Image
Image
Attachments
Torpedo Launcher
Torpedo Launcher
Screenshot from 2020-02-23 23-48-20.jpg (118.08 KiB) Viewed 1324 times
Nebula Space Station
Nebula Space Station
Screenshot from 2020-02-23 23-34-28.jpg (186.23 KiB) Viewed 1324 times
Deck 4, Transporter Room 1
Deck 4, Transporter Room 1
Screenshot from 2020-02-23 23-33-52.jpg (103.6 KiB) Viewed 1324 times

User avatar
Extex
Member
Posts: 244
Joined: Wed Mar 14, 2018 23:14
GitHub: Extex101
In-game: Extex

Re: Post your screenshots!

by Extex » Post

Image
Download here
Attachments
Screenshot_2020-02-26-17-16-08-2.png
Screenshot_2020-02-26-17-16-08-2.png (647.39 KiB) Viewed 1324 times
Creator of jelys_pizzaria and motorbike, and player of persistent kingdoms. RIP

User avatar
sorcerykid
Member
Posts: 1841
Joined: Fri Aug 26, 2016 15:36
GitHub: sorcerykid
In-game: Nemo
Location: Illinois, USA

Re: Post your screenshots!

by sorcerykid » Post

Proof of concept for dynamically updating sections of forms, without having to reconstruct the entire formspec string.

Simply wrap elements within new group[<name>] and group_end[] tags and then call minetest.update_form() with a table of key-value pairs for the specific groups to be updated.

Code: Select all

minetest.update_form( player_name, { alpha = alpha_section, beta = beta_section } )
Image

cHyper-0815OL

Re: Post your screenshots!

by cHyper-0815OL » Post

sorcerykid wrote:Proof of concept for dynamically updating sections of forms, without having to reconstruct the entire formspec string.

Simply wrap elements within new group[<name>] and group_end[] tags and then call minetest.update_form() with a table of key-value pairs for the specific groups to be updated.

Code: Select all

minetest.update_form( player_name, { alpha = alpha_section, beta = beta_section } )
Image
Nice already public to test?

User avatar
orwell
Member
Posts: 958
Joined: Wed Jun 24, 2015 18:45
GitHub: orwell96
IRC: orwell96_mt
In-game: orwell
Location: Raxacoricofallapatorius

Re: Post your screenshots!

by orwell » Post

Nice, does that mean I'm finally able to update parts of a form without clearing text from input fields?
Lua is great!
List of my mods
I like singing. I like dancing. I like ... niyummm...

User avatar
rubenwardy
Moderator
Posts: 6969
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: Post your screenshots!

by rubenwardy » Post

orwell wrote:Nice, does that mean I'm finally able to update parts of a form without clearing text from input fields?
No, it's a mod that adds some fancy stuff to make formspecs easier but doesn't change the engine
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
sorcerykid
Member
Posts: 1841
Joined: Fri Aug 26, 2016 15:36
GitHub: sorcerykid
In-game: Nemo
Location: Illinois, USA

Re: Post your screenshots!

by sorcerykid » Post

orwell wrote:Nice, does that mean I'm finally able to update parts of a form without clearing text from input fields?
It's a proof-of-concept for the new API that I proposed in Issue 9364 on GitHub. Since it's a server-side mod, it has no direct control over rendering of the client GUI. But it has the unique advantage that if and when such functionality is implemented directly in the engine, then in theory this mod should be able to emulate the builtin API for backward compatibility.

I will probably push an alpha version later today. Keep checking the WIP subforum.
Linuxdirk wrote:Good lord ... I just LOVE looking at your formspecs. They all look so good!
Aww thanks :) I can't wait till Ratio Workspace is completed so formspec design will be hopefully be easier for everyone.

twoelk
Member
Posts: 1482
Joined: Fri Apr 19, 2013 16:19
GitHub: twoelk
IRC: twoelk
In-game: twoelk
Location: northern Germany

Re: Post your screenshots!

by twoelk » Post

yikes!

I need to redo my old saturn texture Image this new feature is sooooooo coooooooool
Attachments
screenshot_20200306_234315.jpg
screenshot_20200306_234315.jpg (143.33 KiB) Viewed 1324 times
Last edited by twoelk on Tue Jun 30, 2020 08:52, edited 1 time in total.

User avatar
texmex
Member
Posts: 1753
Joined: Mon Jul 11, 2016 21:08
GitHub: tacotexmex
In-game: tacotexmex

Re: Post your screenshots!

by texmex » Post

Ah, gradient sky PR got merged? Awesome!

User avatar
Lone_Wolf
Member
Posts: 2575
Joined: Sun Apr 09, 2017 05:50
GitHub: LoneWolfHT
IRC: LandarVargan
In-game: LandarVargan

Re: Post your screenshots!

by Lone_Wolf » Post

texmex wrote:Ah, gradient sky PR got merged? Awesome!
set_sky PR. It does a lot more than gradients
My ContentDB -|- Working on CaptureTheFlag -|- Minetest Forums Dark Theme!! (You need it)

Termos
Member
Posts: 417
Joined: Sun Dec 16, 2018 12:50

Re: Post your screenshots!

by Termos » Post

texmex wrote:Ah, gradient sky PR got merged? Awesome!
Cool, maybe I'll be able to sneak in gradient for default unmodded sky now.

Image
Attachments
grad.jpg
grad.jpg (73.64 KiB) Viewed 1324 times

User avatar
rubenwardy
Moderator
Posts: 6969
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: Post your screenshots!

by rubenwardy » Post

Termos wrote:
texmex wrote:Ah, gradient sky PR got merged? Awesome!
Cool, maybe I'll be able to sneak in gradient for default unmodded sky now.

Image
That looks super nice
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
sorcerykid
Member
Posts: 1841
Joined: Fri Aug 26, 2016 15:36
GitHub: sorcerykid
In-game: Nemo
Location: Illinois, USA

Re: Post your screenshots!

by sorcerykid » Post

Unfortunately SQLite3 does not support incremental backups, nor could I find any decent 3rd-party tools for this purpose. So I've taken the liberty to develop my own incremental backup utility for Minetest :)

The results are quite impressive. Testing on an older map that is about 3.7 GB in size, the incremental backup took only about 26 seconds to complete. Yet the full backup took upwards of 2 minutes. So that is a four-fold reduction in processing time.

Even better still are the size differences!

Image

This is the archive directory structure. The files named "series-X.sqlite" are the incremental backups and "master.sqlite" is the full backup. For the first test, I spent several minutes flying through the world digging constantly, resulting in changes to over 6,100 mapblocks. I estimate that would be roughly equivalent to an afternoon's worth of server activity.

The resulting file size? A measly 5.7 megabtyes :D

Image

User avatar
Melkor
Member
Posts: 369
Joined: Sat Sep 24, 2011 01:03
Location: Underground

Re: Post your screenshots!

by Melkor » Post

you are amazing, sorcerykid

User avatar
voxelproof
Member
Posts: 1087
Joined: Sat Aug 05, 2017 08:13
Location: Europe

Re: Post your screenshots!

by voxelproof » Post

Although the jungle depicted below is a bare default, trespassing it was a pretty nice experience with a satisfying bonus of finding at last its edge after walking ~1500 nodes to the south.

Image
Attachments
South_jungle.jpg
South_jungle.jpg (803.07 KiB) Viewed 1324 times
To miss the joy is to miss all. Robert Louis Stevenson

User avatar
Desour
Member
Posts: 1469
Joined: Thu Jun 19, 2014 19:49
GitHub: Desour
IRC: Desour
In-game: DS
Location: I'm scared that if this is too exact, I will be unable to use my keyboard.

Re: Post your screenshots!

by Desour » Post

sorcerykid wrote:Unfortunately SQLite3 does not support incremental backups, nor could I find any decent 3rd-party tools for this purpose.
Isn't there this? (Edit: Or sqlite3 map.sqlite ".backup map_backup.sqlite"? Edit: Or sqldiff?)
And don't forget to also backup the player and auth databases.

Btw. why do we store that weird inv_width for player inventories (3 for craft, else 0)?
he/him; Codeberg; GitHub; ContentDB; public personal TODO list; "DS" is preferred (but often too short)

ShadMOrdre
Member
Posts: 1118
Joined: Mon Dec 29, 2014 08:07
Location: USA

Re: Post your screenshots!

by ShadMOrdre » Post

Fleshing out biomes in preparation for adding the remainder of farming and xocean, as well as, aoteara and australia.

Currently, there are about 65-70 unique trees and 80+ plants and mushrooms. Adding the above mods will almost double those figures. The landscapes are stunning. This works with all mapgens except v6.

The plants are distributed across up to 160+ biomes, which are further subdivided into 6 to 15 ecosystems, ensuring that landscapes are unique, varied, blended, realistic, and covering most of the World Wildlife Fund Global 200 ecoregions list.

After this work, I will begin work on a new mapgen, with the intention that it be included in the next round of engine updates. The mapgen will be a simplified Islands by Termos, with a Voronoi influenced terrain modification scheme that will enable predetermined landforms and realistic river paths, since ocean locations will now be known.

Image
Image
Image

Voxelproof, me thinks you'll enjoy this as a walking simulator.
Attachments
screenshot_20200308_001112.jpg
screenshot_20200308_001112.jpg (292.52 KiB) Viewed 1324 times
screenshot_20200307_234315.jpg
screenshot_20200307_234315.jpg (232.5 KiB) Viewed 1324 times
screenshot_20200307_160112.jpg
screenshot_20200307_160112.jpg (327.83 KiB) Viewed 1324 times

User avatar
sorcerykid
Member
Posts: 1841
Joined: Fri Aug 26, 2016 15:36
GitHub: sorcerykid
In-game: Nemo
Location: Illinois, USA

Re: Post your screenshots!

by sorcerykid » Post

DS-minetest wrote:
sorcerykid wrote:Unfortunately SQLite3 does not support incremental backups, nor could I find any decent 3rd-party tools for this purpose.
Isn't there this? (Edit: Or sqlite3 map.sqlite ".backup map_backup.sqlite"? Edit: Or sqldiff?)
And don't forget to also backup the player and auth databases.
The SQLite3 online backup API copies a database in its entirety to another location. In terms of performance, it is no different than issuing a "cp" command. As for the sqldiff utility, that doesn't provide any version control for incremental backups and restores in and of itself. It is rather analogous to "diff", but for SQLite3 databases. What I need is a tool with capabilities like "git" for example :)

RocketLib Archive, in contrast, is a fully-fledged version control system for map.sqlite . It maintains its own commit database, recording a unique checksum and version for every changed mapblock. This allows for completely automated backup and restore operations to or from any point in the commit history. Also, the fact that checksums are precomputed and cached vastly speeds up table comparisons.

As for the player and auth databases, those are marginal in size compared to map.sqlite, so a full backup is reasonable in those cases.

User avatar
voxelproof
Member
Posts: 1087
Joined: Sat Aug 05, 2017 08:13
Location: Europe

Re: Post your screenshots!

by voxelproof » Post

ShadMOrdre wrote: Voxelproof, me thinks you'll enjoy this as a walking simulator.
This looks awesome, I'm looking forward to the release :)

______________________________

A winter sunrise in the mountains. You can almost feel that refreshing chill of the morning breeze...

Image
Attachments
winter_sunrise.jpg
winter_sunrise.jpg (312.98 KiB) Viewed 1324 times
To miss the joy is to miss all. Robert Louis Stevenson

User avatar
Wuzzy
Member
Posts: 4781
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: Post your screenshots!

by Wuzzy » Post

Image
Image

User avatar
PolySaken
Member
Posts: 817
Joined: Thu Nov 09, 2017 05:18
GitHub: PolySaken-I-Am
In-game: PolySaken
Location: Wānaka, Aotearoa
Contact:

Re: Post your screenshots!

by PolySaken » Post

Wuzzy wrote:Image
Image
Liking Aotearoa? I'm planning to make an Aotearoa game soon.
Guidebook Lib, for in-game docs | Poly Decor, some cool blocks | Vision Lib, an all-purpose library.

cHyper-0815OL

Re: Post your screenshots!

by cHyper-0815OL » Post

Image

minetest in the tv!!!
Attachments
Texture149.png
Texture149.png (922.88 KiB) Viewed 1324 times

cHyper-0815OL

Re: Post your screenshots!

by cHyper-0815OL » Post

Attachments
minetest_0.31_001_2019-07-22 19_14_22.jpg
minetest_0.31_001_2019-07-22 19_14_22.jpg (262.15 KiB) Viewed 1450 times

ShadMOrdre
Member
Posts: 1118
Joined: Mon Dec 29, 2014 08:07
Location: USA

Re: Post your screenshots!

by ShadMOrdre » Post

Image
Image
Attachments
screenshot_20200311_231932.jpg
screenshot_20200311_231932.jpg (541.08 KiB) Viewed 1450 times
screenshot_20200310_111809.jpg
screenshot_20200310_111809.jpg (186.41 KiB) Viewed 1450 times

Eran
Member
Posts: 123
Joined: Fri May 03, 2019 16:46

Re: Post your screenshots!

by Eran » Post

Image
Two turing machines talking to each other
Attachments
turing_machines.gif
turing_machines.gif (68.3 KiB) Viewed 1512 times

Post Reply

Who is online

Users browsing this forum: rudzik8 and 6 guests