[Mod] Mesecons (= redstone) [GitHub] [minetest-mod-mesecons]

Gatharoth
Member
 
Posts: 196
Joined: Thu Dec 22, 2011 02:54

by Gatharoth » Fri Jan 06, 2012 05:19

Jeija, in seeing pressure pads, I was thinking of adding a "portable" button. Wall mounted. So would this be the proper code, or would I need to add something else to it?

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_node("jeija:wall_button", {
    drawtype = "signlike",
    tile_images = {"jeija_wall_button.png"},
    inventory_image = "jeija_wall_button.png",
    paramtype = "light",
    is_ground_content = false,
    walkable = false,
    selection_box = {
        type = "fixed",
    },
    material = minetest.digprop_constanttime(0.3),
})

minetest.register_on_dignode(
    function(pos, oldnode, digger)
        if oldnode.name == "jeija:wall_button" then
            mesecon:receptor_off(pos, "wallbutton")
        end   
    end
)
minetest.register_on_punchnode(function(pos, node, puncher)
    if node.name == "jeija:wall_button" then
        minetest.env:remove_node(pos)
        minetest.env:add_node(pos, {name="jeija:wall_button_off})
        nodeupdate(pos)
        mesecon:receptor_off(pos)
    end
end)
mesecon:add_receptor_node("jeija:wall_button")


(note: off version will be applied also. And I would need to make another rule set for the wall_button correct?)
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Fri Jan 06, 2012 05:21

Yeah, you should make another rule for that. Let me check that out in a few minutes... You should also use an on-state and an off-state button. Unfortunately the button won't look good :(, there is no special drawtype for it. You could use something like signs for example.
Redstone for minetest: Mesecons (mesecons.net)
 

Gatharoth
Member
 
Posts: 196
Joined: Thu Dec 22, 2011 02:54

by Gatharoth » Fri Jan 06, 2012 05:28

Jeija wrote:Yeah, you should make another rule for that. Let me check that out in a few minutes... You should also use an on-state and an off-state button. Unfortunately the button won't look good :(, there is no special drawtype for it. You could use something like signs for example.


There will be an on/off state, didn't you read the note at the end? XP

Why do you think the button won't look good? Because it has no special drawtype for it? And yeah, I would be using the sign drawtype.
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Fri Jan 06, 2012 05:34

It will be a 2d button. I guess it is better to use a global timer for stuff like this than using an abm, so that the time a button stays pressed is always the same.
Redstone for minetest: Mesecons (mesecons.net)
 

Gatharoth
Member
 
Posts: 196
Joined: Thu Dec 22, 2011 02:54

by Gatharoth » Fri Jan 06, 2012 05:41

Jeija wrote:It will be a 2d button. I guess it is better to use a global timer for stuff like this than using an abm, so that the time a button stays pressed is always the same.

I wasn't thinking of a timed button, more like a portable version of your switch. So its either on, or its off. Not giving it a short lifespan to generate power.
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Fri Jan 06, 2012 05:53

I think we need something like a button with a short span to generate power...
Redstone for minetest: Mesecons (mesecons.net)
 

Gatharoth
Member
 
Posts: 196
Joined: Thu Dec 22, 2011 02:54

by Gatharoth » Fri Jan 06, 2012 06:08

Alright. But I haven't worked with global timer yet, so I'd pretty but be blind shooting XD
 

Baŝto
New member
 
Posts: 9
Joined: Fri Jan 06, 2012 13:46

by Baŝto » Fri Jan 06, 2012 14:00

Karol wrote:Unfortunately, Jeija, you didn't help. Let me show my problem in other way:

switch1----T
R----- out
switch2----T

,where switch1/2 are switches, Ts are transmitters, R are receivers, - is cable.
[…]



I had that problem when I tried to build a D-Flipflop, too.

You have to change the minetest.register_abm in line 1415… change every "wlre.requested_state==1" to a "wlre.requested_state>0"


And the function mesecon:wireless_transmit (line 1557) must be changed, too.

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
function mesecon:wireless_transmit(channel, senderstate)
    local i = 1
    while mesecon.wireless_receivers[i]~=nil do
        if mesecon.wireless_receivers[i].channel==channel then
            if senderstate==1 then
                mesecon.wireless_receivers[i].requested_state=mesecon.wireless_receivers[i].requested_state+1
                print (mesecon.wireless_receivers[i].requested_state)
            elseif senderstate==0 then
                mesecon.wireless_receivers[i].requested_state=mesecon.wireless_receivers[i].requested_state-1
                if mesecon.wireless_receivers[i].requested_state<0 then
                    mesecon.wireless_receivers[i].requested_state=0
                end
                print (mesecon.wireless_receivers[i].requested_state)
            end
        end
        i=i+1
    end
end


With that code you are able to build complex circuits consisting of wires, OR-, NOT- and NOR-gates.

You can build an AND-gate (A*B) with inverted inputs and a NOR-gate ( ¬(¬A + ¬B) )
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Fri Jan 06, 2012 14:25

Great work! I'm just not sure if I should keep the current system or implement yours. Maybe I will make a configuration option for this and set yours by default. Thx!
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Fri Jan 06, 2012 14:37

@Jeija:
I can't get the Mese-Torches working.
Maybe you should add the Torches how they are, but it's a bit ugly if you place a torch on a mesecon
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

Baŝto
New member
 
Posts: 9
Joined: Fri Jan 06, 2012 13:46

by Baŝto » Sat Jan 07, 2012 19:37

oh I forgot to change senderstate==1 to senderstate>0

And other errors occur more often than usual: transmitters should be set to off before they are digged.

problems with mesecon in general:

And when an movestone or pistons move transmitters they must be set to off, too.

In general the circuits should be recomputed after movestone or piston moved stone, because that could affect circuits.

Maybe a register_on_move or something owuld be intersting.

And some ideas for new mesecno nodes/mods:

  • a chest positioning first inventory item next to it if that node is air (directions similar to piston)
  • object detectors on top of sings should only activate if player, which name is on the sign, is near to the detector
  • movestone which moves up and down (and mabye move the player -> elevator)

I tried to modify the object detector in my own, but failed reading the sign text

In the end I wanna say thank you ... great mod. I built a castle with the help of pistons :D
And a drawbridge with movestones *_* (last time I turned it on, 2 movestones disappeared :O)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat Jan 07, 2012 19:58

Baŝto wrote:And a drawbridge with movestones *_* (last time I turned it on, 2 movestones disappeared :O)

Happend to me too
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sat Jan 07, 2012 20:05

Sorry, but I can't work that much on my mod in the next weeks. I will continue adding small bugfixes and small additional features. It would be awesome if someone helped me developing.
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat Jan 07, 2012 20:10

Jeija wrote:Sorry, but I can't work that much on my mod in the next weeks. I will continue adding small bugfixes and small additional features. It would be awesome if someone helped me developing.

You should make a Github/Gitorious/Bitbucket Repo for this Mod, so others can help you
Last edited by sfan5 on Sat Jan 07, 2012 20:14, edited 1 time in total.
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sat Jan 07, 2012 20:56

Good idea:
https://github.com/Jeija/minetest-mod-mesecons
I just don't know much about git :(. Tell me if something is wrong...
Redstone for minetest: Mesecons (mesecons.net)
 

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

by jordan4ibanez » Sat Jan 07, 2012 21:35

i have sent you an email
If you can think it, you can make it.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat Jan 07, 2012 21:44

Jeija wrote:Good idea:
https://github.com/Jeija/minetest-mod-mesecons
I just don't know much about git :(. Tell me if something is wrong...

If you add me as a Collaborator to the Repo I can commit my changes directly.
Just add "sfan5" under Mesecons-Repo->Admin->Collaborators
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sat Jan 07, 2012 21:47

Done! Thanks for the request ^^
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat Jan 07, 2012 21:50

Jeija wrote:Done! Thanks for the request ^^

^^ I'll work on Buttons tomorrow.
And I have a solution for the Rotating-Switch Bug, you must keep the param2, then the Orientation is kept
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sat Jan 07, 2012 21:51

I tried that and it didn't work. param2 of the button is nil :( Was there any update/patch for that?
By the way: Your mesecon torches are working, but i have to change some rules so that vertical ones work better.
Last edited by Jeija on Sat Jan 07, 2012 21:52, edited 1 time in total.
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat Jan 07, 2012 21:58

Jeija wrote:I tried that and it didn't work. param2 of the button is nil :( Was there any update/patch for that?.

I'll try to get that working.
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Sat Jan 07, 2012 23:28

jeez, I can't wait for this mod to be done!! :D

edit. I could be testing soon..and I will make a calculator
Last edited by Jordach on Sat Jan 07, 2012 23:30, edited 1 time in total.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

Temperest
Member
 
Posts: 651
Joined: Tue Nov 15, 2011 23:13
GitHub: Uberi

by Temperest » Sun Jan 08, 2012 05:02

Here's a screenshot showing usage of the inverter and sockets to make common logic gates (showing OR, XOR, AND, NOT, and a diode):

Image

It needed a fix to my plugs and sockets that I'll be perfecting and posting tomorrow. In the meantime there is a bug in it so I would not use it for now.

@Jeija: I've looked at some other examples of delays, but as you can see if you are doing more complex circuits the propagation delay becomes more than a little noticable. I'll add it as a flag if you want though.

@Jordach: That sounds really interesting. If you like I would be willing to help with that. I've always wanted to try my hand at something more than an adder :).
WorldEdit 1.0 released

The Mesecons Laboratory - the art of Mesecons circuitry
Latest article: Mesecons Basics.
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sun Jan 08, 2012 05:56

For the adder: Make sure that the whole machine is in a close radius, like 30 blocks away. Unfortunately, if mesecon circuits are farer away, minetest doesn't simulate them.
@Temperest: Looks awesome! I can add you to git if you give me your name... Else, just post it here.
Last edited by Jeija on Sun Jan 08, 2012 05:57, edited 1 time in total.
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sun Jan 08, 2012 08:06

Jordach wrote:jeez, I can't wait for this mod to be done!! :D

edit. I could be testing soon..and I will make a calculator

You could use Mesecon Torches(i'm working on that)
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sun Jan 08, 2012 08:21

Get the latest code from Github, sfan5. The rules are not working yet for some reason, but it should be a good starting point for you,..
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sun Jan 08, 2012 08:41

Jeija wrote:Get the latest code from Github, sfan5. The rules are not working yet for some reason, but it should be a good starting point for you,..

I'll first work on Buttons ^^
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Sun Jan 08, 2012 08:44

Did some testing with pistons and wiring. If this does evolve, I could really make a nice dungeon with puzzles and death traps ^^
 

User avatar
Jeija
Member
 
Posts: 686
Joined: Fri Dec 23, 2011 21:46

by Jeija » Sun Jan 08, 2012 08:48

There are lots of possibilities in this mod... There are like 5 ways to do the same thing ^^ There are 3 different inverters eg. ;
I'm not sure if that is good or if an easy method with only a few parts (like in minecraft) was better...
I will try to implement Basto's code as soon as possible, I can also give you the permission to implement it on github if you want (Or anyone else can also implement it). Please just ask me for the permission on github here!!

@Sfan5: Would be awesome if you made a global timer for the buttons. Just set a requested state for each button and a time when the state will be changed. Try to save it in param1/2 or so. I would also need the global timer for your mesecon torches
Last edited by Jeija on Sun Jan 08, 2012 08:52, edited 1 time in total.
Redstone for minetest: Mesecons (mesecons.net)
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Sun Jan 08, 2012 08:52

I just want it to be finished so I can make some traps and challenges. I have an idea for a room, but it won't be possible until can find people to help me
 

PreviousNext

Return to Mod Releases

Who is online

Users browsing this forum: No registered users and 13 guests

cron