Skip to content

Commit 2a12579

Browse files
committedNov 7, 2015
Add support for audio feedback if placing node failed
1 parent 578649b commit 2a12579

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed
 

‎doc/lua_api.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3241,6 +3241,7 @@ Definition tables
32413241
dig = <SimpleSoundSpec>, -- "__group" = group-based sound (default)
32423242
dug = <SimpleSoundSpec>,
32433243
place = <SimpleSoundSpec>,
3244+
place_failed = <SimpleSoundSpec>,
32443245
},
32453246
drop = "", -- Name of dropped node when dug. Default is the node itself.
32463247
-- Alternatively:

‎src/game.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -3682,8 +3682,12 @@ void Game::handlePointingAtNode(GameRunData *runData,
36823682
SimpleSoundSpec();
36833683

36843684
if (playeritem_def.node_placement_prediction == "" ||
3685-
nodedef_manager->get(map.getNodeNoEx(nodepos)).rightclickable)
3685+
nodedef_manager->get(map.getNodeNoEx(nodepos)).rightclickable) {
36863686
client->interact(3, pointed); // Report to server
3687+
} else {
3688+
soundmaker->m_player_rightpunch_sound =
3689+
playeritem_def.sound_place_failed;
3690+
}
36873691
}
36883692
}
36893693
}

‎src/itemdef.cpp

+9-3
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ ItemDefinition& ItemDefinition::operator=(const ItemDefinition &def)
8080
groups = def.groups;
8181
node_placement_prediction = def.node_placement_prediction;
8282
sound_place = def.sound_place;
83+
sound_place_failed = def.sound_place_failed;
8384
range = def.range;
8485
return *this;
8586
}
@@ -114,6 +115,7 @@ void ItemDefinition::reset()
114115
}
115116
groups.clear();
116117
sound_place = SimpleSoundSpec();
118+
sound_place_failed = SimpleSoundSpec();
117119
range = -1;
118120

119121
node_placement_prediction = "";
@@ -155,8 +157,10 @@ void ItemDefinition::serialize(std::ostream &os, u16 protocol_version) const
155157
os<<serializeString(sound_place.name);
156158
writeF1000(os, sound_place.gain);
157159
}
158-
if(protocol_version > 20){
160+
if (protocol_version > 20) {
159161
writeF1000(os, range);
162+
os << serializeString(sound_place_failed.name);
163+
writeF1000(os, sound_place_failed.gain);
160164
}
161165
}
162166

@@ -211,8 +215,10 @@ void ItemDefinition::deSerialize(std::istream &is)
211215
}
212216
// If you add anything here, insert it primarily inside the try-catch
213217
// block to not need to increase the version.
214-
try{
215-
}catch(SerializationError &e) {};
218+
try {
219+
sound_place_failed.name = deSerializeString(is);
220+
sound_place_failed.gain = readF1000(is);
221+
} catch(SerializationError &e) {};
216222
}
217223

218224
/*

‎src/itemdef.h

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ struct ItemDefinition
6868
ToolCapabilities *tool_capabilities;
6969
ItemGroupList groups;
7070
SimpleSoundSpec sound_place;
71+
SimpleSoundSpec sound_place_failed;
7172
f32 range;
7273

7374
// Client shall immediately place this node when player places the item.

‎src/script/common/c_content.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ ItemDefinition read_item_definition(lua_State* L,int index,
100100
lua_getfield(L, -1, "place");
101101
read_soundspec(L, -1, def.sound_place);
102102
lua_pop(L, 1);
103+
lua_getfield(L, -1, "place_failed");
104+
read_soundspec(L, -1, def.sound_place_failed);
105+
lua_pop(L, 1);
103106
}
104107
lua_pop(L, 1);
105108

0 commit comments

Comments
 (0)