[Mod] DarkAge [0.4] [darkage]

User avatar
MasterGollum
Member
Posts: 79
Joined: Thu Sep 27, 2012 14:48

by MasterGollum » Post

hoodedice wrote:New method for manipulating nodes, introduced by hmmmm(mmmm?) in 0.4.7. Reduces node manip and loading time from 20+ seconds to 1-5 seconds. Also, makes calling nodes easier.
Where is the documentation to understand how it works? Is there any example of use?

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

by Sokomine » Post

See lua_api.txt:
documentation wrote: Ore types
---------------
These tell in what manner the ore is generated.
All default ores are of the uniformly-distributed scatter type.

- scatter
Randomly chooses a location and generates a cluster of ore.
If noise_params is specified, the ore will be placed if the 3d perlin noise at
that point is greater than the noise_threshhold, giving the ability to create a non-equal
distribution of ore.
- sheet
Creates a sheet of ore in a blob shape according to the 2d perlin noise described by noise_params.
The relative height of the sheet can be controlled by the same perlin noise as well, by specifying
a non-zero 'scale' parameter in noise_params. IMPORTANT: The noise is not transformed by offset or
scale when comparing against the noise threshhold, but scale is used to determine relative height.
The height of the blob is randomly scattered, with a maximum height of clust_size.
clust_scarcity and clust_num_ores are ignored.
This is essentially an improved version of the so-called "stratus" ore seen in some unofficial mods.
Any suspcions what that "stratus" might allude to? :) The function is called register_ore. Lua voxelmanip also exists, but as there's an extra function for ore distribution, register_ore might be more fitting. I would be glad if you could use that function since it most likely will speed things up considerably. The technic mod uses generate_ore for creating sheets of marble and granite: oregen.lua.
A list of my mods can be found here.

User avatar
MasterGollum
Member
Posts: 79
Joined: Thu Sep 27, 2012 14:48

by MasterGollum » Post

Thank you I will do some tests with that, stratus is a mistype of stratum :P


Let me show you the shapes I was generating with my function.

Image

And here you can see the complete shape flying over the world in de debug phase when I was creating them in the air by mistake :P

Image

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

by Sokomine » Post

MasterGollum wrote: And here you can see the complete shape flying over the world in de debug phase when I was creating them in the air by mistake :P
You're not the first one :-) There are some intresting ore-generation screenshots somewhere on the forum.

Marble and granite from the technic mod spawn in a way that is comparable to the stones from darkage. Some parameters might need fine-tuning, but in general even that's close enough :-)
A list of my mods can be found here.

User avatar
mimilus
Member
Posts: 75
Joined: Thu Mar 06, 2014 09:08
GitHub: mimilus
IRC: Mimilus
Location: France

by mimilus » Post

Hello

I'm on minetest 0.4.9

I have an error , darkage_marble_tile.png is missing in textures but I see it's in textures32 could you correct it

Thank's
minetest 0.4.9
Ubuntu 12.04

User avatar
mimilus
Member
Posts: 75
Joined: Thu Mar 06, 2014 09:08
GitHub: mimilus
IRC: Mimilus
Location: France

by mimilus » Post

Sorry Variant Version by addi seems to work fine.
minetest 0.4.9
Ubuntu 12.04

Vazon
Member
Posts: 191
Joined: Sat Aug 17, 2013 17:20
IRC: Vazon
In-game: Vazon
Location: Tennessee, U.S

Re: [Mod] DarkAge [0.4] [darkage]

by Vazon » Post

Since it seems this mod hasn't been updated in a while I decided to fix it up a bit. This new version has the marble tile texture, and if the mod Moreblocks is installed it will override the stairs.lua and read the moreblocks.lua. This allows the blocks I thought would best be fitted for the circular saw.

Github Source: https://github.com/Vazon/darkage/tree/master
Download: https://github.com/Vazon/darkage/archive/master.zip

User avatar
Inocudom
Member
Posts: 3121
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

Re: [Mod] DarkAge [0.4] [darkage]

by Inocudom » Post

https://github.com/CraigyDavi/darkage
CraigyDavi has a version of this mod too.

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: [Mod] DarkAge [0.4] [darkage]

by addi » Post

maybe we schuld work all toghether instead of creating realy much forks

User avatar
philipbenr
Member
Posts: 1897
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: robinspi
Location: United States

Re: [Mod] DarkAge [0.4] [darkage]

by philipbenr » Post

addi wrote: maybe we schuld work all toghether instead of creating realy much forks
Hopefully you suggestion is taken. I am trying to get some parts of this mod into castles++, but I am kinda flustered at the number of forks there are... : /

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: [Mod] DarkAge [0.4] [darkage]

by addi » Post

i merged some features of CraigyDavi's fork into mine:
https://bitbucket.org/adrido/darkage/downloads

i think more will follow.

User avatar
CraigyDavi
Member
Posts: 582
Joined: Sat Aug 10, 2013 13:08
GitHub: davisonio
IRC: davisonio
In-game: CraigyDavi
Location: Hampshire, UK
Contact:

Re: [Mod] DarkAge [0.4] [darkage]

by CraigyDavi » Post

addi wrote:i merged some features of CraigyDavi's fork into mine:
https://bitbucket.org/adrido/darkage/downloads

i think more will follow.
I have also created this commit: https://github.com/CraigyDavi/Craig-Ser ... 35509fd84e. It adds a few more stairs and fixes a typo.

I never got round to it but there has been a change in the stairsplus mod API which may require some changes in moreblocks. The API is avaliable here: https://gitorious.org/calinou/moreblock ... lus/API.md

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: [Mod] DarkAge [1.2] [darkage]

by addi » Post

CraigyDavi wrote:
addi wrote:i merged some features of CraigyDavi's fork into mine:
https://bitbucket.org/adrido/darkage/downloads

