Jump to content

Simulate player walking


DeadPix

Recommended Posts

As soon as I figure out the problem I suggested in the other post, I will face another problem - how to make the player move?

 

I imagine there is a singleton object that represents player, which will allow me to interact with it. Am I right? How do I get my hands on the object?

 

Once I get my hands on the object, I also imagine there are methods to allow me to teleport player instantly to given coordinates. But that's not what I would like to do that. I would like the player to actually move to the position. For the start, let's consider only flat platform the player will be moving on. In the future, I suppose I will teach the bot that controls the player to overcome some obstacles.

 

 

Maybe I should have started with different question. Is it possible to write a bot that will "take over" control over player (the one from which perspective I am looking) and make him do something? If positive, how to do some basic stuff like moving the player?

 

Thanks in advance for any help provided.

Link to comment
Share on other sites

As soon as I figure out the problem I suggested in the other post, I will face another problem - how to make the player move?

 

I imagine there is a singleton object that represents player, which will allow me to interact with it. Am I right? How do I get my hands on the object?

 

Once I get my hands on the object, I also imagine there are methods to allow me to teleport player instantly to given coordinates. But that's not what I would like to do that. I would like the player to actually move to the position. For the start, let's consider only flat platform the player will be moving on. In the future, I suppose I will teach the bot that controls the player to overcome some obstacles.

 

 

Maybe I should have started with different question. Is it possible to write a bot that will "take over" control over player (the one from which perspective I am looking) and make him do something? If positive, how to do some basic stuff like moving the player?

 

Thanks in advance for any help provided.

Link to comment
Share on other sites

The singleotn you are talking about is Minecraft#thePlayer.

 

Your player (you) is controlled by ClientPlayerController (not sure naming).

 

To understand how the process works you can lookup how Minecraft handles input movement keys and sends those moves to server va packets.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

The singleotn you are talking about is Minecraft#thePlayer.

 

Your player (you) is controlled by ClientPlayerController (not sure naming).

 

To understand how the process works you can lookup how Minecraft handles input movement keys and sends those moves to server va packets.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

OrangeVillager91, Ernio:

Thank you, I appreciate your replies.

 

I already resolved problem I was referring to in the first post in this thread, and now I intend to do the same with the current one. I did a thorough google search for the topic of ClientPlayerController but no luck so far.

 

I studied a bit more the game mechanics (still lot to catch up though) and find out that there is always client/server relationship. But I also noticed that people talk A LOT about 'their GUI'. I understand meaning of the word, but I fail the grasp the concept in the context of it.

 

Let's assume I want my mod to take control over player and move him one block ahead, move not teleport. What is the approach? Is it something like this?

  • I tell the (local - I consider having the mod operational only for single player, for now) server I move my player block ahead (How will I do that? Where should I look for functions that can do that? More specifically please :-) )
  • I tell GUI that I moved the player? (if positive, how do I even access the GUI and tell it to do such a thing)

 

Or - there is no need to notify GUI about the change, minecraft will do that on its own?

 

One more thing that crossed my mind is that people talking about GUI are actually talking about their HUD part of the UI that player sees and update that GUI?

 

Thanks in advance for your further assistance.

Link to comment
Share on other sites

OrangeVillager91, Ernio:

Thank you, I appreciate your replies.

 

I already resolved problem I was referring to in the first post in this thread, and now I intend to do the same with the current one. I did a thorough google search for the topic of ClientPlayerController but no luck so far.

 

I studied a bit more the game mechanics (still lot to catch up though) and find out that there is always client/server relationship. But I also noticed that people talk A LOT about 'their GUI'. I understand meaning of the word, but I fail the grasp the concept in the context of it.

 

Let's assume I want my mod to take control over player and move him one block ahead, move not teleport. What is the approach? Is it something like this?

  • I tell the (local - I consider having the mod operational only for single player, for now) server I move my player block ahead (How will I do that? Where should I look for functions that can do that? More specifically please :-) )
  • I tell GUI that I moved the player? (if positive, how do I even access the GUI and tell it to do such a thing)

 

