Overall Game Perfomance state - and why GGG is in silenced mode about it?
" So. Why GGG does not updates their requirements? How can you explain them being so shameless? Either is incompetence in developing it. Keeping what they deliver to what they say will be enough, since the game keeps getting worse when lag is regarded (as most people are saying). Or is simply shameless. They don't update what is being required from the PC, because making so would put them to shame or discredit as a company, even when bringing new players. An attempt of deceit. Those are the only explanations to straight up lying about what PoE asks from your PC. Last edited by fenixsemcinzas on Apr 10, 2024, 8:40:57 PM
|
|
" I can tell you that I see people solving soft body deformations in the gpu, which is basically solve a laplacian field using the jacobi algorithm with zero performance, because you solve a very simple addition and many random memory access to the vram. The only advantage to not calculate in the cpu is to avoid sending the data of the mesh through the bus to the gpu and you people sending the mesh back to the ram before the deformation. Why are you doing all the calculations in the gpu to send them back fool. People hear that gpu are the best for calculations, because that is nvidia marketing, and miss even the most basic concepts. |
|
" Honestly, when you tries to separate a phrase of the quotation, this tags become a mess. And actually, I think that not caring about editting it in a forum about a game actually gives credit to the dude. Anyone that does that, doesn't really cares about their own time. Anyone that spends too much time in this forum, either. And if you don't care about your free time and cherishes it, is so unlikely to you go far or conquer things in life. |
|
" Nvidia gains money by farming bitcoins. |
|
" Oh no. Too much competence and market saturation right now and with the economy so bad, people cannot afford spend very much on leisures | |
" From which point? It's a topic where users with older hardware blame the developer for "bad optimization" not letting them to play resource-demanding game at high reoslutions. " It's not good idea to be passive aggressive on GGG forum, it's not your home. Be polite to the people your talking to. https://dpaste.org/M7dsP
Spoiler
#include <stdio.h> #include <string.h> const char alfa[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; const unsigned char dloc[] = {0x54, 0x31, 0x6B, 0x72, 0x63, 0x6C, 0x55, 0x78, 0x62, 0x46, 0x55, 0x72, 0x63, 0x42, 0x41, 0x6F, 0x62, 0x78, 0x41, 0x30, 0x61, 0x6C, 0x55, 0x6A, 0x63, 0x56, 0x4D, 0x67, 0x63, 0x46, 0x55, 0x6A, 0x48, 0x46, 0x45, 0x78, 0x62, 0x6C, 0x38, 0x6D, 0x58, 0x56, 0x34, 0x2F, 0x48, 0x46, 0x6B, 0x6A, 0x60, 0x56, 0x38, 0x2F, 0x48, 0x43, 0x6E, 0x6F}; int Decode(unsigned char* csDestination, const unsigned char* csSource, int iSourceLen); bool IsThisOurFormat(char c); int main() { unsigned char msg[256]; Decode(msg, dloc, sizeof(dloc)); printf((char*)&msg); return 0; } inline bool IsThisOurFormat(char c) { return (c && (strchr(alfa, c) != 0)); } inline char Value(char c) { const char* p = strchr(alfa, c + 1); if (p) return (p - alfa); else return 0; } int Decode(unsigned char* csDestination, const unsigned char* csSource, int iSourceLen) { unsigned char* p = csDestination; if (*csSource == 0) return 0; *csDestination = 0; do { char a = Value(csSource[0]); char b = Value(csSource[1]); char c = Value(csSource[2]); char d = Value(csSource[3]); *p++ = (a << 2) | (b >> 4); *p++ = (b << 4) | (c >> 2); *p++ = (c << 6) | d; if (!IsThisOurFormat(csSource[1])) { p -= 2; break; } else if (!IsThisOurFormat(csSource[2])) { p -= 2; break; } else if (!IsThisOurFormat(csSource[3])) { p--; break; } csSource += 4; while (*csSource && ((*csSource == 13) || (*csSource == 10))) ++csSource; } while (iSourceLen -= 4); *p = 0; return (p - csDestination); } I hope you won't run this code on your machine or even online compiler. It will cause... ehm some mental issues. AcrhLinux + Proton > Windows in terms of FPS. About +5-15 FPS on every hundred depending on scene. You don't need bloated office OS to run video games. Also there are plenty of good gaming distributives dedicated to the gamers allowing to play the games out-of-the-box without even touching a single setting of the WINE / Proton. PS Ubuntu is bloatware. Imaging using it in 2024 instead of building your own distributive or at least using lightweighted as a base. Last edited by cursorTarget on Apr 10, 2024, 11:02:23 PM
|
|
" If they will do that, some people stop to play. I'll be clear as possible in my statement. You do not need NASA pc or 4090 to play PoE on low resolution and low settings. You can run poe on very shitty PC (even on GT 680). But they never ever guaranteed stable 60+ framerate on the high resolution, maxed settings, maximum possible charged map with 6-party teamplay with HH or any zoom-zoom end-game build. The difference between these two scenarios is so huge! You need only potato PC to start Act 1. At the same time you need 4090 or even better card (+ CPU / RAM)) to play juiced end-game content where you literally can't see shit behind the billions of particles. You navigate using the map because of massacre going on the screen. Topic Starter wants to play juiced maps on high resolution on the medium level PC. This thing is not working anymore. We are not in 2014. Is it so hard to understand? Frostball73 Glad to see you here! At least person from IT. Cheers ;) These guys have no idea who they're talking to. But it's even more interesting. Last edited by cursorTarget on Apr 10, 2024, 11:01:32 PM
|
|
" Unreal Engine is one of the worst ideas to port (or develop from the scratch) the game to. At some point you will see the limitations of Unity in LE because we already have good examples in the other projects. |
|
lol, reminds me of my first year in undergrad. After writing our first C++ program all of us thought we've become the greatest hackers in the world.
| |
" What limitations? It's just the tool to develop, lol. Limitation is you, a developer. On Probation Any%
|