Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - dagsverre

Pages: [1]
1
General Discussion / LOTR movie then
« on: 2001-12-19 20:35:00 »
Just back from the theatre....watched you-know-what...

There are spoilers in here. Things you don't want to read unless you have watched the movie. So go watch it and then read. And no, I'm not talking about spoilers as in "spoiling the plot", that would have been a joke... what I will do is discuss how I think the movie fared, and you should be able to watch it without prejudices. It's actually more of a spoiler if you've read it 50 times than if you have never read it...
Spoiler: show


I actually haven't fully decided whether I like it or not. Perhaps the doubt speaks for itself: It isn't perfect. However I think I will reach the conclusion that I liked it. I mean, for a film it is *really* good!, but as LOTR...well...

The negative things first.

My main problem with it is that it doesn't communicate the feeling of them being on a journey. It is simply rushed. We knew this of course, I mean it couldn't be any other way. I guess I had to experience it to fully believe it though.

Concrete things...well...Galadriel looks completely foolish when Frodo offers her the ring. The film is simply over-effectized on a lot of areas. They could really have spared themselves the massive blast when Sauron was defeated in the second age, it was unnecesarry and little tasteful. The computer-animated Legolas is horrible jumping down from the trolls back...

Personally I would have preferred more weight on the journey...the hiking if you will, and make Aragorn site some poems as in the books...and less weight on the forces of the ring, which is when it comes down to it less central in the book.

The action is of course over-focused as well. The action scenes is incredible, but there are something like six battles in the film, and it does become repetetive (first fight the Nazguls, then a troll, then a balrog, then a uruk-hai...they all get a game-boss feel really, reading the books I at least never dreamed of comparing an uruk-hai and an balrog)

On the other hand, if you ignore the ending (Titanic soundtrack? In LOTR? Aaargh...) then they avoided the Hollywood traps. My worst fear was that it turned out into something like Gladiator. In that respect I guess it kind of overachieved, it's (thankfully) nothing like Gladiator, I mean it's closer to art-films than Hollywood.

This is also a reason that I cannot see the mainstream Britney-digging, American Pie-loving crowd fall in love with this movie. From what I can judge, this film won't bring Tolkien any more mainstream than it was.

Many many people are going to come out disappointed over this movie, simply because it's different from all expectations (the ones I have come across at least). But, all in all, I enjoyed it ("many many people" also loved Gladiator). If I hadn't read the books I'd probably say it was the best movie I'd ever seen. I mean, this feeling was predicable right?

This might not have come all that clear through, after all I'm still making up my opinions here.

To get on topic to *this* board, let me conclude with saying that as they walked into Moria and Gandalf stops to ponder what way to choose, I got a real Final Fantasy dungeon-walking feel. A good thing.

