-
Notifications
You must be signed in to change notification settings - Fork 736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dogtags - Rename inventory items #10102
Closed
Closed
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
59093e6
Broadcast dogtag info globally so that arsenal can use it
johnb432 dde7376
Broadcast changes incrementally
johnb432 568367e
Rename dog tags inside containers
johnb432 c05c532
Update addons/dogtags/functions/fnc_inventoryDisplayLoad.sqf
johnb432 13a4def
Return to case insensitive method
johnb432 8c40e0f
Merge branch 'master' into dogtags-rename-inventory-items
johnb432 1120612
Merge branch 'master' into dogtags-rename-inventory-items
johnb432 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#include "..\script_component.hpp" | ||
/* | ||
* Author: johnb43 | ||
* Executed every time an inventory display is opened. | ||
* | ||
* Arguments: | ||
* 0: Inventory display <DISPLAY> | ||
* | ||
* Return Value: | ||
* None | ||
* | ||
* Example: | ||
* [DISPLAY] call ace_dogtags_fnc_inventoryDisplayLoad | ||
* | ||
* Public: No | ||
*/ | ||
|
||
disableSerialization; | ||
|
||
params ["_display"]; | ||
|
||
// Monitor changes that can happen and force our update | ||
private _dummyControl = _display ctrlCreate ["RscMapControl", -1]; | ||
|
||
_dummyControl ctrlSetPosition [0, 0, 0, 0]; | ||
_dummyControl ctrlCommit 0; | ||
|
||
_dummyControl ctrlAddEventHandler ["Draw", { | ||
private _display = ctrlParent (_this select 0); | ||
PabstMirror marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
{ | ||
private _itemList = _display displayCtrl _x; | ||
|
||
// If control isn't shown, skip | ||
if (!ctrlShown _itemList) then { | ||
continue; | ||
}; | ||
|
||
for "_i" from (lbSize _itemList) to 0 step -1 do { | ||
private _item = _itemList lbData _i; | ||
|
||
if (_item find "ACE_dogtag_" == 0) then { | ||
_dogtagData = GVAR(dogtagsData) getOrDefault [_item, []]; | ||
johnb432 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// If data doesn't exist, put name as "unknown" | ||
_itemList lbSetText [_i, [LLSTRING(itemName), ": ", _dogtagData param [0, LELSTRING(common,unknown)]] joinString ""]; | ||
}; | ||
}; | ||
} forEach [IDC_ITEMLIST_GROUND, IDC_ITEMLIST_SOLDIER, IDC_ITEMLIST_UNIFORM, IDC_ITEMLIST_VEST, IDC_ITEMLIST_BACKPACK]; | ||
}]; | ||
PabstMirror marked this conversation as resolved.
Show resolved
Hide resolved
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO this should be a framework
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, but frankly I don't want to invest the time and effort into making a framework. I saw the CBA one, but that seems to be stale.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was mostly done at the time iirc, just needs someone to wrap it up and make any changes that need to be accounted for