lldb: /usr/bin/lldb /Library/Developer/CommandLineTools/usr/share/man/man1/lldb.1
lldb-1316.0.9.46
Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
lldb: /usr/bin/lldb /Library/Developer/CommandLineTools/usr/share/man/man1/lldb.1
lldb-1316.0.9.46
Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
lldb: /usr/bin/lldb /Library/Developer/CommandLineTools/usr/share/man/man1/lldb.1
lldb-1316.0.9.46
Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
const
(why would const
not suffice?)const
(why would const
not suffice?) datasrc/compile.py:244:12: C0209: Formatting a regular string which could be a f-string (consider-using-f-string)
Exception on node <For l.296 at 0x7fee54e885b0> in file '/home/daniel/Desktop/other_repos/ddnet_master/datasrc/compile.py'
Traceback (most recent call last):
....
RecursionError: maximum recursion depth exceeded
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3.10/site-packages/pylint/utils/ast_walker.py", line 90, in walk
callback(astroid)
File "/usr/lib/python3.10/site-packages/pylint/checkers/refactoring/recommendation_checker.py", line 172, in visit_for
self._check_consider_using_dict_items(node)
File "/usr/lib/python3.10/site-packages/pylint/checkers/refactoring/recommendation_checker.py", line 254, in _check_consider_using_dict_items
iterating_object_name = utils.get_iterating_dictionary_name(node)
File "/usr/lib/python3.10/site-packages/pylint/checkers/utils.py", line 1601, in get_iterating_dictionary_name
inferred = safe_infer(node.iter)
File "/usr/lib/python3.10/site-packages/pylint/checkers/utils.py", line 1262, in safe_infer
raise AstroidError from e
astroid.exceptions.AstroidError
datasrc/compile.py:1:0: F0002: datasrc/compile.py: Fatal error while checking 'datasrc/compile.py'. Please open an issue in our bug tracker so we address this. There is a pre-filled template that you can use in '/home/daniel/.cache/pylint/pylint-crash-2022-06-23-13.txt'. (astroid-error)
It fails on line 296pylint
. I was wondering why you were using such an outdated version of pylint
(2.4 released in 2019 vs. 2.14.4 released a couple of days ago).
I found this is because you use apt-get
to install pylint
:
https://github.com/ddnet/ddnet/blob/82535814301c31a1966638429ad07d0c665858f3/.github/workflows/style.yml#L22
This means that you're dependent on updates to the package manager to get updates for ...66df4a7
Move libpng libraries to expected name for macOS - def-953ab63
Fix windows.h include in discord game sdk - def-c++
case SDL_QUIT:
return 1;
can u replace it with
c++
case SDL_QUIT:
{
dbg_msg("test", "sdl closed my client, but why xd");
return 1;
}
i really wonder wtf closes ur clientc++
case SDL_QUIT:
return 1;
can u replace it with
c++
case SDL_QUIT:
{
dbg_msg("test", "sdl closed my client, but why xd");
return 1;
}
i really wonder wtf closes ur client [2022-06-23 20:26:31][test]: sdl closed my client, but why xd
[2022-06-23 20:26:31][client]: disconnecting. reason='unknown'
/home/arda/ddnet/src/game/client/prediction/gameworld.cpp:147:20: runtime error: member access within address 0x619001202a80 which does not point to an object of type 'CEntity'
@Jupstar ✪Client()->UpdateAndSwap();
after line 866
which says Graphics()->IndicesNumRequiredNotify(vtmpTiles.size() * 6);
Client()->UpdateAndSwap();
after line 866
which says Graphics()->IndicesNumRequiredNotify(vtmpTiles.size() * 6);
grep -Ri "Client()->UpdateAndSwap()"
src/game/client/components/menus.cpp: Client()->UpdateAndSwap();
src/game/client/components/menu_background.cpp: pSelf->Client()->UpdateAndSwap();
src/game/client/components/menu_background.cpp: pSelf->Client()->UpdateAndSwap();
src/game/client/gameclient.cpp: Client()->UpdateAndSwap();
diff --git a/src/game/client/components/maplayers.cpp b/src/game/client/components/maplayers.cpp
index 89c2ab06d..ece25af5a 100644
--- a/src/game/client/components/maplayers.cpp
+++ b/src/game/client/components/maplayers.cpp
@@ -864,6 +864,7 @@ void CMapLayers::OnMapLoad()
Visuals.m_BufferContainerIndex = Graphics()->CreateBufferContainer(&ContainerInfo);
// and finally inform the backend how many indices are required
Graphics()->IndicesNumRequiredNotify(vtmpTiles.size() * 6);
+ Client()->UpdateAndSwap();
}
++CurOverlay;
like this?[2022-06-23 20:26:31][test]: sdl closed my client, but why xd
)
Now we have a confirmed case that making the window unresponsive can create weird behavior. Similar to the other pr switch to a loading screen after 500ms (this time without men...[Desktop Entry]
Type=Application
Name=DDNet
GenericName=Platform Game
Exec=env DDNET_DRIVER=GLES SDL_VIDEODRIVER=wayland /home/arda/.ddnetsrc/build/DDNet
Icon=teeworlds
Keywords=game;multiplayer;
Categories=Game;ArcadeGame;
MimeType=x-scheme-handler/ddnet;
Comment=Launch DDNet
#Terminal=true
[Desktop Entry]
Type=Application
Name=DDNet
GenericName=Platform Game
Exec=env DDNET_DRIVER=GLES SDL_VIDEODRIVER=wayland /home/arda/.ddnetsrc/build/DDNet
Icon=teeworlds
Keywords=game;multiplayer;
Categories=Game;ArcadeGame;
MimeType=x-scheme-handler/ddnet;
Comment=Launch DDNet
#Terminal=true