Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
illuna-minetest
Commits
b65c7ab4
Commit
b65c7ab4
authored
10 years ago
by
BlockMen
Browse files
Options
Downloads
Patches
Plain Diff
Improve group-based connection between raillike nodes
parent
40c2c18a
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
doc/lua_api.txt
+2
-2
2 additions, 2 deletions
doc/lua_api.txt
src/content_mapblock.cpp
+13
-25
13 additions, 25 deletions
src/content_mapblock.cpp
with
15 additions
and
27 deletions
doc/lua_api.txt
+
2
−
2
View file @
b65c7ab4
...
@@ -1053,8 +1053,8 @@ Another example: Make red wool from white wool and red dye:
...
@@ -1053,8 +1053,8 @@ Another example: Make red wool from white wool and red dye:
dropped as an item. If the node is wallmounted the wallmounted direction is
dropped as an item. If the node is wallmounted the wallmounted direction is
checked.
checked.
* `soil`: saplings will grow on nodes in this group
* `soil`: saplings will grow on nodes in this group
* `connect_to_raillike`: makes nodes of raillike drawtype
connect to
* `connect_to_raillike`: makes nodes of raillike drawtype
with same group value
other group members with same drawtype
connect to each other
### Known damage and digging time defining groups
### Known damage and digging time defining groups
* `crumbly`: dirt, sand
* `crumbly`: dirt, sand
...
...
This diff is collapsed.
Click to expand it.
src/content_mapblock.cpp
+
13
−
25
View file @
b65c7ab4
...
@@ -1421,77 +1421,65 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
...
@@ -1421,77 +1421,65 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
content_t
thiscontent
=
n
.
getContent
();
content_t
thiscontent
=
n
.
getContent
();
std
::
string
groupname
=
"connect_to_raillike"
;
// name of the group that enables connecting to raillike nodes of different kind
std
::
string
groupname
=
"connect_to_raillike"
;
// name of the group that enables connecting to raillike nodes of different kind
bool
self_
connect_to_raillike
=
((
ItemGroupList
)
nodedef
->
get
(
n
).
groups
)[
groupname
]
!=
0
;
int
self_
group
=
((
ItemGroupList
)
nodedef
->
get
(
n
).
groups
)[
groupname
];
if
((
nodedef
->
get
(
n_minus_x
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_minus_x
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_x
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_x
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_minus_x
.
getContent
()
==
thiscontent
)
||
n_minus_x
.
getContent
()
==
thiscontent
)
is_rail_x
[
0
]
=
true
;
is_rail_x
[
0
]
=
true
;
if
((
nodedef
->
get
(
n_minus_x_minus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_minus_x_minus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_x_minus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_x_minus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_minus_x_minus_y
.
getContent
()
==
thiscontent
)
||
n_minus_x_minus_y
.
getContent
()
==
thiscontent
)
is_rail_x_minus_y
[
0
]
=
true
;
is_rail_x_minus_y
[
0
]
=
true
;
if
((
nodedef
->
get
(
n_minus_x_plus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_minus_x_plus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_x_plus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_x_plus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_minus_x_plus_y
.
getContent
()
==
thiscontent
)
||
n_minus_x_plus_y
.
getContent
()
==
thiscontent
)
is_rail_x_plus_y
[
0
]
=
true
;
is_rail_x_plus_y
[
0
]
=
true
;
if
((
nodedef
->
get
(
n_plus_x
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_plus_x
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_x
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_x
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_plus_x
.
getContent
()
==
thiscontent
)
||
n_plus_x
.
getContent
()
==
thiscontent
)
is_rail_x
[
1
]
=
true
;
is_rail_x
[
1
]
=
true
;
if
((
nodedef
->
get
(
n_plus_x_minus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_plus_x_minus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_x_minus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_x_minus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_plus_x_minus_y
.
getContent
()
==
thiscontent
)
||
n_plus_x_minus_y
.
getContent
()
==
thiscontent
)
is_rail_x_minus_y
[
1
]
=
true
;
is_rail_x_minus_y
[
1
]
=
true
;
if
((
nodedef
->
get
(
n_plus_x_plus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_plus_x_plus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_x_plus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_x_plus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_plus_x_plus_y
.
getContent
()
==
thiscontent
)
||
n_plus_x_plus_y
.
getContent
()
==
thiscontent
)
is_rail_x_plus_y
[
1
]
=
true
;
is_rail_x_plus_y
[
1
]
=
true
;
if
((
nodedef
->
get
(
n_minus_z
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_minus_z
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_z
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_z
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_minus_z
.
getContent
()
==
thiscontent
)
||
n_minus_z
.
getContent
()
==
thiscontent
)
is_rail_z
[
0
]
=
true
;
is_rail_z
[
0
]
=
true
;
if
((
nodedef
->
get
(
n_minus_z_minus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_minus_z_minus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_z_minus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_z_minus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_minus_z_minus_y
.
getContent
()
==
thiscontent
)
||
n_minus_z_minus_y
.
getContent
()
==
thiscontent
)
is_rail_z_minus_y
[
0
]
=
true
;
is_rail_z_minus_y
[
0
]
=
true
;
if
((
nodedef
->
get
(
n_minus_z_plus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_minus_z_plus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_z_plus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_minus_z_plus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_minus_z_plus_y
.
getContent
()
==
thiscontent
)
||
n_minus_z_plus_y
.
getContent
()
==
thiscontent
)
is_rail_z_plus_y
[
0
]
=
true
;
is_rail_z_plus_y
[
0
]
=
true
;
if
((
nodedef
->
get
(
n_plus_z
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_plus_z
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_z
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_z
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_plus_z
.
getContent
()
==
thiscontent
)
||
n_plus_z
.
getContent
()
==
thiscontent
)
is_rail_z
[
1
]
=
true
;
is_rail_z
[
1
]
=
true
;
if
((
nodedef
->
get
(
n_plus_z_minus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_plus_z_minus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_z_minus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_z_minus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_plus_z_minus_y
.
getContent
()
==
thiscontent
)
||
n_plus_z_minus_y
.
getContent
()
==
thiscontent
)
is_rail_z_minus_y
[
1
]
=
true
;
is_rail_z_minus_y
[
1
]
=
true
;
if
((
nodedef
->
get
(
n_plus_z_plus_y
).
drawtype
==
NDT_RAILLIKE
if
((
nodedef
->
get
(
n_plus_z_plus_y
).
drawtype
==
NDT_RAILLIKE
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_z_plus_y
).
groups
)[
groupname
]
!=
0
&&
((
ItemGroupList
)
nodedef
->
get
(
n_plus_z_plus_y
).
groups
)[
groupname
]
!=
self_group
)
&&
self_connect_to_raillike
)
||
n_plus_z_plus_y
.
getContent
()
==
thiscontent
)
||
n_plus_z_plus_y
.
getContent
()
==
thiscontent
)
is_rail_z_plus_y
[
1
]
=
true
;
is_rail_z_plus_y
[
1
]
=
true
;
...
...
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