Or - there is no need to notify GUI about the change, minecraft will do that on its own?

 

One more thing that crossed my mind is that people talking about GUI are actually talking about their HUD part of the UI that player sees and update that GUI?

 

Thanks in advance for your further assistance.

Link to comment
Share on other sites

1. GUI = Graphical user interface, in this case (MC) it rather means HUD. SO when talking about GUI we are (99% times) talk about what is rendered FLAT on TOP of screen.

 

2. "google search for the topic of ClientPlayerController but no luck so far" - I told you, name may be different. Regarding what is responsible for controlling players:

* PlayerControllerMP (actions)

* NetHandlerPlayClient (sending/receiving packets)

* MovementInput sub-class (values of client input actions, such as if you are moving forward)

* EntityPlayerSP (all packeting, e.g: look at : onUpdateWalkingPlayer()).

 

Some stuff: http://mcforge.readthedocs.org/en/latest/concepts/sides/

 

And finally - learn to use your IDE. As of 1.9+ MC source is so RIDICULOUSLY beutiful! Just sid and read, look for "move" and "input" keywords, callbacks, hierarchy. Everything is there under very nice names.

 

Aditional note; there is difference between moving player and making a path for him, for sevond one you need to lookup pathfinding algorithms - e.g Zombies. Note that pathes should not be further than 32, or it will start to get heavy on performance (for longer distance you can use multiple checkpoints).

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

1. GUI = Graphical user interface, in this case (MC) it rather means HUD. SO when talking about GUI we are (99% times) talk about what is rendered FLAT on TOP of screen.

 

2. "google search for the topic of ClientPlayerController but no luck so far" - I told you, name may be different. Regarding what is responsible for controlling players:

* PlayerControllerMP (actions)

* NetHandlerPlayClient (sending/receiving packets)

* MovementInput sub-class (values of client input actions, such as if you are moving forward)

* EntityPlayerSP (all packeting, e.g: look at : onUpdateWalkingPlayer()).

 

Some stuff: http://mcforge.readthedocs.org/en/latest/concepts/sides/

 

And finally - learn to use your IDE. As of 1.9+ MC source is so RIDICULOUSLY beutiful! Just sid and read, look for "move" and "input" keywords, callbacks, hierarchy. Everything is there under very nice names.

 

