Jump to content

Carmelle

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by Carmelle

  1. Probably not, unless they build that sort of functionality in to begin with. Definitely possible, it's just a lot of work and a bit hard to do. I know there's at least some work and that have worked on creating procedural, real time and reactive animations. That kind of system might be able to do it, but it'd definitely cost a pretty penny to license something like Euphoria, and more to get it working well enough to do what you'd want, if it's even possible. And even then, they're not the greatest of animations....work really well for things like reacting to falls or things hitting them, but not so much for more nuanced movements.
  2. That screen to me looks like it's designed to set the mood or introduce an area (whatever is behind those statues), not be a complete map itself. I doubt any sort of encouters would occur there...and it's definitely large enough to fit the heroes for that purpose. Especially if they have any sort of depth, so as you move towards the entrance the characters would become smaller still.
  3. Recent? Hell, Age of Empires 2 is over a decade old. Lol, true enough. In my mind I was thinking more along the lines of the newer Total War games as the basis. But yea, even the older TW games and AoE2 and such had pretty decent pathing with formations.
  4. Keep in mind that the Linux kernel also compiles on ARM, and many distributions offer full ARM support as well, including all (FLOSS) libraries and capabilities. As long as you're mindful of some architectural differences (like endianness, but those are things you normally encapsulate away early anyway), it doesn't matter on what of the dozens of architectures Linux works your program runs. I suppose that works fine for most things (basic libraries or utilities, maybe even things like SDL or what have you) but the main differentiator is still the graphics hardware. PC -> opengl/directx, ARM/Mobile -> opengl es/directx mobile. There's definitely game engines out there that work on both (I think Unity is one of them), but the game would have to be built with the mobile graphics hardware in mind, and with mobile hardware constraints in mind (memory, cpu, whatever). Plus at the end of the day, it's yet an entirely 'nother platform to do tests, validation, etc... for. And one where, unless touch-friendly controls were added, the vast majority of users wouldn't be able to take advantage of right now anyways. And then adding touch controls would likely either 1) gimp the controls for the PC version, or 2) Add on to the list of things that need to be entirely separately tested and such on the new platform. All in all, it's still a lot more difficult to go PC -> ARM, than it is to move between different PC operating systems or different Mobile operating systems.
  5. Well, Unity does run on Arm with its mobile flavour, and I know that android supports a physical keyboard/mouse out of the box + hooking up to an HDMI capable display. That said, I don't think it'd be that simple. Although the industry is definitely shifting towards ARM for lower and mid ranged devices, it's a bit too early to say with confidence that they'd be able to ship for it down the road, let alone make it as a part of their roadmap. Linux/Mac/Windows at least share the same set of libraries and general capabilities (i.e. the PC). When you start getting to ARM based devices, you have to begin designing for the lowest common denominator. They're still vastly inferior in specs, input options, and more importantly the libraries which make things like 3d graphics possible (ex: mobile devices generally use OpenGL ES, not the full directx/opengl like the desktop.) It may be possible for simpler programs like Angry Birds or w/e, but it'd probably take too much out of the game and their resources to target ARM on their budget.
  6. In this area, I would love if the game took a bit out of some recent RTS games that allow for formations... where you can have individual movement per character but as they move, have them try to adhere to a single formation too.
  7. I absolutely love these kind of things, especially if they affect the gameplay or story going forward. Adds for replayability, and makes it feel like my choices actually matter. Plus the harder they are to decide on, the more likely I am to wanna replay the game and see how it would have turned out if I went the other way. << Possible ME3 spoilers ahead: >> Mass Effect 3 had me going for the longest time in trying to decide between Geth and Quarians, and once I found out I could save both by doing certain decisions in the previous ones, made me wanna replay them all to do so :/ heh. That said, it didn't feel as a big of a decision once you actually made it. Characters commented on it slightly here and there, but ****, that was just effectively planetary-scale genocide of an entire species. You'd think it'd be a bigger deal O.o
  8. I don't really care about # of locations or maps or whatever, so much as the actual content that goes with them. Having 100 locations is useless if most of it is empty land imo. It's kinda how fallout 3+ felt for the most part. You had interesting locations interspersed with vast amounts of barren land which had nothing of interest, and were a chore to walk from and to. Luckily you could quick teleport to locations once you've discovered them though I suppose. Skyrim on the other hand wasn't as bad. It still has a similar setup, but as you're wandering through the map you find a lot of cool little things. Either the AI doing something interesting, some sort of encounter, random NPCs going about their way, etc..
  9. Just thought I'd throw some light on a few of the topics I've seen discussed, as I understand them. Feel free to skip down to the TL;DR Just wanted to add some insight. On fractal-based textures: This is kinda cool, and it's however not too difficult to combine fractals to generate interesting looking textures for things like rocks, walls, brick, etc.. anything that's either regular and can be modeled mathematically (ex: bricks) or is very random (ex: sand). And you can always layer fractals on top of one another to add depth to the textures and make it difficult for the eye to detect any patterns or whatever. I used to do this a lot in my 3d work back in the day, i.e. procedurally generated textures. Placement of things could be calculated once on level load, and you switch out CPU time/ram usage for storage space. The problem with this is it takes some control away from the artists, and kind of goes against (what I think is) the design ethos of the project: to create beautifully hand drawn (or at the very least, hand placed) worlds, full of detail, variety and purpose. On the topic of compression: Generally lossy formats like JPEG don't provide a simple and hard-set conversion in terms of, if the original picture is x bits per pixel it'll compress down to y bits per pixel or whatever. From what I remember in messing with lossy encoders, there's a few different tricks you can follow. 1) One is encoding parts of the images as a composition of other parts of the image. 2) Another is doing heavy down sizing to different color or chroma channels that the eye can't easily distinguish (ex: blue/yellow). 3) And the third is replacing color information in the picture with an index. You develop an index of all colors used in the picture and assign each a number, then each pixel only has to store x,y,color-index instead of x,y,r,g,b and the index has a defined color per ID in only one spot per image (This is similar to what most loss-less formats probably do, along with other tricks I'm sure). 3b) You can then do things like, combining colors that are visually similar together so you remove some colors from the image too. The first two and 3b are what lead to things like artifacts appearing in the image. So what this means is that the amount of compression you get varies greatly depending on the entropy of the image itself. Lots of different colors near each other with very little stretches of one or similar colors = bad compression. But if an image uses lots of similar colors and areas where one pixel easily blend into another (like the IWD pic used earlier), it's easier to compress more. Just something to keep in mind with the estimations. And lossy compression is definitely viable for a game, you just wouldn't want to push it too far. On the topic of actually using/displaying the massive environments: that's much easier. They can be drawn in, and separated into, smaller chunks. Then you could preload blocks in the direction your character is walking, before they're rendered onto the screen. No need to have an entire aaaaaaaaa x yyyyyyyy 500 meg in memory at once. More likely though, it'll probably be some sort of 3d asset(s) that have textures applied to them. A building could be actually rendered in 3d and have a very detailed texture applied to it. Especially since they said that environments were being created in 3d first, and then modified in some sort of post process. Plus doing it this way would allow them to keep extra information that could be useful for pathing, occlusion, dynamic lighting, etc... And as for time it'd take to create the environments: I suspect there will be duplicated assets (either drawn in as some sort of brush, or actually placed as a separate entity within the game) all over the place to make it less work. Not *everything* needs to be unique. And by keeping them as separate entities, it could help reduce disk usage. 5 trees could be used 5 times each to make a small group, instead of drawing and keeping texture information for 25 separate ones. ### TL;DR: Fractals are cool, but detract from artists ability to really make the world their own. As for compression, it's hard to speculate on numbers without knowing more about the worlds. So really it just feels kinda pointless to me... Finding solutions and stuff might help, but things like EXR are already well known and used in 3d work, and I'm sure these devs know of a lot more solutions too. I'm not saying there's no point in discussing, I enjoy it Just saying, not sure how much we can offer the devs short of finding some magic and miraculous new way of doing it that most people have never done before But hey, if you do come up with something, lemme know, we'll go sell it Display/Creating massive environments, I'm pretty sure they have that on lock if nothing else. No worries
  10. How do you know it won't be? As I already explained in another thread, the Unity engine is not the actual cRPG game engine for PE like the Infinity Engine was for BG. Unity is just a low-level framework and toolset on which Obsidian is building its own custom cRPG engine, which in turn will run the game content that will make up PE (and maybe additional games in the future). So how do you know that replaying of scripted battle sequenced will not already be supported by this engine anyways? It might very well be, for cutscene-like sequences etc. It all depends on how they decide to implement it though. If it's used specifically for cutscenes, then it's not necessary to design, develop, test, a UI to let the user make recordings, play them back, etc.. And they'd likely be able to cut development time by making it less generic and specific to the cutscene scenario. Anyways, when they do look over this thread, they may add it to some bucket list of "nice to haves" that fits after the "nicer to haves", since we also made it clear that it's not something that the community deems absolutely necessary either
  11. I would love a day/night cycle, but having quests tied to specific times can be annoying sometimes. For example, in Skyrim and Witcher, every time you wanted to advance the day/night cycle, it'd take a while and you'd have to wait for really no reason except that the game engine had to load all the new lighting settings and such. But having the world react to the day/night cycle as it progresses is definitely something I would like to see. Right, but that's only two different light levels for (some of) the areas. You didn't get the sun moving across the sky or the shadows dhanging as time passed - it just went from day to night and back - which is the same as I expect to see in PE. Although backgrounds are "prerenderered", the game is still 3d itself. It's not 2d/sprite based. So objects like trees, buildings, characters, etc... can actually be their own 3d model (and I think they said they would be) and thus still cast shadows/react to light dynamically. I think the pre-rendered dealy means more along the lines that the 3d elements will be limited to a single orthographic-like view and will have a focus on more detailed texturing work rather than trying to create complex models, and then the ground itself would be static? I dunno. But there's a lot of tricks that can be done these days to make games look as good and far better than the old school 2d games, while still keeping the same feel, and allowing for newer effects like the day cycle and other dynamic lighting, dynamic or destructible environments, etc...
  12. Personally, I absolutely despise ammo management. It becomes far too much work, especially with parties of several characters. I do like the quiver approach mentioned by Aoyagi though. For a happy medium, perhaps quivers that magically regenerated ammo over time (outside fights) or something. So you'd have some ammo for each fight, but would have to be careful with how you managed the ammo within a fight itself. Then the ammo management is restricted to strategic use within combat instead of managing an inventory with no real addition to enjoyment, only realism (eg. "oh crap I forgot to buy arrows at the shop DAMMIT" or "didn't buy enough arrows, UGHH" and your ranged character becoming useless.)
  13. Good to know.. just to clarify though: I was referring to the 3d model itself, not the portrait. And the sort of disconnect that occurs if the model looks one way (or changes with gear or whatever) while the portrait remains static and looks another way.
  14. Only issue I have with hand-drawn portraits with in game characters and such is, the discontinuity between the portrait and what my character looks like in game. In the older games it wasn't too bad since the in game model/sprite was small enough where I couldn't really notice too much (minus the gear I guess), but if the new one will use 3d models, how detailed will they be? Will there be cutscenes or pre-scripted scenes where you end up seeing the model up closer? I really do like the look of hand-drawn portraits, it's just the disconnect that gets me I suppose. That said, I'll easily spend hours in a character creator if it's done well Like in City of Heroes/Villains...oh god, I don't even wanna think of how much time I spent making costumes and characters in there... but if it's ****ty (Lineage 2 springs to mind) and every character looks the same, that kinda sucks too :/ The one thing that is definitely a huge plus for custom-made avatars (2d, 3d, whatever) is that I find you get attached to them more, since they're an object of your creation and the representation of your character in the world...makes for a stronger link.
  15. It's a tough call... I generally like to be able to finish all the quests in whatever game I'm playing. In Skyrim, I tried to go around and finish as many side quests as I could before completing the main story line (and I did a hell of a lot of them). But after a while, I really wanted to know what happens in the main line, so I went and completed it. Then I barely touched Skyrim again afterwards. Partly since nothing really seemed to change in the world after completing the main line. Those guards are so mean to the savior of the world I suppose it was just odd that this amazing quest, that was so incredibly important, did nothing. But also, the side quests were mostly so minor (after having completed all the main arcs) that I just felt like I had nothing else left to look forward to after completing them really. In Mass Effect, certain quests become unavailable as you progress in the main line. So this meant that every time I completed a main story line quest, I would go around and search everywhere for any possible side quests, so I could complete them all before going on to the next story line segment. In ME3 where there were so many side quests, and doing this became such a chore, after a while I got tired of it and stopped; I've still yet to finish ME3 (though that's probably more a factor of work+school at this point, but still). If it was easier or quicker to discover the quests, without having to go through umpteen loading screens between each area (run between levels in map each with a loading screen, load into ship, load galaxy map, load destination cluster, load destination planet, run to and load each planet level, run around all of each level and see if any npcs wanna talk to you, get back to ship, repeat for other planets), I'd have probably been ok with it. But it just felt like I was spending more time running around for the side quests than actually playing the game. At the same time, I really enjoyed all the content and didn't want to miss any. Don't get me wrong, I enjoyed both games and spent tons of hours in each... but... I'd love for some sort of happy medium between these two cases. I'm not entirely sure what that is, but then, that's why I'm not the game designer My thoughts anyways... The easy way is to follow the Skyrim route. It satisfies BOTH sides of the fence. It just means if you want to continue afterwards, you deal with the consequences of it not being worked into the game world as you may think it would have. But you at least get to experience all the other content you missed on the way. Doing it the ME way means you have to do another play through to get through all the side quests. Personally, I don't do a re-play through until a long time after my first play. Unless I can take the entire story on an entirely separate branch, it gets repetitive going through all the same things again, for me. Part of the magic of these games for me is the discovery of the story and what will happen next. Once I already know, it's kind of boring It's like giving yourself spoilers.
  16. This kind of thing isn't *that* difficult to implement, if you factor things out from the get go. Inputs/actions can be sent to a 'logger' or an 'executor'. The format the logger saves in can then be read back later, and sent back to the executor as well. The executor actually leads to the on screen rendering at some point. If you have data on the world state at the beginning of a battle, plus this log of all actions that occured during it, then have it prune out the pauses... it shouldn't be all that bad. That said, I'm just wondering how much use it'd get? I think it'd be pretty cool to see the first few times around, but after a while, I'm not sure if I'd still be doing it?
  17. ^ Good list. I'd probably just add that there's also a built in "market place" of sorts, for additional plugins, addons, assets, libraries, etc... for the engine/game. Ex: it might be cheaper or easier to buy one of the available pathing packages than code one from scratch. I'm sure their team can do whatever is needed, but sometimes its easier, faster and just as good to use the market.
  18. Pretty sure the amount shown on KS is simply amount pledged, not the $ amount of transactions gone through, since processing occurs over time and is not necessarily instant. The final amount will still take some time to do. They have to gather the KS money, give people chances to pay if it didn't go through, and likewise collect paypal money, then make sure it all gets transferred properly to wherever they need to transfer it (it's a big transaction ), and then once KS, Amazon and PP skim off the top...we'll finally know final amounts
  19. Paypal is not free. Even in money transfers, one of the parties involved will be charged a fee. As it's used, it'll probably be something like fixed amount + some% of total. I can't remember off hand what paypals models are like for commerce type transactions.
  20. <333 dev commentary in games like HL2 and portal. It's the only thing that made me wanna replay those games
  21. Also many people check the "remind me" button on KS, and then check near end of the campaign to see if it's passed or near the goal, plus how the project has progressed, all at once... instead of relying on the initial posting only. Pretty much for people on the fence to decide one way or the other. Same reason people remove pledges too I guess
  22. *sigh* Bit the bullet...changed from $20+25+20 ($65) -> $50+7+20+25 (102) for guide+beta+expansion... Back to scavenging for food for a bit at school I suppose :/
  23. Built atop a mountain, with off hanging balconies and such, so that when you're at the edges you can see all of the surrounding lands below, just far away. I dunno, depends on how restricted the camera view/angle would be I suppose.
×
×
  • Create New...