2
....I have renamed some of the files on the Legacy server to something else so some links will be broken (JP got a traffic excess and I don't want to hurt his bank account).

Once I get around to set up my own server (which should have been many months ago, I keep delaying it, it's a lot of work) things should be in order.

3
General Discussion / #6000
« on: 2001-11-08 19:58:00 »
...in the general forum.

Hey it was just too tempting, seeing all those 9s...

4
General Discussion / Lord of the Rings movie
« on: 2001-11-06 13:22:00 »
Sitting here with some fresh tickets in my hand, on the first show...feels good...this movie is going to be great...(I'll try hard not to compare it to the books all the time...)

People in Oslo lined up for five days to get the best tickets...(I don't live in Oslo so I didn't have to line up...we don't have as good theatre as they do though)

So, any other places they hype presale of tickets five weeks in advance? And did anyone line up for days?

(I saw the Starwars Episode II trailer yesterday as well...Starwars doesn't really impress me any longer but it's still better than most Hollywood ******...)

[edited] 15 2001-11-06 14:24

5
It turns out that Squaresoft are looking towards supporting the XBox platform in a joint iniative with Microsoft. Microsoft badly wants into the japanese console market, and they realize that that is going to be much easier with square's support than without.

As the XBox is using DirectX, this also means that us PC users will very probably benefit from this.

Squaresoft also announces that in their well-known money sucking style (well, this wasn't their exact words) they are going to first release a new version of Final Fantasy 7 for XBox. Using an existing product will lower the risks of trying out the platform, as well as giving their developers good training on a non-critical product. Microsoft will let them borrow their rendering farm for rerendering all the background graphics, as well as designing some new high-poly in-game 3D models (having the FF7 original graphics in a XBox version wouldn't be good for microsoft you know). Let's hope they rerender the cinematics in a higher resolution as well.

Imagine playing FF7 with high-res videos/backgrounds and high-poly 3D models...I can't wait...

Read more on  http://ffsf.cjb.net" TARGET=_blank>Squaresofts webpage ...


6
Let's have one...just for fun? We've already discussed programming languages in other threads, I just thought it would be a good idea to collect them all in one thread. So I'm actually trying to prevent flooding rather than causing it.

My viewpoints:

Assembler - No real point in using it anymore for most things. There are some places it should be used, but they are really rare. Modern compilers are sometimes better than humans in optimizing anyway.

Visual Basic - Crappy language. Yes, it does give newbies a headstart, but not really more than Delphi does in my opinion. You can learn it in an hour, make programs in an hour, but after a month you spend more time fighting with the language than programming. Doing something advanced (editing FF files for instance) is not strictly impossible but tiresome.

Delphi - Visual Basic the way it is supposed to be. Almost as powerful as C++ (there's not a thing you can do in C++ that you can't do in Delphi) and as easy to learn as VB. This is my favourite graphical tool: If my program is much about a user interface, I use this.

C++ - The best! The cryptic syntax is bad because it scares newbies away, but is faster to type and has many really powerful features, of which I would mention templates and operator overloading as the greatest. IN Visual Basic some calls (like open) have special treatment, in Delphi some types (like string) have special treatment...in C++ nothing has special treatment, there's nothing in the standard libraries that you couldn't do yourself!! Also I really like the strong typing of the language (compare to Delphi, where you can typecast as easy as TButton(list[1]) and get loads of access violations) and the constness issues. But by now probably only the C++ people out there understand what I'm saying anyway...

MS VC++ - Microsoft manages to do everything possible wrong in their MFC framework. They have esentially stripped away what is beutiful with C++, you have to program directly to the Windows API instead of using some middle-layer like the rest of the world does. I feel it's a bit prehistoric, really... Also, the compiler itself lacks a lot of C++ features (for instance decent template support).

Borland C++Builder - Really horrible. Borland's C++ compiler is one of the best out there but using the Delphi VCL in C++ is just so wrong...C++ is type-safe, Delphi is type-weak...it's two colliding worlds! If you want to program with the fantastic VCL, use Delphi.

Java - It's C++ done right in some cases, and totally wrong in other cases. It's good to get rid of the legacy C/unix/preprocessor stuff, but loosing templates, multiple inheritance and operator overloading isn't all that good...it's a little like Pascal with C++ syntax, meaning blending the bad things of C++ with the bad things of Pascal...but still it's me 3rd language of choice, I'm not really against it. I'm only against the Java hype...most people hyping it don't have a clue. At least in my experience.

Perl - The beauty of this language is said to be the usefulness. As I look on programming as an art in goodprinciples and framework it really isn't what I'm looking for, but then again it doesn't pretend to be. Useful for dirty scripts...

PHP - Probably the best web author tool out there right now, definitely my choice when making dynamic HTML.

That's it...I don't know many more languages and haven't made an opinion about them.

[EDIT:] How could I forget good old C?

C is..well...C. I've never used it. I do know that it is faster than C++ (well, object oriented programming anyway, you can do C++ the C way) because the virtual functions cause the CPU to predict badly what will happen and not run as optimized. So C programming is faster (in two meanings of the word), but probably not as maintainable.

And you can do OO in C, but why bother? It would mean extremely cryptic syntax...

[This message has been edited by dagsverre (edited January 24, 2001).]


7
General Discussion / FF9 PC...sort of ;-)
« on: 2001-04-11 22:16:00 »
Looking down at my freshly retrieved FF9 CDs...what does it say on them? "PC CDROM". That's right, this very much looks like the PC version of FF9.

I'll start at the beginning. Somone I met yesterday showed me what he believed was the PC version of FF9. His older brother had sent it to him from another country somewhere (didn't ask where). Of course it wasn't FF9PC, we all know such a thing don't exist. Turned out it was five CDs, the last four being identical with the American FF9 and the first one containing a real crappy installation program which installed a (probably cracked) version of VGS and (more interesting) some of the game files, probably just the stuff that is common on all the CDs.

It's not like he got cheated or anything, since it is kind of obvious...comes in a plastic bag I've seen pictures of in those large pirating shops in Singapore. Also the print seems a bit unproffessional, like something done in a hurry.

I bought it of him BTW, since he already owned the NTSC version and I needed one for playing on ePSXe, the UK PAL version of FF9 has the most insane copy protection sceme ever seen on a PSX (checks for CD sub-block all the time not just game startup).


8
I'm not sure just how serious to take it, I hardly believe it could be any good. I mean, how can you emulate the PSX2 on anything even remotely close to today's PC hardware? Caching stuff in video memory without the game knowing about it? In that case it won't work when the programmers learn to use the bus more actively.

Anyway, here is the link: http://ekafemulator.virtualave.net/index.htm" TARGET=_blank>http://ekafemulator.virtualave.net/index.htm


Pages: [1]