My Fears...

User avatar
snakevenom
Member
Posts: 119
Joined: Sat Sep 22, 2012 12:56
Location: worthing

by snakevenom » Post

this is a interesting discussion however i believe that the decisions that pilzadam has made were positive ones for the game, it has added much more to do within the vanilla game and i would rather play pilzadam version than anyone else's.

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

by jojoa1997 » Post

With the added survival a build games it has definitely gotten better
Coding;
1X coding
3X debugging
12X tweaking to be just right

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

by rubenwardy » Post

Bas080 wrote:Hey Jordach, Good discussion. My idea is that the user should be made more aware of what the content is that we modders are making and sharing. Ways of doing this is putting a game manager and/or mod manager in that allows user rating. That is the only way we will find out what mods and what games people(not modders) like. The results from these ratings should be implemented into the default game. This way the default will appeal to a large group of players. I think that should be the goal of the default game.

The changes are decided not entirely by developer but also by users. Which avoids finger pointing.

Furthermore a mod manager and/or games manager shows the strength of Minetest. It is to adapt to a players needs. Also the needs of players that deviate from the default game. And in the case that allot of them deviate from the default, the default should be adapted. Evolution.

For the nostalgic people there should always be the game mode as they knew it. Having a game_manager(multiple and downloadable games) allows for this.

Conclusion: More focus on user input (rating/downloads of mods and games ) so we know what the masses want and adapt default to the masses.
There is a mod manager in Minetest, but it can not download mods.

I am pinning my hopes on

3M mod manager as a downloader library

and

my Minetest extensions

It currently only has mod liking, but if you have any suggestions on how Mt Extensions should handle rating, write a reply in the above topic.
Last edited by rubenwardy on Sun Mar 24, 2013 12:51, edited 1 time in total.
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
Dopium
Member
Posts: 233
Joined: Sat Jun 09, 2012 15:43
Location: Australia

by Dopium » Post

snakevenom wrote:this is a interesting discussion however i believe that the decisions that pilzadam has made were positive ones for the game, it has added much more to do within the vanilla game and i would rather play pilzadam version than anyone else's.

Adam is great at what he does however sometimes others builds have items removed, this is a bit of a problem with some the mods i run creating dummy images. Personally i think the best build is from source, edit it and compile yourself, saves installing a mod that may depend on a default item that has been removed. I cant download others builds as i always have dummy objects and need to re-edit the code.
Running @1.19 MHz, 128 bytes of RAM and interchangeable 4kb ROM carts!

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

by Inocudom » Post

I can say with certainty that Minetest uses a considerably higher amount of RAM than it used too. If RAM usage is not kept in check, this can become a big problem in the future.

rarkenin
Member
Posts: 668
Joined: Tue Nov 20, 2012 20:48

by rarkenin » Post

Inocudom wrote:I can say with certainty that Minetest uses a considerably higher amount of RAM than it used too. If RAM usage is not kept in check, this can become a big problem in the future.
The client eats RAM pretty well also. What about compressing data of faraway chunks in memory using GZip and some more flexible data types in C++ to held memory like that?
Admin pro tempore on 0gb.us:30000. Ask me if you have a problem, or just want help.
This is a signature virus. Add me to your signature so that I can multiply.
Now working on my own clone, Mosstest.
I guess I'm back for some time.

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

by kaeza » Post

rarkenin wrote:
Inocudom wrote:I can say with certainty that Minetest uses a considerably higher amount of RAM than it used too. If RAM usage is not kept in check, this can become a big problem in the future.
The client eats RAM pretty well also. What about compressing data of faraway chunks in memory using GZip and some more flexible data types in C++ to held memory like that?
Using compression like that is impossible. It would mean that the client must uncompress that data every time it needs to display it (every game step).
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

rarkenin
Member
Posts: 668
Joined: Tue Nov 20, 2012 20:48

by rarkenin » Post

kaeza wrote:
rarkenin wrote:
Inocudom wrote:I can say with certainty that Minetest uses a considerably higher amount of RAM than it used too. If RAM usage is not kept in check, this can become a big problem in the future.
The client eats RAM pretty well also. What about compressing data of faraway chunks in memory using GZip and some more flexible data types in C++ to held memory like that?
Using compression like that is impossible. It would mean that the client must uncompress that data every time it needs to display it (every game step).
No, it can simply uncompress everything within a certain radius, such as 200 or so. Then again, I might be wrong.
Last edited by rarkenin on Mon Mar 25, 2013 11:17, edited 1 time in total.
Admin pro tempore on 0gb.us:30000. Ask me if you have a problem, or just want help.
This is a signature virus. Add me to your signature so that I can multiply.
Now working on my own clone, Mosstest.
I guess I'm back for some time.

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

