Content deleted Content added
Alistair3149 (talk | contribs) No edit summary |
Alistair3149 (talk | contribs) No edit summary |
||
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
require( 'strict' ) |
require( 'strict' ) |
||
local |
local p = {} |
||
local MODULE_NAME = 'Food' |
|||
local i18n = require( 'Module:i18n' ):new() |
|||
local TNT = require( 'Module:Translate' ):new() |
local TNT = require( 'Module:Translate' ):new() |
||
local smwCommon = require( 'Module:Common/SMW' ) |
local smwCommon = require( 'Module:Common/SMW' ) |
||
local data = mw.loadJsonData( 'Module:Item/ |
local data = mw.loadJsonData( 'Module:Item/' .. MODULE_NAME .. '/data.json' ) |
||
local config = mw.loadJsonData( 'Module:Item/config.json' ) |
local config = mw.loadJsonData( 'Module:Item/config.json' ) |
||
--- Wrapper function for Module:i18n.translate |
|||
--- |
|||
⚫ | |||
--- @return string If the key was not found, the key is returned |
|||
local function t( key ) |
|||
return i18n:translate( key ) |
|||
⚫ | |||
Line 12: | Line 24: | ||
--- |
--- |
||
--- @param key string The translation key |
--- @param key string The translation key |
||
--- @param addSuffix boolean Adds a language suffix if config.smw_multilingual_text is true |
--- @param addSuffix boolean|nil Adds a language suffix if config.smw_multilingual_text is true |
||
--- @return string If the key was not found in the .tab page, the key is returned |
--- @return string If the key was not found in the .tab page, the key is returned |
||
local function translate( key, addSuffix, ... ) |
local function translate( key, addSuffix, ... ) |
||
return TNT:translate( 'Module:Item/ |
return TNT:translate( 'Module:Item/' .. MODULE_NAME .. '/i18n.json', config, key, addSuffix, {...} ) |
||
end |
end |
||
Line 22: | Line 34: | ||
--- |
--- |
||
--- @param smwSetObject table |
--- @param smwSetObject table |
||
function |
function p.addSmwProperties( apiData, frameArgs, smwSetObject ) |
||
smwCommon.addSmwProperties( |
smwCommon.addSmwProperties( |
||
apiData, |
apiData, |
||
Line 30: | Line 42: | ||
config, |
config, |
||
data, |
data, |
||
'Item/ |
'Item/' .. MODULE_NAME |
||
) |
) |
||
--- Not sure if size matters, not like there is a S12 Double Dog |
--- Not sure if size matters, not like there is a S12 Double Dog |
||
--- FIXME: SMW_Size is from Module:Item, I made a duplicated entry in Module:Item/Food/i18n.json to make this work |
--- FIXME: SMW_Size is from Module:Item, I made a duplicated entry in Module:Item/Food/i18n.json to make this work |
||
smwSetObject[ |
smwSetObject[ t( 'SMW_Size' ) ] = nil |
||
--- GEND and GENF are placeholders |
--- GEND and GENF are placeholders |
||
--- FIXME: Same as above |
--- FIXME: Same as above |
||
if smwSetObject[ |
if smwSetObject[ t( 'SMW_Manufacturer' ) ] == '[[GEND]]' or smwSetObject[ t( 'SMW_Manufacturer' ) ] == '[[GENF]]' then |
||
smwSetObject[ |
smwSetObject[ t( 'SMW_Manufacturer' ) ] = nil |
||
end |
end |
||
--- We only know whether the item is single use or not |
--- We only know whether the item is single use or not |
||
if smwSetObject[ |
if smwSetObject[ t( 'SMW_Uses' ) ] == true then |
||
smwSetObject[ |
smwSetObject[ t( 'SMW_Uses' ) ] = 1 |
||
else |
else |
||
smwSetObject[ |
smwSetObject[ t( 'SMW_Uses' ) ] = nil |
||
end |
end |
||
if smwSetObject[ |
if smwSetObject[ t( 'SMW_Effect' ) ] == 'None' then |
||
smwSetObject[ |
smwSetObject[ t( 'SMW_Effect' ) ] = nil |
||
end |
end |
||
end |
end |
||
Line 59: | Line 71: | ||
--- |
--- |
||
--- @param smwAskObject table |
--- @param smwAskObject table |
||
--- @return |
--- @return nil |
||
function |
function p.addSmwAskProperties( smwAskObject ) |
||
smwCommon.addSmwAskProperties( |
smwCommon.addSmwAskProperties( |
||
smwAskObject, |
smwAskObject, |
||
Line 74: | Line 86: | ||
--- @param infobox table The Module:InfoboxNeue instance |
--- @param infobox table The Module:InfoboxNeue instance |
||
--- @param smwData table Data from Semantic MediaWiki |
--- @param smwData table Data from Semantic MediaWiki |
||
--- @return |
--- @return nil |
||
function |
function p.addInfoboxData( infobox, smwData ) |
||
infobox:renderSection( { |
infobox:renderSection( { |
||
title = translate( 'LBL_Usage' ), |
|||
content = { |
content = { |
||
infobox:renderItem( { |
infobox:renderItem( { |
||
label = translate( 'LBL_Effect' ), |
label = translate( 'LBL_Effect' ), |
||
data = infobox.tableToCommaList( smwData[ |
data = infobox.tableToCommaList( smwData[ t( 'SMW_Effect' ) ] ), |
||
colspan = 2 |
colspan = 2 |
||
} ), |
} ), |
||
infobox:renderItem( { |
infobox:renderItem( { |
||
label = translate( 'LBL_NutritionalDensityRating' ), |
label = translate( 'LBL_NutritionalDensityRating' ), |
||
data = smwData[ |
data = smwData[ t( 'SMW_NutritionalDensityRating' ) ], |
||
} ), |
} ), |
||
infobox:renderItem( { |
infobox:renderItem( { |
||
label = translate( 'LBL_HydrationEfficacyIndex' ), |
label = translate( 'LBL_HydrationEfficacyIndex' ), |
||
data = smwData[ |
data = smwData[ t( 'SMW_HydrationEfficacyIndex' ) ], |
||
} ), |
} ), |
||
infobox:renderItem( { |
infobox:renderItem( { |
||
label = translate( ' |
label = translate( 'LBL_Uses' ), |
||
data = smwData[ |
data = smwData[ t( 'SMW_Uses' ) ], |
||
} ) |
} ) |
||
}, |
}, |
||
Line 108: | Line 119: | ||
--- @param frameArgs table Frame arguments from Module:Arguments |
--- @param frameArgs table Frame arguments from Module:Arguments |
||
--- @param smwData table Data from Semantic MediaWiki |
--- @param smwData table Data from Semantic MediaWiki |
||
--- @return |
--- @return nil |
||
function |
function p.addCategories( categories, frameArgs, smwData ) |
||
--- TODO: This should be in Module:Item eventually |
|||
--- But we do not have a full Type <--> Category mapping yet |
|||
if smwData[ translate( 'SMW_Type' ) ] ~= nil then |
|||
table.insert( |
|||
self.categories, |
|||
translate( 'category_' .. string.lower( smwData[ translate( 'SMW_Type' ) ] ) ) |
|||
) |
|||
⚫ | |||
end |
end |
||
--- |
--- Return the short description for this object |
||
--- |
--- |
||
⚫ | |||
--- @param frameArgs table Frame arguments from Module:Arguments |
--- @param frameArgs table Frame arguments from Module:Arguments |
||
--- @param smwData table Data from Semantic MediaWiki |
--- @param smwData table Data from Semantic MediaWiki |
||
--- @return |
--- @return string|nil |
||
function |
function p.getShortDescription( frameArgs, smwData ) |
||
if smwData[ translate( 'SMW_Type' ) ] ~= nil then |
|||
shortdesc = smwData[ translate( 'SMW_Type' ) ] |
|||
end |
|||
end |
end |
||
return |
return p |
Latest revision as of 22:05, 8 May 2024
This documentation is transcluded from Module:Item/Food/doc. Changes can be proposed in the talk page.
Module:Item/Food is shared across the Star Citizen Wikis.
This module is shared across the Star Citizen Wikis. Any changes should also be relayed to the GitHub repository.
Module:Item/Food loads messages from Module:Item/Food/i18n.json.
This module is designed to be language-neutral. All of the messages are saved in the i18n.json subpage.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
require( 'strict' )
local p = {}
local MODULE_NAME = 'Food'
local i18n = require( 'Module:i18n' ):new()
local TNT = require( 'Module:Translate' ):new()
local smwCommon = require( 'Module:Common/SMW' )
local data = mw.loadJsonData( 'Module:Item/' .. MODULE_NAME .. '/data.json' )
local config = mw.loadJsonData( 'Module:Item/config.json' )
--- Wrapper function for Module:i18n.translate
---
--- @param key string The translation key
--- @return string If the key was not found, the key is returned
local function t( key )
return i18n:translate( key )
end
--- Wrapper function for Module:Translate.translate
---
--- @param key string The translation key
--- @param addSuffix boolean|nil Adds a language suffix if config.smw_multilingual_text is true
--- @return string If the key was not found in the .tab page, the key is returned
local function translate( key, addSuffix, ... )
return TNT:translate( 'Module:Item/' .. MODULE_NAME .. '/i18n.json', config, key, addSuffix, {...} )
end
--- Adds the properties valid for this item to the SMW Set object
---
--- @param smwSetObject table
function p.addSmwProperties( apiData, frameArgs, smwSetObject )
smwCommon.addSmwProperties(
apiData,
frameArgs,
smwSetObject,
translate,
config,
data,
'Item/' .. MODULE_NAME
)
--- Not sure if size matters, not like there is a S12 Double Dog
--- FIXME: SMW_Size is from Module:Item, I made a duplicated entry in Module:Item/Food/i18n.json to make this work
smwSetObject[ t( 'SMW_Size' ) ] = nil
--- GEND and GENF are placeholders
--- FIXME: Same as above
if smwSetObject[ t( 'SMW_Manufacturer' ) ] == '[[GEND]]' or smwSetObject[ t( 'SMW_Manufacturer' ) ] == '[[GENF]]' then
smwSetObject[ t( 'SMW_Manufacturer' ) ] = nil
end
--- We only know whether the item is single use or not
if smwSetObject[ t( 'SMW_Uses' ) ] == true then
smwSetObject[ t( 'SMW_Uses' ) ] = 1
else
smwSetObject[ t( 'SMW_Uses' ) ] = nil
end
if smwSetObject[ t( 'SMW_Effect' ) ] == 'None' then
smwSetObject[ t( 'SMW_Effect' ) ] = nil
end
end
--- Adds all SMW parameters set by this Module to the ASK object
---
--- @param smwAskObject table
--- @return nil
function p.addSmwAskProperties( smwAskObject )
smwCommon.addSmwAskProperties(
smwAskObject,
translate,
config,
data
)
end
--- Adds entries to the infobox
---
--- @param infobox table The Module:InfoboxNeue instance
--- @param smwData table Data from Semantic MediaWiki
--- @return nil
function p.addInfoboxData( infobox, smwData )
infobox:renderSection( {
content = {
infobox:renderItem( {
label = translate( 'LBL_Effect' ),
data = infobox.tableToCommaList( smwData[ t( 'SMW_Effect' ) ] ),
colspan = 2
} ),
infobox:renderItem( {
label = translate( 'LBL_NutritionalDensityRating' ),
data = smwData[ t( 'SMW_NutritionalDensityRating' ) ],
} ),
infobox:renderItem( {
label = translate( 'LBL_HydrationEfficacyIndex' ),
data = smwData[ t( 'SMW_HydrationEfficacyIndex' ) ],
} ),
infobox:renderItem( {
label = translate( 'LBL_Uses' ),
data = smwData[ t( 'SMW_Uses' ) ],
} )
},
col = 4
} )
end
--- Add categories that are set on the page.
--- The categories table should only contain category names, no MW Links, i.e. 'Foo' instead of '[[Category:Foo]]'
---
--- @param categories table The categories table
--- @param frameArgs table Frame arguments from Module:Arguments
--- @param smwData table Data from Semantic MediaWiki
--- @return nil
function p.addCategories( categories, frameArgs, smwData )
end
--- Return the short description for this object
---
--- @param frameArgs table Frame arguments from Module:Arguments
--- @param smwData table Data from Semantic MediaWiki
--- @return string|nil
function p.getShortDescription( frameArgs, smwData )
end
return p