i think more will follow.
I have also created this commit: https://github.com/CraigyDavi/Craig-Ser ... 35509fd84e. It adds a few more stairs and fixes a typo.

I never got round to it but there has been a change in the stairsplus mod API which may require some changes in moreblocks. The API is avaliable here: https://gitorious.org/calinou/moreblock ... lus/API.md
lot of thanks CraigyDavi
i merged a lot of your changes, and i also updated the stairsplus aka moreblocks api to get working
also the sounds of the stairs nodes are now correct.

the latest download is at Bitbucket (.zip) and at Github (.zip)
also the sourcecode is avaiable at Bitbucket and at Github

User avatar
Minetestforfun
Member
Posts: 940
Joined: Tue Aug 05, 2014 14:09
GitHub: MinetestForFun
IRC: MinetestForFun
In-game: MinetestForFun
Location: On earth
Contact:

Re: [Mod] DarkAge [0.4] [darkage]

by Minetestforfun » Post

your merged darkage version is very good ! :) Good work

User avatar
CraigyDavi
Member
Posts: 582
Joined: Sat Aug 10, 2013 13:08
GitHub: davisonio
IRC: davisonio
In-game: CraigyDavi
Location: Hampshire, UK
Contact:

Re: [Mod] DarkAge [0.4] [darkage]

by CraigyDavi » Post

Created a new topic for the fork of this mod:
viewtopic.php?f=9&t=10063

User avatar
Misty
Member
Posts: 51
Joined: Sun Jun 16, 2013 02:09

Re: [Mod] DarkAge [0.4] [darkage]

by Misty » Post

Hi everyone,
Hi Craigydavi,
is there any chance we can roll your changes into the existing darkage mod so that there wont be confusing multiple versions of the mod for people to sift through before finding the one they want?
p.s. I love the darkage mod, and have been using it since the day I first discovered it.

User avatar
swordpaint12
Member
Posts: 191
Joined: Sat Aug 22, 2015 00:50
In-game: [swordpaint12][Belching_Balladeer]
Location: Foobass, isle of Atlantis, castle of Bardvendelle

Re: [Mod] DarkAge [0.4] [darkage]

by swordpaint12 » Post

deleted
God's not dead; remember that!
Yay for MT! No MC here!
I am a human. I'm younger than 100 years old.
I've been playing Minetest since December 2014.

I'm amazed that I haven't been on here in so long! My latest minetest accomplishment was mining by hand (well, as close as you can get in a computer game) a circle 30 blocks in diameter. It took forever but it's pretty cool.

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

Re: [Mod] DarkAge [0.4] [darkage]

by Sokomine » Post

Integrating all those forks back into one would be highly welcome! Please do so. It's not my mod, but I do like it a lot as well :-)
A list of my mods can be found here.

blert2112
Member
Posts: 244
Joined: Sat Apr 25, 2015 04:05
GitHub: blert2112

Re: [Mod] DarkAge [0.4] [darkage]

by blert2112 » Post

Sokomine wrote:Integrating all those forks back into one would be highly welcome! Please do so. It's not my mod, but I do like it a lot as well :-)
Check out my fork.
reg_ore-FIX branch -> requires a build no less than two days old (beba969)
master branch -> 4.13

Make sure to read the readme!

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: [Mod] DarkAge [0.4] [darkage]

by addi » Post

I updated my fork now and added the best of CraigiDavi and Hybrid Dogs forks.
It uses now register_ore for fast generation of chalk cliffs and desert stone with iron.
For the other strati it uses now the fast lua voxel manipulator.

Also there are 4 more plaster nodes and 4 wall types which requires Mintest 0.4.14.

Download is aviable at Bitbucket (.zip) and at Github (.zip)
Source is aviable there too: Bitbucket and at Github

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: [Mod] DarkAge [0.4] [darkage]

by addi » Post

Introducing: Tuff
Wikipedia wrote:Tuff (from the Italian tufo) is a type of rock made of volcanic ash ejected from a vent during a volcanic eruption. Following ejection and deposition, the ash is compacted into a solid rock in a process called consolidation.
In darkage there are 2 sorts of Tuff: the normal brown-white Tuff and Rhyolitic Tuff.
They are available as rock, rubble, bricks, old tuff bricks and as wall.
Image
Image

More Information and crafting recipes:
https://bitbucket.org/adrido/darkage/wiki/Rocks/Tuff

Download is available at Bitbucket (.zip) and at Github (.zip)
Source is available there too: Bitbucket and at Github

User avatar
philipbenr
Member
Posts: 1897
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: robinspi
Location: United States

Re: [Mod] DarkAge [0.4] [darkage]

by philipbenr » Post

Good to see somebody still working on this. ;)

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

Re: [Mod] DarkAge [0.4] [darkage]

by addi » Post

Yeah I want to make darkage great again :)
If you have any ideas, or feature requests, they are welcome :)

User avatar
ErrorNull
Member
Posts: 271
Joined: Thu Mar 03, 2016 00:43
GitHub: ErrorNull0

Re: [Mod] DarkAge [0.4] [darkage]

by ErrorNull » Post

yes please keep this mod going. i love the new blocks for building and the new nodes for the earth like mud, silts, etc. We need more nodes so that it's not boring stone all the time. I use the mg_villages mod and darkage makes a good combination with it.

User avatar
Andrey01
Member
Posts: 2574
Joined: Wed Oct 19, 2016 15:18
GitHub: Andrey2470T
In-game: Andrey01
Location: Russia, Moscow

Re: [Mod] DarkAge [0.4] [darkage]

by Andrey01 » Post

Why is this mod names as "DarkAge"?

Post Reply

Who is online

Users browsing this forum: Google [Bot] and 26 guests