Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mesecons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
mesecons
Commits
011543a7
Commit
011543a7
authored
10 years ago
by
Jeija
Browse files
Options
Downloads
Patches
Plain Diff
Fix #196, removes soft-depend on commonlib
parent
b3aa8f5d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mesecons/util.lua
+9
-30
9 additions, 30 deletions
mesecons/util.lua
mesecons_luacontroller/init.lua
+1
-2
1 addition, 2 deletions
mesecons_luacontroller/init.lua
with
10 additions
and
32 deletions
mesecons/util.lua
+
9
−
30
View file @
011543a7
...
...
@@ -6,18 +6,6 @@ function mesecon.move_node(pos, newpos)
minetest
.
get_meta
(
pos
):
from_table
(
meta
)
end
--[[ new functions:
mesecon.flattenrules(allrules)
mesecon.rule2bit(findrule, allrules)
mesecon.rule2meta(findrule, allrules)
dec2bin(n)
mesecon.getstate(nodename, states)
mesecon.getbinstate(nodename, states)
mesecon.get_bit(binary, bit)
mesecon.set_bit(binary, bit, value)
mesecon.invertRule(r)
--]]
function
mesecon
.
flattenrules
(
allrules
)
--[[
{
...
...
@@ -101,21 +89,12 @@ function mesecon.rule2meta(findrule, allrules)
return
allrules
[
index
]
end
if
convert_base
then
print
(
"base2dec is tonumber(num,base1)\n"
..
"commonlib needs dec2base(num,base2)\n"
..
"and it needs base2base(num,base1,base2),\n"
..
"which is dec2base(tonumber(num,base1),base2)"
)
else
function
dec2bin
(
n
)
local
x
,
y
=
math.floor
(
n
/
2
),
n
%
2
if
(
n
>
1
)
then
return
dec2bin
(
x
)
..
y
else
return
""
..
y
end
function
mesecon
.
dec2bin
(
n
)
local
x
,
y
=
math.floor
(
n
/
2
),
n
%
2
if
(
n
>
1
)
then
return
mesecon
.
dec2bin
(
x
)
..
y
else
return
""
..
y
end
end
...
...
@@ -129,7 +108,7 @@ function mesecon.getstate(nodename, states)
end
function
mesecon
.
getbinstate
(
nodename
,
states
)
return
dec2bin
(
mesecon
.
getstate
(
nodename
,
states
)
-
1
)
return
mesecon
.
dec2bin
(
mesecon
.
getstate
(
nodename
,
states
)
-
1
)
end
function
mesecon
.
get_bit
(
binary
,
bit
)
...
...
@@ -141,11 +120,11 @@ end
function
mesecon
.
set_bit
(
binary
,
bit
,
value
)
if
value
==
"1"
then
if
not
mesecon
.
get_bit
(
binary
,
bit
)
then
return
dec2bin
(
tonumber
(
binary
,
2
)
+
math
.
pow
(
2
,
bit
-
1
))
return
mesecon
.
dec2bin
(
tonumber
(
binary
,
2
)
+
math
.
pow
(
2
,
bit
-
1
))
end
elseif
value
==
"0"
then
if
mesecon
.
get_bit
(
binary
,
bit
)
then
return
dec2bin
(
tonumber
(
binary
,
2
)
-
math
.
pow
(
2
,
bit
-
1
))
return
mesecon
.
dec2bin
(
tonumber
(
binary
,
2
)
-
math
.
pow
(
2
,
bit
-
1
))
end
end
return
binary
...
...
This diff is collapsed.
Click to expand it.
mesecons_luacontroller/init.lua
+
1
−
2
View file @
011543a7
...
...
@@ -559,7 +559,6 @@ for d = 0, 1 do
node_box
=
node_box
,
on_construct
=
reset_meta
,
on_receive_fields
=
on_receive_fields
,
on_timer
=
handle_timer
,
sounds
=
default
.
node_sound_stone_defaults
(),
mesecons
=
mesecons
,
digiline
=
digiline
,
...
...
@@ -600,7 +599,7 @@ minetest.register_node(BASENAME .. "_burnt", {
groups
=
{
dig_immediate
=
2
,
not_in_creative_inventory
=
1
},
drop
=
BASENAME
..
"0000"
,
sunlight_propagates
=
true
,
selection_box
=
selectionbox
,
selection_box
=
selection
_
box
,
node_box
=
node_box
,
on_construct
=
reset_meta
,
on_receive_fields
=
on_receive_fields
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment