Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Education

Touring a Carnival Cruise Simulator: 210 Degrees of GeForce-Powered Projection 42

MojoKid writes Recently, Carnival cruise lines gave tours of their CSMART facility in Almere, the Netherlands. This facility is one of a handful in the world that can provide both extensive training and certification on cruise ships as well as a comprehensive simulation of what it's like to command one. Simulating the operation of a Carnival cruise ship is anything but simple. Let's start with a ship that's at least passingly familiar to most people — the RMS Titanic. At roughly 46,000 tons and 882 feet long, she was, briefly, the largest vessel afloat. Compared to a modern cruise ship, however, Titanic was a pipsqueak. As the size and complexity of the ships has grown, the need for complete simulators has grown as well. The C-SMART facility currently sports two full bridge simulators, several partial bridges, and multiple engineering rooms. When the Costa Concordia wrecked off the coast of Italy several years ago, the C-SMART facility was used to simulate the wreck based on the black boxes from the ship itself. When C-SMART moves to its new facilities, it'll pick up an enormous improvement in processing power. The next-gen visual system is going to be powered by104 GeForce Grid systems running banks of GTX 980 GPUs. C-SMART executives claim it will actually substantially reduce their total power consumption thanks to the improved Maxwell GPU. Which solution is currently in place was unclear, but the total number of installed systems is dropping from just over 500 to 100 rackmounted units.

Comment Re:Common Sense Prevails (Score 1) 62

The frivolity and abuse was statement was only about the size of the monetary damages, not about the claim that it was defamation. So even removing the "flirts with" qualifier, it's still not a good overall ruling. The summary of this post completely misstates the ruling, which was primarily dismissed because the alleged defamation was not against the plaintiff, but was against the company he represents, and so the suit was brought by the wrong entity.

Comment IANAL but that doesn't seem to be what it says (Score 4, Insightful) 62

The main cause for dismissal of this wasn't that online reviews are not defamation. It was because the lawsuit was brought by the wrong entity (the lawyer who represents the website, rather than the corporation who owns the website) and that he failed to provide substantive proof of any monetary loss.

If it were brought by the right entity and there was proof of loss, it may not have gone the same way. The judge specifically said that the review did have defamatory language in it.

Networking

Ubisoft DRM Causing More Problems 279

Joe Helfrich writes "Ubisoft's Settlers 7 servers have been causing problems for over a week for users worldwide, and Australian gamers are hardly able to connect at all. 'The problem reportedly strikes after the game has already confirmed an active Internet connection, and prevents the user from playing even the single-player campaign, returning the error "server not available." But they are available, because other people are logged into them and merrily playing away.' Wonder how they're going to describe this one as an attack."

Comment Re:2^13? (Score 4, Interesting) 175

The PDF was an interesting read, though I agree that the money they are dishing out is pretty paltry for all the free review they are trying to garner. Furthermore, I think they are taking platform neutrality in the wrong direction by locking the idea in to the x86 architecture.

But about how it would work, they are basically enforcing strict limits on how the code can be structured. The limits are designed to make the code easily analyzed. Anything that falls outside the strict requirements is rejected. It doesn't work for antivirus because they have to deal with any code that comes in without restriction.

As to why it doesn't work for OS... There is no reason the basic concept wouldn't, aside from the performance penalty and increased code size. (Though further compiler optimization could minimize or eliminate some of that).

However, if you want to go that route of making an OS do it, you might as well pick up a decent modern RISC architecture, because you're already breaking compatibility with any past program for any OS on the x86 CPU. Most of what they are doing is basically taking something that is standard on RISC and shoehorning it into the CISC architecture of the x86. Namely that instruction boundries can be reliably tested for jumps. They enforce that by requiring jumps only to 32 byte boundries, and then verifying each 32 byte block for correctness. Combined with disallowing self modifying code and eliminating the stack completely, all code that executes can be properly analyzed ahead of time.

The concept looks sound to me (Experience working low level with x86 architecture) but the security still relies on the implementation. Off the top of my head I can think of several ways to break the sandbox depending on how it is implemented. However the PDF is quite short on the details to evaluate the implementation. Namely, what exactly qualifies as an allowed x86 instruction, and for the syscalls that are checked, what the check is, not to mention the potential for bugs in the syscall handler for what would otherwise be valid calls, and even potentially the state of the OS or process when the protected code is executed.

Overall, I don't think this is the right direction for the web platform. Theoretically interpreted byte code should be more secure because it doesn't do anything that the interpreter doesn't explicitly allow (Javascript, Java, Flash, etc) and we see where that got us.

Don't Count Sony Out Yet 172

Eurogamer is hosting a GamesIndustry.biz article, an editorial that wants readers to make sure not to write Sony off yet. From the article: "Even if Sony is failing to endear itself to the media, to analysts or to gamers at the moment, that's no reason for the reality of the next generation console battle to be ignored. Judging from reports in the past fortnight, it would be easy for an outside observer to assume that it's all over already; the media paints a picture of Microsoft being victorious before the first shot is even fired, with Sony's overloaded battlecruiser set to sink before it even leaves port."

Don't Go Down Memory Lane? 316

fieldsofclover writes "Gamers With Jobs is running a piece today about the darker side of gaming nostalgia. From the article: 'Here's an example. Konami's Castlevania had interesting monsters, catchy music, and a great gimmick: a guy with a whip. But if you went back and played it today, chances are you wouldn't bother playing past the second level. Why are the newest games in the series so drastically different from the original? The answer is because gamers demand more from their hobby now, and there's just not a lot of meat on those old bones. But when the fully 3D, story-driven sequel fails, they point at the original on its lofty pedestal and demand an experience that lives up to their memories. It's a double standard that's next to impossible to satisfy.' Are we shooting ourselves in the foot by staying obsessed with the old classics?"

Spore Coming to Consoles? 61

Wowzer writes "EA was previously planning to bring Spore from PC to handhelds. In an interview this week Spore creator Will Wright was quoted as saying they are looking at bringing Spore to all platforms. From the article: 'You might be playing part of the game on a handheld platform, you might be playing the entire game but maybe more avatar-based on a console. The consoles are getting kind of different now, I think there's a really interesting distinction between the Wii and the Xbox 360 and PS3. Something like the Wii offers a lot of interesting creative opportunities for the editors, with the controller.'"

Slashdot Top Deals

Genetics explains why you look like your father, and if you don't, why you should.

Working...