Guild icon
DDraceNetwork
Development / developer
Development discussion. Logged to https://ddnet.tw/irclogs/ Connected with DDNet's IRC channel, Matrix room and GitHub repositories β€” IRC: #ddnet on Quakenet | Matrix: #ddnet-developer:matrix.org GitHub: https://github.com/ddnet
Between 2022-04-07 00:00:00Z and 2022-04-08 00:00:00Z
Avatar
chillerdragon BOT 2022-04-07 06:34:17Z
lol
Avatar
17d93f6 implement DoTooltip - edg-l 527835e fix style - edg-l 0b8152f add 1 second delay to tooltips - edg-l 3c904ff fix conflict - edg-l 62c361f Merge #4267 - bors[bot]
Avatar

Checklist

  • [ ] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test if it works standalone, system.c especially
  • [ ] Considered possible null pointers and out of bounds array indexing
  • [ ] Changed no physics that affect existing maps
  • [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-addresssanitizer--u...
Avatar
927f48f update new code docs location - edg-l a5db83f Merge #4955 - bors[bot]
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 09:48:13Z
when you plugin ur phone and suddenly icons of the 90s popup https://zillyhuhn.com/cs/.1649324864.png
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 11:25:27Z
wow that works well
11:26
11:26
aaa i got virus
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 12:16:05Z
Any idea how to build a str_utf8_slug that slugs out all the nasty utf8 characters?
Avatar
just slug char higher than 256
12:21
256 is extended ascii it has the accents and german stuff
Avatar
ChillerDragon: loop through with str_utf8_decode and create a new string with only the codepoints you like
12:30
yea thats what i tried but it doesnt work at all :C
Avatar
pStrning
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 12:30:31Z
ikr
12:31
I do not even know which characters i want. Maybe its not a slug issue but a font issue. My terminal prints some chars out of the plain ascii range and others become something like ~~Ð
Avatar
then fix your terminal and don't remove unicode πŸ˜„
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 12:32:26Z
even dat emojii printed
12:32
is it a font or terminal issue? any ideas
12:33
12:33
yea xterm doesnt look better
Avatar
font probs
Avatar
or encoding problem
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 12:35:53Z
where to buy better fonts
Avatar
can you cat regular utf8 files?
Avatar
i uses jetbrains mono but if u want oldschool maybe u can tryr http://terminus-font.sourceforge.net/
12:37
they claim to support many chars
Avatar
every terminal should switch to a fallback font for what isn't available, so it shouldn't be a font problem
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 12:38:41Z
yea i can cat it
12:39
12:39
maybe its a curses issue? is that possible
12:40
normal ddnet client log prints it fine. But curses log does not. Or do i have to be careful when passing around utf8 strings before printing them?
Avatar
yes, you probably have to set curses to utf8 mode
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 12:48:00Z
Yea that sounds like the issue thanks deen lets see if i can link the other fakin curses version -.-
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:11:29Z
Wooow all that effort to get utf8 working ... and it still messes up my table haha.
13:11
13:11
kill me
Avatar
I'm in this picture and I don't like it
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:16:06Z
is this some reply or do you talk about my serverbrowser?
Avatar
Come to Discord and find out
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:17:30Z
fakof -.-
13:17
i just assume you are not talking to me :p
Avatar
I did tho
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:18:09Z
oo
13:18
wdym then? o.O
13:18
trol
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:18:40Z
you dont like the picture? :c
13:18
its hot
Avatar
table unaligned
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:20:52Z
yea well that the point
Avatar
Fix it
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:21:09Z
im on it mf
13:21
im just sharing my sadness
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:21:50Z
fakin cyberbully
Avatar
I'm working on a terminal based program that has unicode support. There are certain cases where I need to determine how many terminal columns a string will consume before I print it. Unfortunately
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:22:26Z
dont we have something in system.h ?
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:23:06Z
str_utf8_stats
13:23
count - Pointer to store count of utf8 characters of the string.
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:23:38Z
yea not sure if size helps tho
Avatar
maybe, bcs then u maybe can calculate back and know how many spaces to append
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:24:21Z
yea but the i have to do it manually
Avatar
Then kys?
13:24
xd
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:24:36Z
currently str_format() does the padding for me why dis bitsh cant count
13:24
when str_utf8_format xd
13:24
ye
Avatar
str format does the padding? wym?
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:25:18Z
str_format("%-20s", "foo");
13:25
prints 20 space padded "foo"
13:25
but yea i can do str_format("%-*s", pad, foo) and do calc
Avatar
ah, well yes but dont you need different space counts anyways for each server?
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:26:27Z
if its below 20 it werks
13:26
and if its not utf8
Avatar
eh ok
13:27
then do the old tw style and print utf8 as a box []
13:27
xd
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:27:30Z
you mean replace utf8 chars?
13:27
yea that was my initial attempt
Avatar
is bad approach tho
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:27:46Z
ye
Avatar
utf8 in consoles always pain
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:27:59Z
fixing utf8 was a nice thing todo
Avatar
i'll have breakfast now
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:28:22Z
its 15:28
13:28
stop drink
Avatar
Went to sleep at 7:30
13:28
didnt drink xd
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:28:43Z
sure
Avatar
look ddnet.tw
13:28
i finished airtemple
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:28:58Z
xd
Avatar
didnt drink
13:29
xd
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:29:09Z
wait u finished airtemple sober?
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:29:18Z
weirdo
Avatar
u didnt finish at all
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:29:39Z
04/07/2022, 04:47 AM: FRA Solo: airtemple (01:55)
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:29:56Z
blame timezone
13:30
its french timezone so its -6h
Avatar
i did fly to the legends 2 xd
13:30
most gay shit ever
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:30:40Z
fng > gores
Avatar
everything > gores
13:30
gores full time is boring af
13:31
ddrace full time = gud
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:31:32Z
farming on blchill 24/7 best
13:31
with vali? :D
13:31
wasnt he in the team
Avatar
No he was afk sitting at spawn
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:32:04Z
oh he ded then
Avatar
should sit afk in jail
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:32:09Z
i was racing w him yesterday
13:32
oof
Avatar
in BlmapChill
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:32:16Z
xd
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 13:32:19Z
ddos protected
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 14:02:15Z
dont ask me how but i fixed it
14:02
14:02
poggers
Avatar
show code
14:03
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 14:06:34Z
thats feature not bug :D
14:06
to "highlight" the selected server
Avatar
Avatar
[quakenet] ChillerDragon
to "highlight" the selected server
why dont u color it or smth
14:08
that looks weird
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 14:08:15Z
yea color didnt work
14:08
give it a try again soon(tm)
14:08
i wanted bold
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 14:09:29Z
but identation is also pretty pleasing feedback for now
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 14:29:00Z
14:29
I managed to get it bold. I was missing the indentation effect so I added it without breaking the columns
14:29
@fokkonaut mr opionion u like now?
14:30
omg dont mind servers.json in the bottom right corner xd
Avatar
ChillerDragon: stop botting
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 14:32:30Z
no proof -.-
Avatar
xd sure chillerbot.png is lyfe
16:01
poggers in the chat
16:01
poggers
16:01
Support for LLVM-based coverage instrumentation has been stabilized in rustc. You can try this out on your code by rebuilding your code with -Cinstrument-coverage, for example like this:
>
RUSTFLAGS="-C instrument-coverage" cargo build
16:01
BASED
Avatar
4619e825f3907772fac625b7398355fba1324066 is the first bad commit commit 4619e825f3907772fac625b7398355fba1324066 Author: c0d3d3v Steps to reproduce:
  • Spec someone in jao shooter
  • zoom out far
  • zoom in again
  • zoom not working anymore & trying to spec someone else doesn't work
@C0D3D3V
Avatar
Sorry if my question is dumb, I havent checked out the code at all, but would be possible to code Bullets to be able to unfreeze you?
Avatar
Jupstar βœͺ 2022-04-07 17:11:50Z
there already is such a feature
Avatar
no, there isnt
17:15
there are only the plasma guns
17:15
those can unfreeze u
Avatar
Jupstar βœͺ 2022-04-07 17:16:09Z
plasma bullets u mean?
Avatar
[quakenet] ChillerDragon BOT 2022-04-07 18:01:10Z
xd
18:01
@APFFF so yes there is a way
Avatar
Avatar
Jupstar βœͺ
plasma bullets u mean?
Yeah, not instant like the laser, with traveltime like the bullet
Avatar
Jupstar βœͺ 2022-04-07 18:02:31Z
yeah its not insteant
18:02
it shoots plasma bullets
Avatar
πŸŸ¦π‘€π’Ύπ“€π’Άπ‘”π‘’ π‘…π‘’π‘œπŸ’œ 2022-04-07 18:03:31Z
a new gun pls :U
Avatar
Jupstar βœͺ 2022-04-07 18:04:22Z
its a tile
18:04
lasers have travel time if you force wallshots
18:06
but yes for the weapon it would be possible too, pretty ez
Avatar
the name in code is plasma gun tho xd
19:18
yes, it would be possible as weapon too, i have that on my server
Avatar
would be so cool to disable hammer-unfreeze and use the gun for that
20:36
Like Teleport-Gun Tile
Avatar
u should add a tile that instead of kills you it bans u
Avatar
should delete it 😟 ?
Avatar
im not sure if anyone is happy about "build.zip" in the developer channel
Avatar
it's gone
Avatar
maybe a link is better
20:38
#off-topic is probably a better place for it honestly
Avatar
make sense
Avatar
Hey, i think it would be great if we had the ability to disable or why not change the displayed settings of the discord rich presence, can i make a PR for that? Or is it something you don't want to change? ive been thinking about this for so long. (edited)
Avatar
you can do that directly in discord, lol
Avatar
Yeah but it will desactivate it for all games
20:59
you can toggle it for individual games and also change their names
Avatar
@heinrich5991 @Learath2 @Jupstar βœͺ anyone want to review https://github.com/ddnet/ddnet/pull/4895 ? People keep losing their ranks because of this
I hope this doesn't give a chance to cheat. We also reset practice when killing a team, so loading can be considered as similar to killing? Checklist Tested the change ingame Provided scree...
Avatar
Looks sane to me
21:58
let me think about the edge cases for a min, then I'll merge
Avatar
mh we have a CI issue
23:02
The following packages have unmet dependencies: mariadb-server : Depends: mariadb-server-10.3 (>= 1:10.3.34-0ubuntu0.20.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
Avatar
meh, let me check
Avatar
The following packages have unmet dependencies: mariadb-server : Depends: mariadb-server-10.3 (>= 1:10.3.34-0ubuntu0.20.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages.

Checklist

  • [ ] Tested the change ingame
  • [ ] Provided screenshots if it is a visual change
  • [ ] Tested in combination with possibly related configuration options
  • [ ] Written a unit test if it works standalone, system.c especially
  • [ ] Cons...
23:37
b96b23d Reset practice when loading team (fixes #4894) - def- 2eb403b Merge pull request #4895 from def-/pr-practice-load - def-
Exported 201 message(s)