2023-06-20 04:33:09 +00:00
|
|
|
#include "StarMaterialItem.hpp"
|
|
|
|
#include "StarJson.hpp"
|
|
|
|
#include "StarMaterialDatabase.hpp"
|
|
|
|
#include "StarRoot.hpp"
|
|
|
|
#include "StarAssets.hpp"
|
|
|
|
#include "StarWorld.hpp"
|
|
|
|
#include "StarWorldClient.hpp"
|
|
|
|
#include "StarWorldTemplate.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
MaterialItem::MaterialItem(Json const& config, String const& directory, Json const& settings)
|
|
|
|
: Item(config, directory, settings), FireableItem(config), BeamItem(config) {
|
|
|
|
m_material = config.getInt("materialId");
|
|
|
|
m_materialHueShift = materialHueFromDegrees(instanceValue("materialHueShift", 0).toFloat());
|
|
|
|
|
|
|
|
if (materialHueShift() != MaterialHue()) {
|
|
|
|
auto drawables = iconDrawables();
|
|
|
|
for (auto& d : drawables) {
|
2023-06-24 12:49:47 +00:00
|
|
|
if (d.isImage()) {
|
2023-06-27 10:23:44 +00:00
|
|
|
String image = strf("?hueshift={}", materialHueToDegrees(m_materialHueShift));
|
2023-06-24 12:49:47 +00:00
|
|
|
d.imagePart().addDirectives(image, false);
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
setIconDrawables(move(drawables));
|
|
|
|
}
|
|
|
|
|
|
|
|
setTwoHanded(config.getBool("twoHanded", true));
|
|
|
|
|
2023-07-31 06:00:19 +00:00
|
|
|
auto defaultParameters = Root::singleton().assets()->json("/items/defaultParameters.config");
|
|
|
|
setCooldownTime(config.queryFloat("materialItems.cooldown", defaultParameters.queryFloat("materialItems.cooldown")));
|
|
|
|
m_blockRadius = config.getFloat("blockRadius", defaultParameters.getFloat("blockRadius"));
|
|
|
|
m_altBlockRadius = config.getFloat("altBlockRadius", defaultParameters.getFloat("altBlockRadius"));
|
2023-06-20 04:33:09 +00:00
|
|
|
m_multiplace = config.getBool("allowMultiplace", BlockCollisionSet.contains(Root::singleton().materialDatabase()->materialCollisionKind(m_material)));
|
|
|
|
|
|
|
|
m_shifting = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ItemPtr MaterialItem::clone() const {
|
|
|
|
return make_shared<MaterialItem>(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaterialItem::init(ToolUserEntity* owner, ToolHand hand) {
|
|
|
|
FireableItem::init(owner, hand);
|
|
|
|
BeamItem::init(owner, hand);
|
|
|
|
}
|
|
|
|
|
2023-07-20 14:58:49 +00:00
|
|
|
void MaterialItem::update(float dt, FireMode fireMode, bool shifting, HashSet<MoveControlType> const& moves) {
|
|
|
|
FireableItem::update(dt, fireMode, shifting, moves);
|
|
|
|
BeamItem::update(dt, fireMode, shifting, moves);
|
2023-06-20 04:33:09 +00:00
|
|
|
if (shifting || !multiplaceEnabled())
|
|
|
|
setEnd(BeamItem::EndType::Tile);
|
|
|
|
else
|
|
|
|
setEnd(BeamItem::EndType::TileGroup);
|
|
|
|
m_shifting = shifting;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Drawable> MaterialItem::nonRotatedDrawables() const {
|
|
|
|
return beamDrawables(canPlace(m_shifting));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaterialItem::fire(FireMode mode, bool shifting, bool edgeTriggered) {
|
|
|
|
if (!initialized() || !ready() || !owner()->inToolRange())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto layer = (mode == FireMode::Primary || !twoHanded() ? TileLayer::Foreground : TileLayer::Background);
|
|
|
|
TileModificationList modifications;
|
|
|
|
|
|
|
|
float radius;
|
|
|
|
|
|
|
|
if (!shifting)
|
|
|
|
radius = m_blockRadius;
|
|
|
|
else
|
|
|
|
radius = m_altBlockRadius;
|
|
|
|
|
|
|
|
if (!multiplaceEnabled())
|
|
|
|
radius = 1;
|
|
|
|
|
2023-07-31 06:00:19 +00:00
|
|
|
auto geo = world()->geometry();
|
|
|
|
auto aimPosition = owner()->aimPosition();
|
|
|
|
if (!m_lastAimPosition)
|
|
|
|
m_lastAimPosition = aimPosition;
|
|
|
|
|
|
|
|
unsigned steps = 1;
|
|
|
|
Vec2F diff = {};
|
|
|
|
if (*m_lastAimPosition != aimPosition) {
|
|
|
|
diff = geo.diff(*m_lastAimPosition, aimPosition);
|
|
|
|
float magnitude = diff.magnitude();
|
|
|
|
if (magnitude > 32) {
|
|
|
|
m_lastAimPosition = aimPosition + diff.normalized() * 32;
|
|
|
|
magnitude = 32;
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
|
2023-07-31 06:00:19 +00:00
|
|
|
steps = (int)ceil(magnitude);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool fail = true;
|
|
|
|
for (int i = 0; i != steps; ++i) {
|
|
|
|
auto placementOrigin = aimPosition + diff * ((float)i / steps);
|
|
|
|
for (Vec2I pos : tileAreaBrush(radius, placementOrigin, true))
|
|
|
|
modifications.append({ pos, PlaceMaterial{layer, materialId(), placementHueShift(pos)} });
|
|
|
|
|
|
|
|
// Make sure not to make any more modifications than we have consumables.
|
|
|
|
if (modifications.size() > count())
|
|
|
|
modifications.resize(count());
|
|
|
|
size_t failed = world()->applyTileModifications(modifications, false).size();
|
|
|
|
if (failed < modifications.size()) {
|
|
|
|
fail = false;
|
|
|
|
consume(modifications.size() - failed);
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
2023-07-31 06:00:19 +00:00
|
|
|
|
|
|
|
if (!fail)
|
|
|
|
FireableItem::fire(mode, shifting, edgeTriggered);
|
|
|
|
|
|
|
|
m_lastAimPosition = aimPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaterialItem::endFire(FireMode mode, bool shifting) {
|
|
|
|
m_lastAimPosition.reset();
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MaterialId MaterialItem::materialId() const {
|
|
|
|
return m_material;
|
|
|
|
}
|
|
|
|
|
|
|
|
MaterialHue MaterialItem::materialHueShift() const {
|
|
|
|
return m_materialHueShift;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MaterialItem::canPlace(bool shifting) const {
|
|
|
|
if (initialized()) {
|
|
|
|
MaterialId material = materialId();
|
|
|
|
|
|
|
|
float radius;
|
|
|
|
if (!shifting)
|
|
|
|
radius = m_blockRadius;
|
|
|
|
else
|
|
|
|
radius = m_altBlockRadius;
|
|
|
|
|
|
|
|
if (!multiplaceEnabled())
|
|
|
|
radius = 1;
|
|
|
|
|
|
|
|
for (auto pos : tileAreaBrush(radius, owner()->aimPosition(), true)) {
|
|
|
|
MaterialHue hueShift = placementHueShift(pos);
|
|
|
|
if (world()->canModifyTile(pos, PlaceMaterial{TileLayer::Foreground, material, hueShift}, false)
|
|
|
|
|| world()->canModifyTile(pos, PlaceMaterial{TileLayer::Background, material, hueShift}, false))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MaterialItem::multiplaceEnabled() const {
|
|
|
|
return m_multiplace && count() > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<PreviewTile> MaterialItem::preview(bool shifting) const {
|
|
|
|
List<PreviewTile> result;
|
|
|
|
if (initialized()) {
|
|
|
|
Color lightColor = Color::rgba(owner()->favoriteColor());
|
|
|
|
Vec3B light = lightColor.toRgb();
|
|
|
|
|
|
|
|
auto material = materialId();
|
|
|
|
auto color = DefaultMaterialColorVariant;
|
|
|
|
|
|
|
|
float radius;
|
|
|
|
|
|
|
|
if (!shifting)
|
|
|
|
radius = m_blockRadius;
|
|
|
|
else
|
|
|
|
radius = m_altBlockRadius;
|
|
|
|
|
|
|
|
if (!multiplaceEnabled())
|
|
|
|
radius = 1;
|
|
|
|
|
|
|
|
size_t c = 0;
|
|
|
|
|
|
|
|
for (auto pos : tileAreaBrush(radius, owner()->aimPosition(), true)) {
|
|
|
|
MaterialHue hueShift = placementHueShift(pos);
|
|
|
|
if (c >= count())
|
|
|
|
break;
|
|
|
|
if (world()->canModifyTile(pos, PlaceMaterial{TileLayer::Foreground, material, hueShift}, false)) {
|
|
|
|
result.append({pos, true, material, hueShift, true});
|
|
|
|
c++;
|
|
|
|
} else if (twoHanded()
|
|
|
|
&& world()->canModifyTile(pos, PlaceMaterial{TileLayer::Background, material, hueShift}, false)) {
|
|
|
|
result.append({pos, true, material, hueShift, true, light, true, color});
|
|
|
|
c++;
|
|
|
|
} else {
|
|
|
|
result.append({pos, true, material, hueShift, true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
MaterialHue MaterialItem::placementHueShift(Vec2I const& pos) const {
|
|
|
|
if (auto hue = instanceValue("materialHueShift")) {
|
|
|
|
return materialHueFromDegrees(hue.toFloat());
|
|
|
|
} else if (auto worldClient = as<WorldClient>(world())) {
|
|
|
|
auto worldTemplate = worldClient->currentTemplate();
|
|
|
|
return worldTemplate->biomeMaterialHueShift(worldTemplate->blockBiomeIndex(pos[0], pos[1]), m_material);
|
|
|
|
} else {
|
|
|
|
return materialHueShift();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|