Aditional note; there is difference between moving player and making a path for him, for sevond one you need to lookup pathfinding algorithms - e.g Zombies. Note that pathes should not be further than 32, or it will start to get heavy on performance (for longer distance you can use multiple checkpoints).

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • i notice a change if i add the min and max ram in the line like this for example:    # Xmx and Xms set the maximum and minimum RAM usage, respectively. # They can take any number, followed by an M or a G. # M means Megabyte, G means Gigabyte. # For example, to set the maximum to 3GB: -Xmx3G # To set the minimum to 2.5GB: -Xms2500M # A good default for a modded server is 4GB. # Uncomment the next line to set it. -Xmx10240M -Xms8192M    i need to make more experiments but for now this apparently works.
    • Selamat datang di OLXTOTO, situs slot gacor terpanas yang sedang booming di industri perjudian online. Jika Anda mencari pengalaman bermain yang luar biasa, maka OLXTOTO adalah tempat yang tepat untuk Anda. Dapatkan sensasi tidak biasa dengan variasi slot online terlengkap dan peluang memenangkan jackpot slot maxwin yang sering. Di sini, Anda akan merasakan keseruan yang luar biasa dalam bermain judi slot. DAFTAR OLXTOTO DISINI LOGIN OLXTOTO DISINI AKUN PRO OLXTOTO DISINI   Slot Gacor untuk Sensasi Bermain Maksimal Olahraga cepat dan seru dengan slot gacor di OLXTOTO. Rasakan sensasi bermain maksimal dengan mesin slot yang memberikan kemenangan beruntun. Temukan keberuntungan Anda di antara berbagai pilihan slot gacor yang tersedia dan rasakan kegembiraan bermain judi slot yang tak terlupakan. Situs Slot Terpercaya dengan Pilihan Terlengkap OLXTOTO adalah situs slot terpercaya yang menawarkan pilihan terlengkap dalam perjudian online. Nikmati berbagai genre dan tema slot online yang menarik, dari slot klasik hingga slot video yang inovatif. Dipercaya oleh jutaan pemain, OLXTOTO memberikan pengalaman bermain yang aman dan terjamin.   Jackpot Slot Maxwin Sering Untuk Peluang Besar Di OLXTOTO, kami tidak hanya memberikan hadiah slot biasa, tapi juga memberikan kesempatan kepada pemain untuk memenangkan jackpot slot maxwin yang sering. Dengan demikian, Anda dapat meraih keberuntungan besar dan memenangkan ribuan rupiah sebagai hadiah jackpot slot maxwin kami. Jackpot slot maxwin merupakan peluang besar bagi para pemain judi slot untuk meraih keuntungan yang lebih besar. Dalam permainan kami, Anda tidak harus terpaku pada kemenangan biasa saja. Kami hadir dengan jackpot slot maxwin yang sering, sehingga Anda memiliki peluang yang lebih besar untuk meraih kemenangan besar dengan hadiah yang menggiurkan. Dalam permainan judi slot, pengalaman bermain bukan hanya tentang keseruan dan hiburan semata. Kami memahami bahwa para pemain juga menginginkan kesempatan untuk meraih keberuntungan besar. Oleh karena itu, OLXTOTO hadir dengan jackpot slot maxwin yang sering untuk memberikan peluang besar kepada para pemain kami. Peluang Besar Menang Jackpot Slot Maxwin Peluang menang jackpot slot maxwin di OLXTOTO sangatlah besar. Anda tidak perlu khawatir tentang batasan atau pembatasan dalam meraih jackpot tersebut. Kami ingin memberikan kesempatan kepada semua pemain kami untuk merasakan sensasi menang dalam jumlah yang luar biasa. Jackpot slot maxwin kami dibuka untuk semua pemain judi slot di OLXTOTO. Anda memiliki peluang yang sama dengan pemain lainnya untuk memenangkan hadiah jackpot yang besar. Kami percaya bahwa semua orang memiliki kesempatan untuk meraih keberuntungan besar, dan itulah mengapa kami menyediakan jackpot slot maxwin yang sering untuk memenuhi harapan dan keinginan Anda.  
    • LOGIN DAN DAFTAR DISINI SEKARANG !!!! Blacktogel adalah situs judi slot online yang menjadi pilihan banyak penggemar judi slot gacor di Indonesia. Dengan platform yang sangat user-friendly dan berbagai macam permainan slot yang tersedia, Blacktogel menjadi tempat yang tepat untuk penggemar judi slot online. Dalam artikel ini, kami akan membahas tentang Blacktogel dan keunggulan situs slot gacor online yang disediakan.  
    • Situs bandar slot online Gacor dengan bonus terbesar saat ini sedang menjadi sorotan para pemain judi online. Dengan persaingan yang semakin ketat dalam industri perjudian online, pemain mencari situs yang tidak hanya menawarkan permainan slot yang gacor (sering memberikan kemenangan), tetapi juga bonus terbesar yang bisa meningkatkan peluang menang. Daftar disini : https://gesit.io/googlegopek
    • Situs bandar slot online Gacor dengan bonus terbesar saat ini sedang menjadi sorotan para pemain judi online. Dengan persaingan yang semakin ketat dalam industri perjudian online, pemain mencari situs yang tidak hanya menawarkan permainan slot yang gacor (sering memberikan kemenangan), tetapi juga bonus terbesar yang bisa meningkatkan peluang menang. Daftar disini : https://gesit.io/googlegopek
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.