| 121 posts found | |
|---|---|
|
2/01/13 1:08:06 PM#21
Originally posted by Tigasnake Talking point #201 on on the herd's official rant on the evils of ToR is "The Hero Engine sux!!!!!11!!one!!!!". That's pretty much it. Most of them don't even know what a game engine is, in any meaningful sense, they just regurgitate the same crap over and over. |
|
|
2/01/13 1:10:42 PM#22
Originally posted by Karteli Pretty much this. I'm taking a shot of vodka every time I see a reference to go back to WoW. |
|
|
2/01/13 1:14:10 PM#23
Originally posted by GwapoJosh I meant the version of hero engine Bioware/EA used, not newer improved versions. Currently Playing: Path of Exile, Everquest |
|
|
2/01/13 1:24:52 PM#24
Originally posted by ktanner3 Actually the investors - meaning shareholders when talking about EA - might be clueless. What they are "investing" in is the ability of the company to pay them a dividend / increase the share price; their ability to know what the consumers want. And EA management haven't delivered in recent years and so there share price has fallen - which doesn't matter in the sense that shareholders (typically) do not invest directly in a firm these days. (Rights issues are an exception of course). If EA "run out of money" then it might matter - and they may have to cut back on the stock options .... Now whether posters know what they are on about is another matter; I think it fair to say that some do - within an area of expertise - and some don't.
|
|
|
2/01/13 1:35:52 PM#25
nvm... |
|
|
2/01/13 2:27:06 PM#26
Blaming all that ails SWTOR on the Hero Engine is pure ignorance. Let's start by asking what the point of a game engine is, anyway. Let's suppose that you want to make a game. One option is to make your own game engine. This isn't nearly as difficult or expensive as some people seem to think. It is, however, time consuming. Your engine will start at the level of "hooray, I can draw a triangle!" Then several triangles. Then triangles that aren't just solid colors. It will at least be weeks and might be months before you're far enough along that it's recognizable as a primitive game engine. So how is time consuming not expensive? You don't have 100 people working on the game engine early on; you probably have one or two. But you can't go hire a hundred artists the day you start work on the game engine, as there won't be anything for them to do until the game engine is much further along. Enter the option of licensing a game engine. A lot of the things that you implement in your game engine will have already been implemented in a lot of other game engines. If you license a game engine, you can use the code that someone else has written and not have to recode everything from scratch yourself. That lets you get started much faster and have something up and running within days that looks more advanced than what you'd have had several months in if you coded your own game engine. But then comes the downside: every game engine wants to do things a particular way. If you make your own game engine, the way the engine will want to do things is exactly the way you want your game to do them. If you later change your mind about how your game should do things, you change the game engine to match. If you license some other game engine, the odds that what the engine wants to do will exactly match what you want to do are basically zilch. If you do hit a perfect match, then you're trying to make a mediocre clone of something else and should cancel the project immediately. You can expect a lot of overlap between what the game engine wants to do and what you want to do, and indeed, choosing a game engine to license is largely about getting a game engine that already does as much of what you want to do as possible, and does it as well as possible. At this point, the "license a game engine" option splits two ways. You can buy access to the full source code, fork the code base, and essentially have your own game engine that used some other as a starting point. Alternatively, you can just use the game engine as is and not get access to the full source code. This is basically using the trial version of a game engine. If you take the latter option, then whenever you come across something where you want to do something one way and the game engine doesn't want to do it that way, you'll have to abandon what you had in mind and go with what the game engine can do. This might be fine for a very simple game that you make as a solo project over the course of a month in your free time, but you don't want to launch a commercial game with a 6- or 7- figure budget that way, let alone an AAA game. The former option of getting access to the full source code gives you the option to change the game engine however you want. This is what EA did for SWTOR, and what pretty much any big budget game has to do if it wants any hope of being successful. This makes it so that when you inevitably come across something where you want to do things one way and the game engine doesn't, you can change the game engine to do things the way that you want to. But this comes with considerable drawbacks. One is that as soon as you fork the code base like that, you can't get any more updates from the official version of the game engine. The official version will continue to make changes assuming that the game did things the old way. As soon as you start editing the source code of the game engine, it's now your own engine and anything else you want to add to it, you'll have to do yourself. While that may sound bad, it's not nearly as crippling as not having the option to alter the game engine. Modifying the game engine also means that you have to do much of the work of creating a game engine yourself. If you had written your own game engine, then you'd probably just happen to have people on staff who knows exactly how it works and why it was designed to work that way: the people who wrote the engine in the first place. But if you've licensed a game engine, then it's going to take a lot of work to figure out exactly how it works and why it was designed to work that way. A lot of different pieces of code have to interact with each other, and if you change one without knowing exactly what the others do (or even what the others are), that can break all sorts of things. If you license a game engine and then put in the work to understand exactly how it does everything and why it does everything that way, then you've likely put in enough work that you could have made your own game engine. Making your own lets you skip the licensing fees that you're paying to use someone else's game engine, too. Licensing a game engine still lets you get started a lot quicker, which can matter a lot if you're trying to get a tech demo out to raise funds on Kickstarter. But it can easily lose its advantages by launch day. There is also a middle ground of buying access to the source code to make a relative handful of changes that you absolutely have to make for your game, while leaving as much alone as possible. That can be cheaper than either writing your own game engine or taking the time to understand exactly how the game engine you've licensed works and why it works that way. The downside of this is that, at best, your game will be horribly unoptimized. A general principle is that even if you can take some general purpose tool and make it work for some specific purpose, the same effort at designing a tool for that particular purpose will give you a tool that works much better for that specific purpose. A Swiss Army Knife may be able to do a lot of things, but it can't do any of them as well as a tool built for one specific purpose. It can, however, serve all but one of its functions much better than the single-purpose tool. A game engine will have a lot of capabilities built in to do things that you don't want to do for your game. At best, this is a bunch of extra cruft that makes your code base much more bloated and harder to maintain than it would otherwise be. There are also important trade-offs in game design, and you may be using a game engine that sacrifices important things in order to get capabilities that you're not going to use, anyway. Worse, trying to only make minor changes to a game engine is likely to make your game into a buggy mess. You change something to create capabilities that you need, but then it doesn't play nicely with other code that relies on what you changed in complicated ways. It might be immediately glaring that there is a problem (e.g., now your source code won't compile), and just be a major pain to track down the source of it. Worse, you might not even be aware of the problem for quite a while, and by the time you discover it, you have no idea what change you made that created it. The upshot is that EA licensed the Hero Engine, bought access to the full source code, and made a bunch of changes to it. Anything that the SWTOR engine does now is because of EA, not because it is--or perhaps more appropriately, was--the Hero Engine. That licensing a game engine can create a lot of problems for your game is intrinsic to the nature of licensing a game engine. The problems are all fixable or avoidable, even if you license a game engine--but only by putting in the work to understand exactly what it is doing, not by licensing a different game engine instead. |
|
|
2/01/13 4:05:59 PM#27
Originally posted by Gdemami
Good job using stereotypes to defend your game. I'm sure you are fully qualified as well to judge everyones credentials. Heres a thought for you .. Anyone can inheriently know something they like versus something they don't like. And if they like something enough, they often times research into it further to become one of those mysterious "professionals".
Want a nice understanding of life? Try Spirit Science: "The Human History" |
|
|
2/01/13 4:18:41 PM#28
I am not judging posters credentials, I am judging content of posts made here so your "point" is moot.
In fact, thing is more complex once you try to make a business process out of it... |
|
|
2/04/13 10:18:44 AM#29
Originally posted by Quizzical Thanks for this. Well explained. |
|
|
2/04/13 10:21:26 AM#30
If you watch some youtube videos on the Hero engine, you will see that it is actually a very versatile engine.
|
|
|
2/04/13 10:39:12 AM#31
The Hero Engine is available in "cloud" form for $100 a year, I would suggest trying it out, if you are a developer. In my field, high tech chip design, we also have the same problem. Most companies in the old days built their own CAD tools to design chips, and their tools did it the way each company wanted it. Over the last 30 years, companies have moved to commercial software, and eliminated most or all of their in-house development. Now, as a commercial tool builder, we have to be concerned with what ALL the companies want. If X wants a feature that no-one else wants, we probably won't do it, unless X is big enough, like an Intel. And, let's say X has a brilliant new idea, and wants us to put it in as a feature, do we tell all the other companies about it? That would give away X's special idea. In layman's terms, EA/BioWare bought a prototype Corvette, and then replaced the engine, transmission, suspension, and steering. And guess what? It's not that good. Production Corvettes could actually be better. ------------ |
|
|
2/04/13 12:34:56 PM#32
Originally posted by Quizzical Zod absolulely loathes long post, however I knew it would be a notable learning experience... Zod thanks you. |
|
|
2/06/13 2:24:38 AM#33
Originally posted by ignore_me yup ,,shit happens..but i sure wont pay people for it im not a computer guy..i can barely upgrade my drivers but it looks like SWTOR have some guys with the same qualifications so whats the reason for me to pay them?
|
|
|
2/06/13 2:55:34 AM#34
Originally posted by Thorkune those videos are not from the "biowared" pre-release version of Hero Engine. Secrets of Dragon´s Spine Trailer.. ! :D Best MMOs ever played: Ultima, EvE, SW Galaxies, Age of Conan, The Secret World |
|
|
2/06/13 3:10:42 AM#35
Originally posted by Aeonblades 2. What? En engine doesnt really "look" at all. Sure, the hero engine is not the best around, and Bioware is using an old version but the games look have a lot more to do with art than the actual engine. Some moron decided that he wanted a "clone wars" look on the game instead of more realistic. The engine do have its limits that affect graphics but with good art the game would still have looked great. TORs failure to be the next Wow have very little to do with the engine (even if it didnt help). The art did have some things to do with it, but it was a lot more about the multiplaying parts were not good, the PvP was really boring and the fact that tons of voice acted sidequests gets annoying. The story is good but you just dont get people to play a MMO for years just for the story. As for how much the heavy instancing was the engines fault and how much that were intended design choices Bioware thought would be fun I leave to be unsaid. |
|
|
2/06/13 2:03:54 PM#36
Like most things around here, people just jump on the bandwagon. Stupid Engine! Hero Engine sucks! They hear it somewhere then laugh about it like they actually know what they are talking about. I however don't know what I am talking about, so I won't say. It's the same thing with EQ2 everyone screams "idiots made it too CPU intensive!" not even realizing back then all games were more CPU intensive and SoE was trying to make it future proof (their predicitons were wrong) but thats how the cookie crumbles. |
|
|
2/06/13 2:14:37 PM#37
Why did Hero get a bad rep from SWTOR? In my opinion it's because the game doesn't look that good (artwork is fine, rendering effects are minimal) or run that well.
Repop, from the screens I've seen, looks far better using the current version of the engine.
|
|
|
2/09/13 9:30:16 AM#38
Originally posted by Quizzical I believe that anyone who looks at this critically, with understanding about a lot of the things you mentioned, has no problem with Bioware/EA buying a pre made game engine and running with it. The problem that I, and thousands of others, have is that they bought a completely untested engine when there are half a dozen very well tested engines out there. Why not license Funcom's engine? The Dreamworld engine is, in my opinion, one of the best out there. Ok, lets say that they decline to license it out, which given their money troubles I highly doubt it, but lets say they said no. Well there's still several very good engines to use. Why in the world would anyone with a brain in their skull buy a completely untested engine, and then write a AAA MMO around it? I can understand if you're an upstart company with limited resources, but we all know this is hardly the case with SWTOR. It had an amazing amount of startcup cash. More than probably any other MMO in history. Also, you're missing a big facet of how MMO design works. Typically a company will up-staff with developers when they start working on a new title. They need to get tons of code written, animations created, databases back-ended... tons of work, and most of it done on the engine they are using. When the game goes live, they typically start dumping bodies. You need dozens of people to build an MMO, but you only need a fraction to maintain it and push out content. What's my point here? That there are typically a lot of devs who have worked specifically with any given game engine, with their resumes floating around. So you license that game engine, then you go finding people who spent several years using it that are no longer employed by the company. Now you don't have to start from square one on learning how to use it. For instance, there are probably enough devs out there with experience on the Unreal engine to fill a cruise ship. No need to waste time training a team up to write a game on the most popular engine in the world. TL:DR, BioWare/EA wasted a lot of time and effort reinventing the wheel, when there are a half dozen wheels out there that they could have put on the car. |
|
|
2/09/13 10:58:38 AM#39
And that is the point. If you have had any understanding of the matter, you would not say anything like you did... Development of any proprietary technology results in something untested. Would you call anyone doing so stupid because they are using something untested? You can look at it the way that EA bought specific technology they did not want to build in-house.
Warhammer Online and Skyrim use same engine just GameBryo running Skyrim is so massively modified it got branded as new engine - Creation Engine.
|
|
|
2/09/13 11:40:57 AM#40
Originally posted by Gdemami Yes, in this case it's completely stupid. It's reinventing the wheel. I'm pretty sure I stated that somewhere. You only reinvent the wheel when the technology you need doesn't exist anywhere yet, and you are forced to innovate. Necessity is the mother of invention. -Plato Necessity. There was ZERO necessity to write a completely new engine to push out a WoW carbon copy. If, however, they were trying to break boundries and do things that no other game is doing at the moment, such as CCP is doing with the Carbon engine, then they would want to invest in coding a new game engine from the ground up. BioWare/EA have absolutely zero innovation tied up in SWTOR. It's a pure hard copy of WoW with a bit of voice acting tacked on. A half dozen existing and proven engines, already on the market, do this already! No need to start over! None!
Like I said in my first sentence, I have no problem with them buying an engine rather than building a new one. My problem is with which engine they chose. They chose, what has turned out to be, a completely piece of garbage game engine for a AAA MMO. It might be fine for a much smaller game from an independent studio, but a game that is based off of a hugely popular IP, that can expect to draw millions of subscribers, isn't doing itself any favors adopting a game engine designed for small niche games. I'm not even making that last bit up. Go read about the Hero engine on their own web site. They never intended it for games like SWTOR and were surprised that EA kept pushing to use it.
Cmon man, you are putting words into my mouth. I never said that they should buy an engine and then never improve on it again. I simply said that you don't buy a completely unproven engine to base your AAA MMO from. You buy one that is proven. One that has a solid network layer. One that has already been through trials by fire in other games. Then you build off of that engine for the life cycle of your game. Face it. They made a critically poor decision early on that has been one of the primary factors that has lead to a mass exodus from the game. Name recognition from a solid IP will draw millions to your game, but if looks and runs like shit, they won't stick around for long and that's where SWTOR is sitting. |
|