by Inocudom » Post

rarkenin wrote:
kaeza wrote:
rarkenin wrote:
The client eats RAM pretty well also. What about compressing data of faraway chunks in memory using GZip and some more flexible data types in C++ to held memory like that?
Using compression like that is impossible. It would mean that the client must uncompress that data every time it needs to display it (every game step).
No, it can simply uncompress everything within a certain radius, such as 200 or so. Then again, I might be wrong.
These posts confirm that RAM usage did indeed increase considerably. This could prove to be harmful for older computers, since they will likely be overworked. When a computer is overworked (when it makes a lot of noise,) its lifespan is being shortened. A computer is to be used, but not abused.

I feel that Minetest doesn't make as much use of graphics cards as it could (though it does better than Minecraft in that area.)

User avatar
jordan4ibanez
Member
Posts: 1923
Joined: Tue Sep 27, 2011 18:44
GitHub: jordan4ibanez
IRC: jordan4ibanez
In-game: jordan4ibanez

by jordan4ibanez » Post

Inocudom wrote:
rarkenin wrote:
kaeza wrote: Using compression like that is impossible. It would mean that the client must uncompress that data every time it needs to display it (every game step).
No, it can simply uncompress everything within a certain radius, such as 200 or so. Then again, I might be wrong.
These posts confirm that RAM usage did indeed increase considerably. This could prove to be harmful for older computers, since they will likely be overworked. When a computer is overworked (when it makes a lot of noise,) its lifespan is being shortened. A computer is to be used, but not abused.

I feel that Minetest doesn't make as much use of graphics cards as it could (though it does better than Minecraft in that area.)
Then help optimize it? You guys are talking about the problems and reasonings but not the source. Examine the issues with the debug menu. For all we know you guys could have cpus which the font causese the cpu to shoot up just rendering it.
hello, am program. do language in rust. make computer do. okay i go now.

User avatar
Traxie21
Member
Posts: 753
Joined: Mon Dec 31, 2012 10:48
Location: McKinney, Texas U.S.A.
Contact:

by Traxie21 » Post

Not everyone can contribute. I wish I could, but my attampts of compiling have totally failed.

prestidigitator
Member
Posts: 647
Joined: Thu Feb 21, 2013 23:54

by prestidigitator » Post

Compressing chunks probably isn't realistic, but SIMPLIFYING them would be. Some kind of oct-tree based 3D "mipmapping" for LOD distance could cut down greatly on both memory and CPU requirements. "Chunk impostors". Heh.

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

by Inocudom » Post

What is the debug menu? How is it opened? If people know about it better, they might be able to assist with the RAM and CPU issues. Many of the new features and enhancements that were recently added are wonderful, but their RAM and CPU needs must be optimized.

User avatar
YoYoBuddy
Member
Posts: 247
Joined: Sun Jan 27, 2013 00:49
Location: New York City

by YoYoBuddy » Post

Hey traxie, did you notice I called you a "bad-ass"?
“People are more difficult to work with than machines. And when you break a
person, he can't be fixed."

-Rick Riordan

User avatar
Psychotic
Member
Posts: 150
Joined: Thu Sep 13, 2012 20:21

by Psychotic » Post

So if i make a post about this on the minecraft forum, would you guys be willing to back me up with examples on how minetest is different than minecraft?
My history isn't revenge, or hate. The road that brought us both here - isn't about that. It's about the message you carried. The one in that package whether you knew it or not. - Ulysses from Lonesome Road

User avatar
onpon4
Member
Posts: 518
Joined: Thu Mar 21, 2013 01:54
GitHub: onpon4
In-game: diligentcircle
Contact:

by onpon4 » Post

Psychotic wrote:So if i make a post about this on the minecraft forum, would you guys be willing to back me up with examples on how minetest is different than minecraft?
Well, it's of course different. I've never played Minecraft and never will, but other than the base game being more minimal, I'm aware of these differences:
  • All Minetest mods are server-side, while Minecraft has both server-side and client-side mods (my brother tells me that some client-side mods are considered "cheating" in Minecraft).
  • Minetest is written in C++ instead of Java.
  • Minetest is free software (where "free" refers to freedom, not price, though it is gratis as well).
  • Minetest has MESE, MESE crystals, and MESE crystal fragments, which are used for MESE pickaxes and is also used by mods for other things.
  • The fist looks like a potato in Minetest.

User avatar
Traxie21
Member
Posts: 753
Joined: Mon Dec 31, 2012 10:48
Location: McKinney, Texas U.S.A.
Contact:

by Traxie21 » Post

Has a powerful lua modding API

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

by Inocudom » Post

