Commit graph

9072 commits

Author SHA1 Message Date
def c489fb61be After a char was killed stop processing further tiles 2019-03-28 23:29:34 +01:00
def 4171db48a9 Fix text render when a glyph is missing (fixes #1543)
Instead show □ (white square, 0x25a1) as replacement character

The old behaviour was to continue when a glyph was missing, not load
the glyph and then instead fill the bitmap with random garbage that was
still in the buffer. Introduced by https://github.com/ddnet/ddnet/pull/1081
2019-03-28 22:46:08 +01:00
def 9e25f4c113 Move out common font loading into method 2019-03-28 21:51:42 +01:00
bors[bot] a7f0763e54 Merge #1542
1542: Merge "Add Quad/Sound" + shortcut to add them at mouse position, add quads true to size r=def- a=12pm



Co-authored-by: 12pm <30786226+12pm@users.noreply.github.com>
2019-03-28 19:11:09 +00:00
12pm 427171bb17 Merge "Add Quad/Sound" + shortcut to add them at mouse position, add quads true to size 2019-03-28 13:41:07 +01:00
bors[bot] aa98bf824a Merge #1541
1541: Add non-destructive brush drawing r=def- a=12pm

New brush draw mode that doesn't override existing tiles. Empty brush still acts as an eraser. Button and ctrl+d shortcut to toggle it.

Co-authored-by: 12pm <30786226+12pm@users.noreply.github.com>
2019-03-26 18:48:24 +00:00
12pm 0abbba4c5d Add non-destructive brush drawing
New brush draw mode that doesn't override existing tiles. Empty brush still acts as an eraser. Button and ctrl+d shortcut to toggle it.
2019-03-26 19:19:25 +01:00
def e6f327ef06 Move ingame browser tabs all the way left 2019-03-26 17:38:46 +01:00
def 8908102536 Add cl_confirm_disconnect_quit_time (fixes #1530)
Number of minutes of active racing time before being asked to confirm
disconnecting, disconnecting dummy or quitting through GUI. Defaults to
20 minutes, -1 to disable, 0 to always enable.

Also removed confirmation to quit when in main menu, except when having
an unsaved map in editor.

Spectate and kill should already be safe thanks to server-side kill
protection.
2019-03-25 20:10:38 +01:00
def d31e9833f9 Escape during popup: Only make popup disappear
Not the menu. Otherwise when opening the menu again the popup will
reappear for one frame before disappearing.
2019-03-25 20:01:10 +01:00
bors[bot] c559fa3201 Merge #1533
1533: Switch verified icon to checkmark again (by MiM) r=heinrich5991 a=def-

As proposed in https://forum.ddnet.tw/viewtopic.php?t=6783&p=67593#p67593

Looks more discreet and more teeish to me and not like some overloaded DDNet advertisement.

![screenshot-20190322@072032](https://user-images.githubusercontent.com/2335377/54804251-0deb8680-4c73-11e9-8163-65780e624a47.png)
![screenshot-20190322@072006](https://user-images.githubusercontent.com/2335377/54804252-0e841d00-4c73-11e9-81fe-60a02bfa026f.png)


Co-authored-by: Dennis Felsing <dennis@felsin9.de>
2019-03-25 11:56:46 +00:00
bors[bot] 2e35e10ab7 Merge #1537
1537: thread_sleep: ignore signal interruption r=heinrich5991 a=def-

For example when closing client.

Co-authored-by: def <dennis@felsin9.de>
2019-03-24 22:48:58 +00:00
def bf576723a3 Add KoG tab in server browser
- As requested by qshar and KoG players
- Similar to DDNet tab
- Info fetched from servers-kog entry from https://info.ddnet.tw/info
- Also supports countries and types
- Doesn't inform whether map has been finished
- Generalized the code a bit but it's still ugly
- Depends on #1533, also shows KoG servers as official/verified
2019-03-24 23:15:40 +01:00
def ea6b741eb8 thread_sleep: ignore signal interruption 2019-03-24 23:14:37 +01:00
bors[bot] 958778b441 Merge #1531
1531: Don't rotate static game tiles and fix switch rotation r=def- a=12pm

Should be handy for mapping.
Can be disabled by activating unused tiles (don't think it's worth a separate toggle and if you want to do it, you're doing something unusal)

Co-authored-by: 12pm <30786226+12pm@users.noreply.github.com>
2019-03-24 19:43:27 +00:00
bors[bot] 71a776f5f0 Merge #1535
1535: Default layer names to the selected image/sound r=def- a=12pm

And don't paste default names into the edit field

Co-authored-by: 12pm <30786226+12pm@users.noreply.github.com>
2019-03-24 19:32:42 +00:00
12pm 4ca69a39de Default layer names to the selected image/sound
And don't paste default names into the edit field
2019-03-24 03:22:29 +01:00
12pm dff702bd2c Don't rotate static game tiles and fix switch rotation
Should be handy for mapping.
Can be disabled by activating unused tiles (don't think it's worth a separate toggle and if you want to do it, you're doing something unusal)
2019-03-23 01:11:32 +01:00
Dennis Felsing 1b34283001 Switch verified icon to checkmark again (by MiM) 2019-03-22 07:14:30 +01:00
Dennis Felsing 05f927b8ca
Merge pull request #1507 from ddnet/chat-command-autocomplete
Autocomplete chat commands (fixes #1504)
2019-03-21 19:12:52 +01:00
bors[bot] 4c7b6f949e Merge #1528
1528: str_format: always return length of written string r=heinrich5991 a=def-

As deducted from https://github.com/ddnet/ddnet/pull/1527

Co-authored-by: def <dennis@felsin9.de>
2019-03-21 13:09:57 +00:00
def d9804f5142 str_format: always return length of written string
Quoting the man page of vsnprintf:

RETURN VALUE
  Upon successful return, these functions  return  the  number  of  characters  printed
  (excluding the null byte used to end output to strings).

  The functions snprintf() and vsnprintf() do not write more than size bytes (including
  the terminating null byte ('\0')).  If the output was truncated due  to  this  limit,
  then  the  return  value  is the number of characters (excluding the terminating null
  byte) which would have been written to the final string  if  enough  space  had  been
  available.  Thus, a return value of size or more means that the output was truncated.
  (See also below under NOTES.)

  If an output error is encountered, a negative value is returned.

[...]

  The glibc implementation of the functions snprintf() and vsnprintf() conforms to  the
  C99  standard,  that  is, behaves as described above, since glibc version 2.1.  Until
  glibc 2.0.6, they would return -1 when the output was truncated.
2019-03-21 13:39:25 +01:00
bors[bot] 0072c9843c Merge #1527
1527: Leave space for \0 byte (fixes #1526) r=heinrich5991 a=def-



Co-authored-by: def <dennis@felsin9.de>
2019-03-21 12:12:45 +00:00
bors[bot] 894a663ffe Merge #1479
1479: Store artifacts from CircleCI r=def- a=heinrich5991

Fixes #1478.

Co-authored-by: heinrich5991 <heinrich5991@gmail.com>
2019-03-21 06:35:15 +00:00
bors[bot] 23269c3ac4 Merge #1529
1529: Don't enforce own votes when moderating r=def- a=12pm

It's counterintuitive, and hence way too risky

Co-authored-by: 12pm <30786226+12pm@users.noreply.github.com>
2019-03-21 06:24:12 +00:00
12pm 34c99f5944 Don't enforce own votes when moderating
It's counterintuitive, and hence way too risky
2019-03-21 02:57:22 +01:00
def 82f9474eb4 Leave space for \0 byte (fixes #1526) 2019-03-20 18:27:08 +01:00
bors[bot] 664a425b9d Merge #1525
1525: Only print team join message when not in team already (fixes #1524) r=heinrich5991 a=def-



Co-authored-by: Dennis Felsing <dennis@felsin9.de>
2019-03-20 13:07:38 +00:00
Dennis Felsing 1add4a0819 Only print team join message when not in team already (fixes #1524) 2019-03-20 14:01:32 +01:00
Dennis Felsing 290b0b669c
Merge pull request #1508 from ddnet/cmake-build-type-error
cmake: Warn on unknown CMAKE_BUILD_TYPE (fixes #1334)
2019-03-20 07:45:23 +01:00
Dennis Felsing abe9f6f5a9
Merge pull request #1518 from ddnet/fetch-info
Demo browser: Make Fetch Info a checkbox instead
2019-03-20 07:45:12 +01:00
Dennis Felsing 8b68a2859a
Merge pull request #1509 from ddnet/error-checking
More error checking in system.c (fixes #1317)
2019-03-20 07:44:12 +01:00
bors[bot] b1f3692980 Merge #1514 #1521 #1522 #1523
1514: Square and center icons before rendering them on button r=Learath2 a=def-



1521: Remove unused norank icon from browse_icons.png r=heinrich5991 a=def-



1522: Reset authed level in client r=Learath2 a=def-

As reported by jao on Discord:

22:26 jao @Learath2 client auth level needs to reset on server join or something
22:28 jao because other servers don't send it

1523: Make updating nameban reason work r=def- a=12pm



Co-authored-by: def <dennis@felsin9.de>
Co-authored-by: 12pm <30786226+12pm@users.noreply.github.com>
2019-03-19 23:08:37 +00:00
heinrich5991 8567b94c9f Store artifacts from CircleCI 2019-03-19 23:36:59 +01:00
def 1e4890c499 More error checking in system.c (fixes #1317) 2019-03-19 23:16:29 +01:00
12pm 9f4f06e995 Make updating nameban reason work 2019-03-19 22:54:16 +01:00
def 9ea9a43f13 Reset authed level in client
As reported by jao on Discord:

22:26 <jao> @Learath2 client auth level needs to reset on server join or something
22:28 <jao> because other servers don't send it
2019-03-19 22:29:41 +01:00
bors[bot] 9d623cb23c Merge #1516 #1517
1516: Remove useless comments r=heinrich5991 a=def-

Not sure if we want to do this kind of cleanup

1517: Fix rendering of checkbox x r=heinrich5991 a=def-

old:
![screenshot-20190319@163151](https://user-images.githubusercontent.com/2335377/54619252-9811d000-4a64-11e9-92cf-df3e3c325566.png)

new:

![screenshot-20190319@163137](https://user-images.githubusercontent.com/2335377/54619237-91835880-4a64-11e9-9775-7625bbcd3cb3.png)

Co-authored-by: def <dennis@felsin9.de>
2019-03-19 21:15:40 +00:00
def 985c0153c7 cmake: Warn on unknown CMAKE_BUILD_TYPE (fixes #1334) 2019-03-19 22:14:58 +01:00
def 0535f31bea Remove unused norank icon from browse_icons.png 2019-03-19 21:54:47 +01:00
bors[bot] dda515b47d Merge #1519
1519: Add vote_unmute and display on it chat (Fixes #1376) r=def- a=Ryozuki

Fixes #1376

Co-authored-by: Ryozuki <ryo@ryozuki.xyz>
2019-03-19 19:32:48 +00:00
Ryozuki 6ed3276d20
fix formatting 2019-03-19 20:32:01 +01:00
Ryozuki e00e9f126a
add vote_mutes 2019-03-19 20:25:21 +01:00
Ryozuki 43a1990e5d
ConVoteUnMute -> ConVoteUnmute 2019-03-19 20:18:11 +01:00
Ryozuki d469654629
add vote_unmute and display on chat 2019-03-19 20:07:33 +01:00
Dennis Felsing ed657379ac
Merge pull request #1511 from ddnet/modifiable-authed-color
Make cl_authed_player_color modifiable
2019-03-19 19:31:07 +01:00
def 22f278fdb8 Demo browser: Make Fetch Info a checkbot instead
And persist the result. Helps with the workflow described by Shyzo on
Discord:

> I mean after i press ctrl-f or fetch info. then i want to sort by marker (from ... to 0) and just delete every demo without a marker. either in a whole (not possible i think) or just one by one. but I think after deleting one demo the order of demos change again
> so i have to fetch info again, delete one. fetch info again. delete one
> and so on
2019-03-19 18:28:10 +01:00
Dennis Felsing f46fc84c39
Merge pull request #1512 from rffontenelle/patch-1
Document build arguments in README.md
2019-03-19 17:46:26 +01:00
Rafael Fontenelle f5c397b270
Improvements to build arguments documentation 2019-03-19 13:35:53 -03:00
def 04d67c02f2 Square and center icons before rendering them on button 2019-03-19 17:26:36 +01:00