Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Explain this to a non-Americal please.. (Score 2) 182

There is something I don't understand here..
During all Obama's presidency, did Republicans manage to keep being the ruling party somehow? because it seems even with a Democrat president Obama can't pass any law without going through them.
Or is all this democrat/republican thing just theater and Obama pretends to be the good guy failing to fight to the bad guys?
Or something else going on?

Submission + - Lost Beagle2 probe found 'intact' on Mars (bbc.co.uk)

Stolga writes: The missing Mars robot Beagle2 has been found on the surface of the Red Planet, apparently intact.

High-resolution images taken from orbit have identified its landing location, and it looks to be in one piece.

The UK-led probe tried to make a soft touchdown on the dusty world on Christmas Day, 2003, using parachutes and airbags — but no radio contact was ever made with the probe.

Many scientists assumed it had been destroyed in a high-velocity impact.

Comment Re:Script sharing with non-Godot programs (Score 1) 54

I understand, but this is not a common case scenario, and more like a rare situation.
It is also not a problem exclusive to GDScript, and might still happen with C#, C++ and other languages.
So, given in far most cases the situation you describe does not apply, using a custom language in this case seems more like "using the best tool for the job " principle.

Comment Re:Torque MIT Licensed and More "advanced" (Score 1) 54

I had the "pleasure" to port Torque3D to PSP, so I know it inside out. Torque is (sorry for the strong words) a pile of shit, it has always been a pile of shit and it will always be it.
It was opensourced because it failed as commercial offering, developers did not want to use it back then and that fact will not change even if you offer them money.

Comment Re:Yawn (Score 1) 54

Except the above mentioned have several problems:
-They are dog slow because every indexing is a lookup in a hash table.
-They don't have proper multi-thread support (with ability to share context between threads), this is essential for videogames. They either not support it or have a global lock.
-They do not support vector types natively (Vector2,Vector3,Matrix2,Matrix3,Matrix4,etc) which are also essential to video games (and binding as usretype is really slow)
-Have terrible means of GC, which are also not designed for video games. GCs usually "stop the world" to work, and when they are run incrementally they can leak memory without the user noticing. Even Unity has problems with this with C#.


Why is it so difficult to understand that Godot has created a custom script language to avoid the problems mentioned above, because the "existing languages" everyone suggests are not designed for videogames and real-time?
Is it so important to use an existing language, even at the cost of poorer performance and worse integration?. GDScript also tries to be as similar as possible to Python, to ease the transition.

Submission + - Godot Engine Reaches 1.0, Releases First Stable (godotengine.org)

goruka writes: Godot, the most advanced open source (MIT licensed) game engine, that was open-sourced back in February, has reached 1.0 (stable).
It sports an impressive amount of features, and it's the only game engine with visual tools (code editor, scripting, debugger, 3D engine, 2D engine, physics, multi-platform deploy, etc) on a scale comparable to commercial offerings. As a plus, the user interface runs natively on Linux. Godot has amassed a healthy user community (through forum, Facebook and IRC) since it went public, and was used to publish commercial games in the Latin American and European markets such as "Ultimo Carnaval" with publisher Square Enix, or "The Mystery Team" by Sony Computer Entertainment Europe.

Comment Apple will help spread acceptance. (Score 1) 764

MP3 players, Smartphones, etc. Apple did not invent them but succeeded into making that technology widespread, convincing people that it was harmless and that they could interact with them, until it became part of their regular lives. Let's hope this announcement helps do the same with relationships of the same gender.

Comment Re:Solution: Drop H1B and make immigration easier (Score 1) 284

Exactly, but it's not workers who determine what an acceptable market wage is but companies. Otherwise if there were only 5 capable guys in X field in the US, and 20 outside, you could also argue that there is no shortage either with the same argument because they really are worth as much.

This is why I say, there IS a shortage, the problem is that some people does not want to stop being paid high wages.

Comment Solution: Drop H1B and make immigration easier (Score 1) 284

The shortage of skilled workers in IT is a real problem, this leads to wages being high for those with ample experience in the field.
The fact that companies can't get a hold of them due to elevated cost of the hire, makes them resort to H1B. Foreign workers, in turn, will gladly work for a low payment in exchange of a better standard of living. This is wrong.
Just allow skilled foreigners to immigrate normally, and don't give control over their stay to companies. This way everyone will play on an even field and the whole industry benefits.

Comment Re:Pulseaudio is a synthom, It's not to blame. (Score 1) 286

If you ask me, I think this should be handled in-kernel for may reasons:
1) You need a process running SCHED_FIFO all for sound otherwise. This is OK but you are still at the mercy of the scheduler when you poll.
2) Letting this happen in userspace resulted in several competing APIs and no standard over more than a decade. While for toolkits this is not serious, for audio this is, because the competing APIs require exclusive access to a resource.
3) Resampling, at the best quality and even in a real-time audio process is extremely cheap, and you only need to do it for a single stream.

Which is what my OP is about, what you suggest we've been there, done that and failed. This is simple functionality that should be handled in kernel with a simple API presented to userspace.

Slashdot Top Deals

1 + 1 = 3, for large values of 1.

Working...