Short and simple: Yes, I’ve done it. As have many others (Toontown online, Pirates of the Carribean online, the list goes on and on and on)
Can you store textures, objects, and positions in a MYSQL database? yes.
Might just be better to have all the clients already have the pre-made objects, but you could do it that way too.
Can players communicate through the world? Yes. You get a sort of ‘blank slate’ with panda3d, you get to set up everything, and control everything. This also means that you can use your own python networking library (aka Sockets, or post/get with a web server, or Twisted networking library, or etc…)
It’s completely possible and completely practical. Will it be already done for you? No. You’ll have to build your own chat server, send chat messages to the server from the client, display them on the clients when they get a chat message, etc.
You’ll have to send player’s positions to every other player (How else would they know someone moved?)
How should you start? Build things in panda3d -offline- first. Build your virtual world single player, completely. After that you can worry about letting other players log in to your server and communicate and see other players.
I really want to stress what I just said above, so you get it in big nice bold text: build your game first
Many many people come onto the forums with your same idea (or something incredibly similar, my own FPS/game-type MMORPG) and they worry so much about how they’re going to do it that in the end they only have an idea on how to do it (aka ‘design plans’) though they have no code at all to do it.
I REALLY REALLY want to stress that if you want to build an MMO, build your small games first. Build a world with a character that you can walk around in and go through portals and do this and that and this and that.
After that you know how to build the client, then build a server that can handle it. But seriously, build the game first.
(Sorry if I sound paranoid or like I’m about to snap, just I know so many people who try to jump right into doing everything that they forget about the small little things that make the game what it is, and in the end they just give up and I never talk to them again
)
So, just to wrap it up: It can be done, and has been done. Will it require work? Yes. How should you start? Build the game un-networked first.
Hope this helps,
~powerpup118