New P2P technology

Started by
12 comments, last by Gagyi 17 years, 1 month ago
For those who believe P2P will work for virtual worlds, here's a new company that agrees with you: Outback Online
enum Bool { True, False, FileNotFound };
Advertisement

The problem I saw on Second Life (and will be the same with Outback Online) is that large amounts of content has to be pumped to the users and lags too much. That contents volume is supposedly getting larger as fast as the avarage customers bandwidth is increasing (meaning it will continue to be laggy).

Another possibly more significant problem is that Second Life in my opinion is still little more than a pretty chat room. The players interactions with scenery objects is still primitive/limited. Creation of good interactive content is the realm of experienced scripters and will require significant sets of tools to allow even a fraction of players to create the needed assets. Likewise easy modification/reuse of 'expert' created assets requires idiot-proof 'easy to use' tools which are a tall order for even the best game companies.

Distributing the server will increase the available resources (for asset distribution) as well as CPU power for behavior of interactive objects (long term AI will dwarf other CPU uses..).
I dont doubt that security and reliability issues can be solved.
--------------------------------------------[size="1"]Ratings are Opinion, not Fact
I don't know if the scripters' skill requirements are a fundamental problem for Second Life, since it has a large economy based on the concept that it is difficult to create a good object, so you should purchase very good ones from other people. The dedicated creators learn to create; the hobbyists buy what they need from the dedicated; hence, the dedicated creators are encouraged to keep creating.
Quote:I dont doubt that security and reliability issues can be solved.


I admire your optimism! Research so far hasn't actually gotten very far on trust in P2P situations without some separate central authority somewhere.

Quote:it is difficult to create a good object


The reason economies let this work in places like Second Life and There, is that those economies enforce IP rights, through centralizing commerce. How would you protect against other people stealing your object in a P2P setting?
enum Bool { True, False, FileNotFound };
Quote:Original post by wodinoneeye
The problem I saw on Second Life (and will be the same with Outback Online) is that large amounts of content has to be pumped to the users and lags too much.

It doesn't follow that the same problem exists with Outback Online. The fact that OO is designed to avoid these problems strongly implies they might not (at least, not to the same degree).

The first point is that the P2P nature of OO means that the most popular content will be mirrored on many clients, potentially including some nearby clients.

The second point is that if, as seems sensible, OO won't force all users into the same virtual world, users can pick worlds with a content-richness-level which suits them.
Quote:
Another possibly more significant problem is that Second Life in my opinion is still little more than a pretty chat room.

This sounds more like your problem than Outback Online's.
Quote:Original post by hplus0603
Quote:I dont doubt that security and reliability issues can be solved.

I admire your optimism! Research so far hasn't actually gotten very far on trust in P2P situations without some separate central authority somewhere.

By 'trust', do you mean ensuring that the content served up by a host hasn't been tampered with?

Surely this can be ensured by having the content creator sign their content. You could ask the creator's host for a secure hash of a particular item of content and then get that content via the P2P network, safe in the knowledge that if the hash matches, the content is valid. To reduce load on the creator's host even further, you could just ask for a public key and have the creator sign all their content with that.

This kind of authentication isn't generally possible in traditional P2P networks because the original sources of files on P2P networks generally don't want to be verified as the original source, for obvious reasons.
Quote:
Quote:it is difficult to create a good object

The reason economies let this work in places like Second Life and There, is that those economies enforce IP rights, through centralizing commerce. How would you protect against other people stealing your object in a P2P setting?

I think you're making unwarranted assumptions.

People 'stealing' your object could only be a problem if the entirety of what made an object would be replicated throughout the network. That might happen for some objects, but if you want to keep control of your objects, you would only allow its visual appearance to be replicated, keeping the code behind it on your own host.

Granted this means the visual appearance can be copied by anyone who can see your object, but that's no different to Second Life.

Details are currently sketchy, of course, but I would guess that Outback Online replicates models and textures and some code. This is rather like how the web makes it possible for anyone who can access the site to copy the layout, images and &#106avascript of GameDev.Net, but not the server-side ASP code. Having that replicated in other client nodes is little different from accessing the web via layers of proxy.
Quote:Original post by Nathan Baum
People 'stealing' your object could only be a problem if the entirety of what made an object would be replicated throughout the network. That might happen for some objects, but if you want to keep control of your objects, you would only allow its visual appearance to be replicated, keeping the code behind it on your own host.

Granted this means the visual appearance can be copied by anyone who can see your object, but that's no different to Second Life.

Details are currently sketchy, of course, but I would guess that Outback Online replicates models and textures and some code. This is rather like how the web makes it possible for anyone who can access the site to copy the layout, images and &#106avascript of GameDev.Net, but not the server-side ASP code. Having that replicated in other client nodes is little different from accessing the web via layers of proxy.<!--QUOTE--></td></tr></table></BLOCKQUOTE><!--/QUOTE--><!--ENDQUOTE--><br>But if theres no central server, wouldn't that require that the creator remained logged in all the time, otherwise the item would stop working? That doesn't sound very practical.
Quote:Original post by OrangyTang
Quote:Original post by Nathan Baum
People 'stealing' your object could only be a problem if the entirety of what made an object would be replicated throughout the network. That might happen for some objects, but if you want to keep control of your objects, you would only allow its visual appearance to be replicated, keeping the code behind it on your own host.

