Itutorial
Legendary OT User
- Joined
- Dec 23, 2014
- Messages
- 2,394
- Solutions
- 68
- Reaction score
- 1,065
It is not ready for production. It is missing a few critical things. I will come back to it at some point in the future when I have more time on my hands.
This is my fix for my previous thread. Hopefully they will remove the old one.
This system is critical for any server that has systems like: dungeons, CTF, ect... This is an istance system that works exactly like WoW. I hope it gets put into TFS master branch because it is very useful.
Instead of having to make copies of a map 50x you can use this code to EASILY put players in different instances on the same map.
creature.h
under
add
under
add
monster.cpp
find
add inside the method at the top
game.h
under
add
under
add
game.cpp
under whole method
add
player.cpp
find
at bottom of method add
luascript.h
under
add
under
add
under
add
luascript.cpp
under
add
under
add
under
add
under method
add
Those last functions should be moved to the correct place to keep it clean. You don't need to though. You can easily change creatures instances at anytime, anywhere. Hope someone enjoys.
This is my fix for my previous thread. Hopefully they will remove the old one.
This system is critical for any server that has systems like: dungeons, CTF, ect... This is an istance system that works exactly like WoW. I hope it gets put into TFS master branch because it is very useful.
Instead of having to make copies of a map 50x you can use this code to EASILY put players in different instances on the same map.
Code:
creature:getInstance()
creature:changeInstance(instanceId)
Game.createInstanceNpc(name, pos, instanceid[, extended = false[, force = false]])
Game.createInstanceMonster(name, pos, instanceid[, extended = false[, force = false]])
creature.h
under
C++:
void decrementReferenceCounter() {
C++:
void setInstanceID(uint32_t id) {
instanceId = id;
}
uint32_t getInstanceID() const {
return instanceId;
}
under
C++:
uint8_t drunkenness = 0;
C++:
uint32_t instanceId = 1;
monster.cpp
find
C++:
bool Monster::isOpponent(const Creature* creature) const
C++:
if (const Player* player = creature->getPlayer()) {
if (getInstanceID() != player->getInstanceID()) {
return false;
}
}
game.h
under
C++:
bool placeCreature(Creature* creature, const Position& pos, bool extendedPos = false, bool forced = false);
C++:
bool placeInstanceCreature(Creature* creature, const Position& pos, uint32_t instanceId = 0, bool extendedPos = false, bool forced = false);
under
C++:
static void removeCreatureCheck(Creature* creature);
C++:
bool changeInstance(Creature* creature, uint32_t instanceID);
game.cpp
under whole method
C++:
bool Game::placeCreature(Creature* creature, const Position& pos, bool extendedPos /*=false*/, bool forced /*= false*/)
C++:
bool Game::placeInstanceCreature(Creature* creature, const Position& pos, uint32_t instanceId /*0*/, bool extendedPos /*=false*/, bool forced /*= false*/)
{
if (!internalPlaceCreature(creature, pos, extendedPos, forced)) {
return false;
}
creature->setInstanceID(instanceId);
SpectatorVec spectators;
map.getSpectators(spectators, creature->getPosition(), true);
for (Creature* spectator : spectators) {
if (Player* tmpPlayer = spectator->getPlayer()) {
if (tmpPlayer->canSeeCreature(creature)) {
tmpPlayer->sendCreatureAppear(creature, creature->getPosition(), true);
}
}
}
for (Creature* spectator : spectators) {
if (Player* tmpPlayer = spectator->getPlayer()) {
if (tmpPlayer->canSeeCreature(creature)) {
spectator->onCreatureAppear(creature, true);
}
}
}
creature->getParent()->postAddNotification(creature, nullptr, 0);
addCreatureCheck(creature);
creature->onPlacedCreature();
return true;
}
bool Game::changeInstance(Creature* creature, uint32_t instanceID) {
if (!creature || !instanceID) {
return false;
}
// Set creatures new instance ID
creature->setInstanceID(instanceID);
// We need to remove the creature from any players screens and remove players from the creatures sceen if the creature is a player.
SpectatorVec spectators;
map.getSpectators(spectators, creature->getPosition(), true, false);
Tile* tile = creature->getTile();
const Position& tilePosition = tile->getPosition();
for (Creature* spectator : spectators) {
if (Player* player = spectator->getPlayer()) { // Spectator is a player
if (spectator->getID() == creature->getID()) { // Spectator is the creature changing instance
//Remove creatures not in new instance
for (Creature* spectatorTwo : spectators) {
if (spectatorTwo->getInstanceID() != instanceID && spectatorTwo != spectator) { // Creature is not in same instance and isn't the player
player->sendRemoveTileCreature(spectatorTwo, tilePosition, tile->getClientIndexOfCreature(player, spectatorTwo));
}
}
} else { // Spectator is not the creature changing instance
// Remove the creature from their client.
player->sendRemoveTileCreature(creature, tilePosition, tile->getClientIndexOfCreature(player, creature));
}
}
}
// Populate creature on players screens in same instance
for (Creature* spectator : spectators) {
if (Player* player = spectator->getPlayer()) { // Spectator is a player
if (spectator->getID() == creature->getID()) { // Spectator is the player changing instance
// Populate his screen
for (Creature* spectatorTwo : spectators) {
if (spectator != spectatorTwo) { // Creature is not the player add check if they are in the new instance
if (spectatorTwo->getInstanceID() == instanceID) { // Creature is in the new instance add it to players client
player->sendCreatureAppear(spectatorTwo, spectatorTwo->getPosition(), true);
}
}
}
} else { // Spectator is not the creature changing instance add creature if he is in the instance
if (player->getInstanceID() == instanceID) { // Spectator is in the instance, lets add the creature to his client
player->sendCreatureAppear(creature, creature->getPosition(), true);
}
}
}
}
for (Creature* summon : creature->summons) {
changeInstance(summon, instanceID);
}
return true;
}
player.cpp
find
C++:
bool Player::canSeeCreature(const Creature* creature) const
C++:
if (creature->getInstanceID() != getInstanceID() || getInstanceID() != creature->getInstanceID()) {
return false;
}
luascript.h
under
C++:
static int luaGameCreateMonster(lua_State* L);
C++:
static int luaGameCreateInstanceMonster(lua_State* L);
C++:
static int luaGameCreateNpc(lua_State* L);
C++:
static int luaGameCreateInstanceNpc(lua_State* L);
C++:
static int luaCreatureCanSeeInvisibility(lua_State* L);
C++:
static int luaCreatureChangeInstance(lua_State* L);
static int luaCreatureGetInstance(lua_State* L);
luascript.cpp
under
C++:
registerMethod("Game", "createMonster", LuaScriptInterface::luaGameCreateMonster);
C++:
registerMethod("Game", "createInstanceMonster", LuaScriptInterface::luaGameCreateInstanceMonster);
C++:
registerMethod("Game", "createNpc", LuaScriptInterface::luaGameCreateNpc);
C++:
registerMethod("Game", "createInstanceNpc", LuaScriptInterface::luaGameCreateInstanceNpc);
under
C++:
registerMethod("Creature", "canSeeInvisibility", LuaScriptInterface::luaCreatureCanSeeInvisibility);
C++:
registerMethod("Creature", "changeInstance", LuaScriptInterface::luaCreatureChangeInstance);
registerMethod("Creature", "getInstance", LuaScriptInterface::luaCreatureGetInstance);
C++:
int LuaScriptInterface::luaGameCreateUniqueMonster(lua_State* L)
C++:
int LuaScriptInterface::luaGameCreateInstanceMonster(lua_State* L)
{
// Game.createInstanceMonster(monsterName, position[, instanceId[, extended = false[, force = false]]])
Monster* monster = Monster::createMonster(getString(L, 1));
if (!monster) {
lua_pushnil(L);
return 1;
}
const Position& position = getPosition(L, 2);
uint32_t instanceId = getNumber<uint32_t>(L, 3, 0);
bool extended = getBoolean(L, 4, false);
bool force = getBoolean(L, 5, false);
if (g_game.placeInstanceCreature(monster, position, instanceId, extended, force)) {
pushUserdata<Monster>(L, monster);
setMetatable(L, -1, "Npc");
}
else {
delete monster;
lua_pushnil(L);
}
return 1;
}
int LuaScriptInterface::luaGameCreateInstanceNpc(lua_State* L)
{
// Game.createInstanceNpc(npcName, position[, instanceId[, extended = false[, force = false]]])
Npc* npc = Npc::createNpc(getString(L, 1));
if (!npc) {
lua_pushnil(L);
return 1;
}
const Position& position = getPosition(L, 2);
uint32_t instanceId = getNumber<uint32_t>(L, 3, 0);
bool extended = getBoolean(L, 4, false);
bool force = getBoolean(L, 5, false);
if (g_game.placeInstanceCreature(npc, position, instanceId, extended, force)) {
pushUserdata<Npc>(L, npc);
setMetatable(L, -1, "Npc");
}
else {
delete npc;
lua_pushnil(L);
}
return 1;
}
int LuaScriptInterface::luaCreatureGetInstance(lua_State* L)
{
// creature:getInstance()
Creature* creature = getUserdata<Creature>(L, 1);
if (!creature) {
lua_pushnil(L);
return 1;
}
uint32_t instanceID = creature->getInstanceID();
lua_pushnumber(L, instanceID);
return 1;
}
int LuaScriptInterface::luaCreatureChangeInstance(lua_State* L)
{
// creature:changeInstance(id)
Creature* creature = getUserdata<Creature>(L, 1);
if (!creature) {
lua_pushnil(L);
return 1;
}
uint32_t instanceID = getNumber<uint32_t>(L, 2);
if (!instanceID) {
lua_pushnil(L);
}
if (!g_game.changeInstance(creature, instanceID)) {
lua_pushnil(L);
return 1;
}
lua_pushboolean(L, true);
return 1;
}
Those last functions should be moved to the correct place to keep it clean. You don't need to though. You can easily change creatures instances at anytime, anywhere. Hope someone enjoys.
Last edited by a moderator: