Jump to content

Kloplop321

Premium Members
  • Posts

    214
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Kloplop321

  1. Some of you may have noticed that after the most recent update, the site seems to be less responsive. I'm getting wait times between 1.4 seconds to 2.9 seconds. I should only be waiting for the RTT + 160 ms, which for me is around 350ms for a server response. I've done a little profiling with the tools I know, but I can tell that Apache is not at fault here. The causes would therefore be somewhere like in too much execution, such as something very heavy, (an example I can think of is ZenCart with PHP), or there's a problem with the MySQL server, or socket between PHP and the MySQL server. I would suggest, temporarily using xdebug to grab a callgrind in a controlled environment So, what I mean is that you have a subdomain with any random highly unguessable name, which runs a different version of php.ini So, add something like ilikewafflesandbaconwbbq.1emulation.com as an entry as a virtual host in the apache configuration files, and then make a duplicate of the production php.ini, and make a new directory for debug uses. Then inside that virtualhost entry. <virtualhost 1.2.3.4:80=""> [...] PHPINIDir /var/debug/php [...] </virtualhost> where there's a php.ini inside of the /var/debug/php/ folder. In this php.ini, the entry for xdebug would be enabled. Make sure to set xdebug.profiler_output_dir to a directory where it can be grabbed via ftp More information can be found at http://xdebug.org/docs/profiler I wish you the best in this endeavor, but having a graphics which shows where the most time takes place really can help you find the cause.
  2. Feels a sudden urge to crank up the music.

  3. http://fyels.com/ is nice. I've used them before. Otherwise, I think its probably best to set up a private torrent that doesn't use a central server and just add eachothers' IPs to do the transfer.
  4. I've moved from Firefox to Chrome. The included developer tools are good, it loads everything fast, I don't need to reload the 80+ tabs that I usually close with, and its interface and imprint is low.
  5. First of all, this is not a gameplay review, or one that says "The bosses suck" This is just a review and a study of the mechanics implemented in the game, what possibly was done to make the mechanic happen, and what was done to be optimized or efficient for lower hardware. It is practically a console port, but it isn't a bad one. I used my knowledge as a developer to break things down from what I observed, and compared to other examples for a few things. I thought I might post something here since we're about to hit 2012, and nothing has been posted since 2010. GAME: Deus Ex Human Revolution Systems: PC, PS3, Xbox360 Emulatiors: None that I know of. Deus Ex Human Revolution Analysis: After playing the game in full after 50 hours, here’s what I have to conclude… Physics: The game has simplistic box and cylinder physics. There’s also rag doll physics. The player seems to be a basic collision ghost object in the shape of a sphere. This shape is further used for AI visual detection. When it comes to the player standing on objects, the following can be observed: The player seems to exert no forces on objects that are being stood on. I noticed this when I set two boxes roughly centered on a rail against a wall as a frictional surface, which I then proceeded to jump on top of to jump over a high wall. I was on the edge of the boxes in such a fashion that the boxes should have been knocked over by my weight forcing more torque than the wall friction could negate. Now that I think about it, there were almost no cases where torque in general could be observed. I tested for this in the Source Engine as used in Portal 1. The objects do fall over with my weight on an unbalanced setup. The source engine has more realistic physics in the case of standing on things. When it comes to the player bumping into objects, the following can be observed. There seems to be a 100-200 ms, possibly purposeful, lag before the object will move when the user collides with said object. It could be the result of ground friction, though it could just be a simulated lag to give the user a notice that they are indeed colliding with another mass-filled space. Most of the layout in Deus Ex is a static physics tree, so there aren’t many objects to manipulate the environment with, except for moving around boxes, crates, fire extinguishers and breaking glass with a gun. However, the user can only bump into large specific objects, such as boxes, large crates and vending machines. All other items are not considered when collision occurs. Such is the case with rag doll bodies, guns, ammo, and other various small things, like fire extinguishers. Rag dolls however do collide with the smaller objects, such as guns. When it comes to ground detection, this is what I hypothesize is happening. There are two cylinders, one that has the width of slightly less than the diameter of the sphere I hypothesize represents the player, another that is slightly larger than the diameter. The two cylinders create a list per frame of what they are colliding with, excluding the other and the sphere. When the two cylinders do not have lists of equal length, the smaller cylinder is used. This way, we aren’t counting a wall as something that we are standing on. However, when there is no wall around, and the larger is used, this gives the player a bit more tolerance in foot room. When the inner cylinder has no contact, the player is considered free-falling. To clarify on the specifications of the cylinders, I believe that they are the height of the player’s shape, plus a little and then shifted down a constant. I have yet to figure out what the constant is, or a margin of what it should be. The idea is though, that it is long enough, that if the platform beneath were going towards gravity but not at the acceleration of gravity, then we should still be able to walk on such a platform. Continuing floor detection: In Deus Ex HR, elevators and other moving platforms still allowed for movement, but declined to allow jumping. This may be so that players didn’t kill themselves from fall damage while in elevators(now that would just be silly) because the engine was not taking into account the relative velocity of what was underneath. Next is crouching and potential space the player could move in. As previously mentioned, I hypothesize that the player is represented as a sphere. While the player is in a normal posture, such as standing, walking or running, the sphere is the height/width of the max of the base of the head to the belt-line and the width of the shoulders. Its most likely the shoulders. When the player crouches, the sphere is simply brought to the ground. There is an interesting case when the player is brought to the following situation The player is presented with a wall that they are facing. There is a vent at upper-chest level. In DEHR, the player will automatically go into the vent and be in crouch mode. Depending on the player’s settings/preferences, the crouch is toggled when they enter this mode. Here’s my hypothesis on what’s going on to allow this. It may be something entirely contextual, or a simulation test. If a simulation test, the engine is simulating dual cylinders again, but they are only as long as the sphere is deep(or its diameter). The cylinders are facing so that the round side is facing the ground, and the flat sides are facing the user’s chest/face and directly in front. Both cylinders are placed in front of the user, the center of the circle face is between the chest and head. The second cylinder is slightly smaller for tolerance reasons. Now if the smaller cylinder can fit in the space without any static physical objects in the way, then a second test is ran. This is where the larger cylinder is used. There would likely be 2 tests which are simply to find the center of the vent hole. Since we know the points of contact already, we now shift away from those points of contact. Now, we detect if the cylinder is still contacting something. If not: we can proceed and enter. If we are contacting something, then we calculate relative to the first set of points where the center would be and move there. This is the second test. If there are no contacts, then we are free to enter. Normal crouching, like any other movement test will be a “Can my sphere go here without any contacts?” if so, then allow the movement to occur. Otherwise, calculate if the contact is at a non tangent angle. If so, then calculate with cosine where the object can go with a decreased force/velocity. The same happens with walking. If you walk at a tangent angle directly to a wall, then you might as well be testing the cosine of 90 deg which is 0. Now in the case of walking towards a corner where the sphere is in contact with two walls, depending on the yaw of the view, then the forces will be negated. Either way, until the user changes their plan of walking into a wall, it will become a harmonic motion of moving where the forces go between walls to find equilibrium. Ground friction with the player and objects It can be observed with a box on a sloped road that it will slide down. However it will slide down at a slow rate and stop after a foot or so, depending on the incline. There does seem to be a simulation of ground friction for small objects. With the player, there are no areas/levels where the surface is slippery. I’m betting that it is a situation where the character’s velocity is averaged and reduced to 0 after 35-100ms There are no cases of vertical velocity averaging as all cases of moving platforms are locked in terms of jumping(it can’t be done) Graphics: There are numerous tricks employed to have low geometry but high visuals. Most of it has to do with bump, parallax and normal mapping. Examples include the vent lines and indention of where they would, if real life, connect; brick walls, asphalt on roads, et al. There are also many shaders that seem to be in effect. I noticed that the rails were square in form, but looked cylindrical by how the lighting shown on them. It is likely that they are in fact square extrusions which have a shader applied where it seems like the light looks reflective as if cylindrical. Next up are the newspapers that will sometimes, as an environmental decal, fly up from random winds and disappear in the sky. The newspapers looked like it was at most 3 polygons which would be randomly twisted(pre-animated) which would have interpolated keyframes of rotation and position as they fly up, and then fade. They also used lower-resolution geometry as a form of art, as seen in the Biotech labs tower, where the furniture had solid-sculpted-white-granite sides which had large triangle sides. They used many portals. Not in the sense of Portal the game, but in an older designing sense. When presented with a large scene outside, there were not many features which were geometrically complicated. When you went through a doorway, you usually enter a small room, or a corridor. When you pass through the other side of said area, then you enter another area which is rendered separately from the rest of the world. Such world partitioning is a speed increase when it comes to pre-enumerated objects which are in the area to be considered to render, as opposed to generating this list in runtime periodically or even each frame. In older game engines, if you didn’t specify portal sections when level designing, then it would render the whole world and become very slow. Though not necessary for many computers of today, it was likely implemented to assist consoles with limited memory or resources such as the Xbox360 or PS3(it has 256MB of RAM and 256MB of VRAM) They had a very decent Level Of Detail(LOD) system. They switched textures on separate intervals than they did with models. They seemed to have more levels in textures than with models. I think they had 4 texture levels and 3 model levels. Regarding human conversation and movement, They seemed to have too much weight on random bumpiness with the human muscles. Try holding your hand in front of you about a foot away and try to hold it still. You may notice small twitches and shaking. Most places that implement this do not provide it at a realistic level. The face seemed to be a completely different animation system than the rest of the body. While in conversation they usually had the neck move around, as well as gestures with the arms that were generic. As most games do, they did not include any working mirrors, which may show how weird the player’s character may be holding things in order to get it to look right for the first person camera view. When changing to a third person perspective, the animation is likely to be averaged/morphed to the third person animations while the camera swings slightly away from the player and to where the target is when doing stealthy moves. This is essentially a copy and paste from my blog that I sometimes post to. http://blog.kloplop3...man-revolution/ I'm not the best writer. Did I make sense?
  6. I have no care for the mens corner, but I think the new compartmentalization makes a lot more sense for today. Looks like my avatar is gone, hmm.
  7. It isn't pre-loaded with emulators like the Dingoo is. It is supposed to come with Angstrom linux, and you download the binaries from the main server and put it on your SD card. Besides, the emulators are from the community, some of the same emulator devs are also in the PSP scene.
  8. It has a lot more than many netbooks. It is indeed pricey, but I think it is worth it(gaming controls, open system, dual SD slots, etc.)
  9. If you are interested in an emulation plausibility list, here's the link. I really want to own it, I have pre-ordered it; they are working very hard to get near perfection and have had some rough times, but that is almost over.
  10. The OpenPandora, a portable device which has gone through some rough times(which is to come out by the end of September) has a prototype that now has a video recording of it playing a racing game(can't read due to the quality), Mortal Kombat, and Metal Slug in MAME. It seems to run at desirable speed(with a frame limiter on) with a small clipping problem on the left side. The Unofficial Blog post contains the youtube video, however if you prefer to watch the youtube video directly For those who are unfamiliar with the Pandora, it is near or higher in ability in terms of computing and graphics of the iPhone 3G S. It has a QWERTY keyboard, capacitive touch screen, two joy stick nubs, D-Pad, the A B X Y button group and more in terms of user input. It has a long battery life, and has WiFi/BT. They are very close to completion, so at this time, they are still using the prototype CNC'ed case.
  11. indeed for the best to prevent these kind of attacks which are annoying
  12. I just use linux, it does what I want, and no lag because of security hole cover ups like firewalls and virus protection
  13. yah, people fail at sueing for medical reasons, and an old lady spills coffee on herself and gets rich, when the medical person is left hurt, and in debt.
  14. well I think that flash carts, even though most are made soley for ROM use, they can still be used for homebrew. The Cooperations want to control the market therefore in an effect of being a monopolist. Greedy people rule the world is all that I can say...
  15. I would have liked to have an update so you could do like a "cord battle" or something..
  16. well I have not used other distros, but you do need to specify the SSID WPA type(in your case PreSharedKey) the password or key, and whatever else it asks.
  17. Well for me I just use the default manager for that in Xubuntu on my laptop(which I got for $65) but if it does that for WPA wouldn't it do that by WEP as well?
  18. sure, let them do what they want, isn't living in the same house, sharing a bank account, paying taxes as one unit not good enough for them? I still think gay people have problems... Bulls are stupid enough to try to have sex with a steer, but we are not cows now are we?
  19. lol? well yeah they do it rough, but in someways the mom did not follow the land owner's policy.
  20. "a picture" has/says (forget which one) " a thousand words" those are some impressive spikes though.
×
×
  • Create New...