Never forget the much greater height allowances (though I don't think its a good idea to talk about this game in the Minecraft forums; you would be safer doing that in the PureZC forums.)

In the topic for PilzAdam's builds, it was revealed that diamond and gold were added to Minetest. I was thinking that diamond would make a good companion substance to mese and could even resemble it. However, diamond could retain its coloration scheme and strength. It could also be given a different name (I thought up the names CYAN and DMND) and be able to fuse with mese to create an even stronger substance.
Last edited by Inocudom on Thu Mar 28, 2013 21:48, edited 1 time in total.

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

by Sokomine » Post

MT runs faster and has a higher viewing range than MC at least on older computers. MC, on the other hand, does have more survival elements and is currently better suited for players who want to fight against mobs.
A list of my mods can be found here.

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

by Inocudom » Post

Inocudom wrote:What is the debug menu? How is it opened? If people know about it better, they might be able to assist with the RAM and CPU issues. Many of the new features and enhancements that were recently added are wonderful, but their RAM and CPU needs must be optimized.
It may be a futile effort, but there must be a way to optimize the CPU and RAM needs of the current git version of Minetest.

Michael Eh?
Member
Posts: 391
Joined: Sun Jan 01, 2012 17:21

by Michael Eh? » Post

I think what is missing is vision on what 'minetest' direction should go. Mods allow to build a game to a server admin liking.

However, if we aren't following minecraft path then what direction should we go?

That is the problem. Given the fact that Minecraft developed over time with things being added. back when I played there was no mobs in minecraft. Since then PvP minecraft has dangerously spilled over to creative servers, should we ditch the 'sandbox' part of Minetest?

Absorbing proven mods into the core game like 'wool' which proved it's worth. It's neutral BUT c55 ideal was to make base engine well that depended on mods to make each server 'personal touch'.

Without a core program, there can really be nothing. Without proper frame, no mod will be able fix it.

While the new MESE is cute it doesn't mean that MESE blocks are gone. It's has open up more mods like UFO.

True the current direction of minetest with cruel PKers like LandMine who seems to be determine to undermine the game Minetest on multiple servers. A program can't correct behavior. Those who run servers can. Maybe we can simply write LandMine out of the game by having 'log actions on conditions' like one I proposed PK notifier where attacks are announced and logged. Maybe having trigger like everytime someone uses lava or lava in bucket. This could be written as a mod then eventually included in core mods.

Still we need a direction to go from here. If not minecraft then what? Finding that direction might be hardest thing in minetest to find.

my 2 cents....

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

by Inocudom » Post

Minetest should still be a sandbox game. It can have similarities to Minecraft, but it should avoid being a clone of it.

User avatar
Neuromancer
Member
Posts: 964
Joined: Tue Jun 12, 2012 22:28
GitHub: Neuromancer56

by Neuromancer » Post

Jordach wrote:Minetest in recent months has started to lose things which made it stick out from the others. Since c55 left the project, PilzAdam has been making various minetest_game decisions which have either:

Pissed several people off

Or

Removed ancient artefacts such as mese blocks. Which leads to option 1.

If we keep going this way, Minetest is going to look like a huge steaming pile of shit Minecraft is.

@PilzAdam quit being blind!

-Jordach
There's a problem with criticism and negativity, it tends to demoralize the very people who are keeping the game alive. If there is too much criticism, they will eventually just give up and stop contributing all of their hard work. What Minetest needs to keep it alive is less criticism and negativity, and if someone has a better idea, then write some C++ code and make the game better. If someone wants the engine to be more efficient (or whatever enhancement), then by all means write the code to make it so and contribute it to the team. Otherwise silence is the best bet. That doesn't mean positive ideas shouldn't be shared.

Working together rather than creating a fork is also a better approach. I think there has been some decent progress over the last few months.

User avatar
Neuromancer
Member
Posts: 964
Joined: Tue Jun 12, 2012 22:28
GitHub: Neuromancer56

by Neuromancer » Post

Michael Eh? wrote:' like one I proposed PK notifier where attacks are announced and logged. Maybe having trigger like everytime someone uses lava or lava in bucket. This could be written as a mod then eventually included in core mods.
.
These are really good ideas that would move the game forward and should be easy to implement.
Last edited by Neuromancer on Sat Apr 06, 2013 12:43, edited 1 time in total.

User avatar
DaN
Member
Posts: 82
Joined: Sat Apr 06, 2013 19:09
Location: Silicon Valley
Contact:

by DaN » Post

My, this forum really has grown since 0.2. :)
I'm Dan. I've been following (and playing) Minetest since 0.2 (hinted above). Just joined the forums outta urge.
Really like ideas in this discussion. Esp. the separate gamemodes and focus on optimizing the engine.
I'll be keeping eye on this thread (really interested in the way this will unravel). Might think of some ideas.

-D.H.
DaN H.

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 7 guests