DayZ 1.28
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetFertilizerQuantity()

int ItemBase::GetFertilizerQuantity ( int slotIndex)
inlineprivate

См. определение в файле GardenBase.c строка 979

980 {
981 int bitsPerSlot = 8;
982 int slotsPerInt = 32 / bitsPerSlot;
983
984 int groupIndex = slotIndex / slotsPerInt;
985 int bitOffset = (slotIndex % slotsPerInt) * bitsPerSlot;
986
987 int value = GetFertilizerBitmapByIndex(groupIndex);
988 return (value >> bitOffset) & 255;
989 }
int GetFertilizerBitmapByIndex(int index)
Определения GardenBase.c:889

Перекрестные ссылки GetFertilizerBitmapByIndex().

Используется в UpdateSlots().