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
4ad8891e
Commit
4ad8891e
authored
13 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
Convert CraftItems directly to the name pointed by alias; necessary due to lua definition table
parent
2b8b2a4f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/craftitemdef.cpp
+9
-6
9 additions, 6 deletions
src/craftitemdef.cpp
src/craftitemdef.h
+1
-0
1 addition, 0 deletions
src/craftitemdef.h
src/inventory.cpp
+9
-0
9 additions, 0 deletions
src/inventory.cpp
src/inventory.h
+1
-5
1 addition, 5 deletions
src/inventory.h
with
20 additions
and
11 deletions
src/craftitemdef.cpp
+
9
−
6
View file @
4ad8891e
...
@@ -88,12 +88,7 @@ class CCraftItemDefManager: public IWritableCraftItemDefManager
...
@@ -88,12 +88,7 @@ class CCraftItemDefManager: public IWritableCraftItemDefManager
virtual
const
CraftItemDefinition
*
getCraftItemDefinition
(
const
std
::
string
&
itemname_
)
const
virtual
const
CraftItemDefinition
*
getCraftItemDefinition
(
const
std
::
string
&
itemname_
)
const
{
{
// Convert name according to possible alias
// Convert name according to possible alias
std
::
string
itemname
=
itemname_
;
std
::
string
itemname
=
getAlias
(
itemname_
);
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
i
;
i
=
m_aliases
.
find
(
itemname
);
if
(
i
!=
m_aliases
.
end
()){
itemname
=
i
->
second
;
}
// Get the definition
// Get the definition
core
::
map
<
std
::
string
,
CraftItemDefinition
*>::
Node
*
n
;
core
::
map
<
std
::
string
,
CraftItemDefinition
*>::
Node
*
n
;
n
=
m_item_definitions
.
find
(
itemname
);
n
=
m_item_definitions
.
find
(
itemname
);
...
@@ -108,6 +103,14 @@ class CCraftItemDefManager: public IWritableCraftItemDefManager
...
@@ -108,6 +103,14 @@ class CCraftItemDefManager: public IWritableCraftItemDefManager
return
""
;
return
""
;
return
def
->
imagename
;
return
def
->
imagename
;
}
}
virtual
std
::
string
getAlias
(
const
std
::
string
&
name
)
const
{
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
i
;
i
=
m_aliases
.
find
(
name
);
if
(
i
!=
m_aliases
.
end
())
return
i
->
second
;
return
name
;
}
virtual
bool
registerCraftItem
(
std
::
string
itemname
,
const
CraftItemDefinition
&
def
)
virtual
bool
registerCraftItem
(
std
::
string
itemname
,
const
CraftItemDefinition
&
def
)
{
{
infostream
<<
"registerCraftItem: registering CraftItem
\"
"
<<
itemname
<<
"
\"
"
<<
std
::
endl
;
infostream
<<
"registerCraftItem: registering CraftItem
\"
"
<<
itemname
<<
"
\"
"
<<
std
::
endl
;
...
...
This diff is collapsed.
Click to expand it.
src/craftitemdef.h
+
1
−
0
View file @
4ad8891e
...
@@ -49,6 +49,7 @@ class ICraftItemDefManager
...
@@ -49,6 +49,7 @@ class ICraftItemDefManager
virtual
~
ICraftItemDefManager
(){}
virtual
~
ICraftItemDefManager
(){}
virtual
const
CraftItemDefinition
*
getCraftItemDefinition
(
const
std
::
string
&
itemname
)
const
=
0
;
virtual
const
CraftItemDefinition
*
getCraftItemDefinition
(
const
std
::
string
&
itemname
)
const
=
0
;
virtual
std
::
string
getImagename
(
const
std
::
string
&
itemname
)
const
=
0
;
virtual
std
::
string
getImagename
(
const
std
::
string
&
itemname
)
const
=
0
;
virtual
std
::
string
getAlias
(
const
std
::
string
&
name
)
const
=
0
;
virtual
void
serialize
(
std
::
ostream
&
os
)
=
0
;
virtual
void
serialize
(
std
::
ostream
&
os
)
=
0
;
};
};
...
...
This diff is collapsed.
Click to expand it.
src/inventory.cpp
+
9
−
0
View file @
4ad8891e
...
@@ -354,6 +354,15 @@ bool ToolItem::isKnown() const
...
@@ -354,6 +354,15 @@ bool ToolItem::isKnown() const
CraftItem
CraftItem
*/
*/
CraftItem
::
CraftItem
(
IGameDef
*
gamedef
,
std
::
string
subname
,
u16
count
)
:
InventoryItem
(
gamedef
,
count
)
{
// Convert directly to the correct name through aliases.
// This is necessary because CraftItem callbacks are stored in
// Lua refenced by their correct name
m_subname
=
gamedef
->
cidef
()
->
getAlias
(
subname
);
}
#ifndef SERVER
#ifndef SERVER
video
::
ITexture
*
CraftItem
::
getImage
()
const
video
::
ITexture
*
CraftItem
::
getImage
()
const
{
{
...
...
This diff is collapsed.
Click to expand it.
src/inventory.h
+
1
−
5
View file @
4ad8891e
...
@@ -238,11 +238,7 @@ class MaterialItem : public InventoryItem
...
@@ -238,11 +238,7 @@ class MaterialItem : public InventoryItem
class
CraftItem
:
public
InventoryItem
class
CraftItem
:
public
InventoryItem
{
{
public:
public:
CraftItem
(
IGameDef
*
gamedef
,
std
::
string
subname
,
u16
count
)
:
CraftItem
(
IGameDef
*
gamedef
,
std
::
string
subname
,
u16
count
);
InventoryItem
(
gamedef
,
count
)
{
m_subname
=
subname
;
}
/*
/*
Implementation interface
Implementation interface
*/
*/
...
...
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