Granted this means the visual appearance can be copied by anyone who can see your object, but that's no different to Second Life.

Details are currently sketchy, of course, but I would guess that Outback Online replicates models and textures and some code. This is rather like how the web makes it possible for anyone who can access the site to copy the layout, images and &#106avascript of GameDev.Net, but not the server-side ASP code. Having that replicated in other client nodes is little different from accessing the web via layers of proxy.

But if theres no central server, wouldn't that require that the creator remained logged in all the time, otherwise the item would stop working? That doesn't sound very practical.

Well, there are two options: either you keep your code to yourself, or you don't. If you keep your code to yourself, then your host must be connected to the network for others to use it. That's unavoidable.

However, there isn't a simple black-and-white "keep your code" or "give your code to everyone" choice. The advantage of a P2P solution is that centralised servers are not required, but that doesn't mean that they are prohibited.

Rather than creating objects on your own host, which might go offline from time-to-time, you might create them on a third-party host. This wouldn't be a single centralised repository for all objects like with Second Life, but one of many repositories which provide hosting for those who can't host their own coded objects (some might be commercial, there would certainly be free ones). For the purposes of authentication, that repository would serve as the author of the content it serves.
Quote:Granted this means the visual appearance can be copied by anyone who can see your object, but that's no different to Second Life.


Actually, it is different, because the same system that grants access to the content, can have an audit trail of the content, and a system of enforcement.

When I say trust in P2P is intractable without a centralized server, it doesn't so much have to do with trusting an origin (although that, too, needs a centralized server or root of authenticity to clear the certificates); it has to do with making decisions and transactions that you can trust in an economic sense.

If my avatar came into your world, and claimed to have 3,530,200 your-world-dollars, how do you know that that's a true claim?
enum Bool { True, False, FileNotFound };
Quote:Original post by hplus0603
Quote:Granted this means the visual appearance can be copied by anyone who can see your object, but that's no different to Second Life.

Actually, it is different, because the same system that grants access to the content, can have an audit trail of the content, and a system of enforcement.

How would the server enforce copying restrictions on the client? I can imagine one might use watermarks to detect copied content, but I'm not aware of effective watermarking schemes for meshes, plain text or source code. How would an audit trail help?

Also, Second Life doesn't (last time I checked) actually have automated mechanisms for detecting copied content. For example, images are not watermarked. This would be fairly trivial, and would allow the server to detect at least some copied content.

Of course, nothing in principle prevents SL users from watermarking their textures themselves, and setting up bots to wander around looking at textures to check for unauthorised copies. That's not really a system of enforcement, though, but rather a system of detection of infringement.

If I'm reading Linden Lab's opinions correctly, I think they'd be opposed to automated enforcement anyway. Rather than treating copybots as a security hole to be fixed, they instead explicitly note that not all forms of copying are not copyright infringement, and state that it is up to the content owner to respond to infringements.
Quote:
When I say trust in P2P is intractable without a centralized server, it doesn't so much have to do with trusting an origin (although that, too, needs a centralized server or root of authenticity to clear the certificates);

No it doesn't. A centralised server is useful if you need to know if you can trust a host with sensitive data, but it isn't at all needed if you need to know if data you've received from a third party really originates from the host it purports to: you just need to connect to the host and ask for a key to check the data against.
Quote:
it has to do with making decisions and transactions that you can trust in an economic sense.

If my avatar came into your world, and claimed to have 3,530,200 your-world-dollars, how do you know that that's a true claim?

Well, if it was my world, I'd know, because I'd have recorded how many my-world-dollars your avatar has in my database. That's assuming my world even has an economy.

I think what you're really getting at here is that if you want a unified currency across all worlds, you need a centralised bank. As before, P2P solutions don't require centralised services, but they don't prohibit them either. Of course, you don't have to have one centralised bank: there may be many.

Indeed, if my world does have a well-thought-out in-game economy, I probably don't want other worlds to be able to mess that up by printing silly money. For a strictly RP world, I'd want to run my own bank.
Quote:Original post by Ozymandias43
I don't know if the scripters' skill requirements are a fundamental problem for Second Life, since it has a large economy based on the concept that it is difficult to create a good object, so you should purchase very good ones from other people. The dedicated creators learn to create; the hobbyists buy what they need from the dedicated; hence, the dedicated creators are encouraged to keep creating.



Most objects are static. Even the ones that are interactive are quite simple (and the majority seem to be gambling machines).

Once you have seen something there is little more to do with it.

Im talking about far more complex/intricate objects -- the equivalent of NPCs/pets which have behaviors, etc...



--------------------------------------------[size="1"]Ratings are Opinion, not Fact

This topic is closed to new replies.

Advertisement