]> git.lizzy.rs Git - minetest.git/blobdiff - src/player.cpp
Add rotation for plantlike drawtype.
[minetest.git] / src / player.cpp
index 4dadf26d0b0e2eb2fc986f7830449d339c3a9d0a..40d403952bbbeac0b0c5822d8ef1803212dffc60 100644 (file)
@@ -100,6 +100,7 @@ Player::Player(IGameDef *gamedef):
 
 Player::~Player()
 {
+       clearHud();
 }
 
 // Horizontal acceleration (X and Z), Y direction is ignored
@@ -283,6 +284,54 @@ void Player::clearHud()
        }
 }
 
+
+void RemotePlayer::save(std::string savedir)
+{
+       /*
+        * We have to open all possible player files in the players directory
+        * and check their player names because some file systems are not
+        * case-sensitive and player names are case-sensitive.
+        */
+
+       // A player to deserialize files into to check their names
+       RemotePlayer testplayer(m_gamedef);
+
+       savedir += DIR_DELIM;
+       std::string path = savedir + m_name;
+       for (u32 i = 0; i < PLAYER_FILE_ALTERNATE_TRIES; i++) {
+               if (!fs::PathExists(path)) {
+                       // Open file and serialize
+                       std::ostringstream ss(std::ios_base::binary);
+                       serialize(ss);
+                       if (!fs::safeWriteToFile(path, ss.str())) {
+                               infostream << "Failed to write " << path << std::endl;
+                       }
+                       return;
+               }
+               // Open file and deserialize
+               std::ifstream is(path.c_str(), std::ios_base::binary);
+               if (!is.good()) {
+                       infostream << "Failed to open " << path << std::endl;
+                       return;
+               }
+               testplayer.deSerialize(is, path);
+               is.close();
+               if (strcmp(testplayer.getName(), m_name) == 0) {
+                       // Open file and serialize
+                       std::ostringstream ss(std::ios_base::binary);
+                       serialize(ss);
+                       if (!fs::safeWriteToFile(path, ss.str())) {
+                               infostream << "Failed to write " << path << std::endl;
+                       }
+                       return;
+               }
+               path = savedir + m_name + itos(i);
+       }
+
+       infostream << "Didn't find free file for player " << m_name << std::endl;
+       return;
+}
+
 /*
        RemotePlayer
 */
@@ -292,3 +341,4 @@ void RemotePlayer::setPosition(const v3f &position)
        if(m_sao)
                m_sao->setBasePosition(position);
 }
+