a167f0e
Do not force infinite ammo for ddrace gametypes - ChillerDragon
8efab46
Allow ammo count -1 over the network to inidcate infinite ammo - ChillerDragon
f50bec8
Snap -1 ammo count to indicate infinite ammo to the client - ChillerDragon
5162cbe
Merge pull request #9557 from ChillerDragon/pr_ddr_ammo - heinrich5991[build] /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks/ApplicationServices.framework/Frameworks/QD.framework/Headers/ColorSyncDeprecated.h:1000:41: note: 'CMProfileRef' has been explicitly marked deprecated here
[build] 1000 | typedef struct OpaqueCMProfileRef* CMProfileRef DEPRECATED_IN_MAC_OS_X_VERSION_10_6_AND_LATER;
[build] |
If-Modified-Since
support, you can opt out using SkipByFileTime(false)
.
Downloaded maps are now downloaded to a filename like name.map.123.tmp.123.tmp
which isn't really what one wants, but also doesn't hurt.
struct A {
a: i32,
b: i32,
}
impl A {
pub fn hello(&self, other: i32) -> i32 {
return self.a * other;
}
pub fn set_a(&mut self, value: i32) {
self.a = value;
return;
}
}
pub fn main() -> i32 {
let mut x: A = A {
a: 2,
b: 3,
};
x.set_a(4);
return x.a;
}
this compiles in the lang im making at work struct A {
a: i32,
b: i32,
}
impl A {
pub fn hello(&self, other: i32) -> i32 {
return self.a * other;
}
pub fn set_a(&mut self, value: i32) {
self.a = value;
return;
}
}
pub fn main() -> i32 {
let mut x: A = A {
a: 2,
b: 3,
};
x.set_a(4);
return x.a;
}
this compiles in the lang im making at work struct A {
a: i32,
b: i32,
}
impl A {
pub fn hello(&self, other: i32) -> i32 {
return self.a * other;
}
pub fn set_a(&mut self, value: i32) {
self.a = value;
return;
}
}
pub fn main() -> i32 {
let mut x: A = A {
a: 2,
b: 3,
};
x.set_a(4);
return x.a;
}
this compiles in the lang im making at work 435e357
Add confirmations for closing tabs & editor. - Jupeyy
d3b3b4d
Add simplistic server settings panel. - Jupeyy
377d80c
Add some icons to file dialog. - Jupeyy
3b49989
Add missing logic for speedup & switch layers. - Jupeyy
03bd892
Small chat improvements - Jupeyy
6aa63c7
Add proper physics overlays - Jupeyy
76d0ff9
Prepare actions for meta data changes. - Jupeyy
05ef0f3
Merge pull request #86 from Jupeyy/pr_editor_improvements3 - Jupeyyvoid CAutoMapper::Proceed(CLayerTiles *pLayer, CLayerTiles *pGameLayer, int ReferenceId, int ConfigId, int Seed, int SeedOffsetX, int SeedOffsetY)
// [ ... ]
for(size_t k = 0; k < pIndexRule->m_vModuloRules.size() && RespectRules; ++k)
{
CModuloRule *pModuloRule = &pIndexRule->m_vModuloRules[k];
if((x + pModuloRule->m_OffsetX) % pModuloRule->m_ModX == 0 && (y + pModuloRule->m_OffsetY) % pModuloRule->m_ModY == 0)
{
RespectRules = false;
}
}
// already defined code below, just for context
if(RespectRules &&
(pIndexRule->m_RandomProbability >= 1.0f || HashLocation(Seed, h, i, x + SeedOffsetX, y + SeedOffsetY) < HASH_MAX * pIndexRule->m_RandomProbability))
{
CTile Previous = *pTile;
pTile->m_Index = pIndexRule->m_Id;
pTile->m_Flags = pIndexRule->m_Flag;
pLayer->RecordStateChange(x, y, Previous, *pTile);
}
(x + pModuloRule->m_OffsetX) % pModuloRule->m_ModX == 0 && (y + pModuloRule->m_OffsetY) % pModuloRule->m_ModY == 0)
But if I set the == to != it doesn't set RespectRules to false anywhere.Error running link command: no such file or directorymake[2]: *** [CMakeFiles/steam_api.dir/build.make:101: libsteam_api.a] Error 2
make[1]: *** [CMakeFiles/Makefile2:399: CMakeFiles/steam_api.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
when compiling ):cmake; <make command>
u can do cmake; cmake --build
and it will do it intelligentlycmake; <make command>
u can do cmake; cmake --build
and it will do it intelligently ewan@machine ~/ddnet-rs (main)> cargo run
warning: /home/ewan/ddnet-rs/Cargo.toml: file `/home/ewan/ddnet-rs/src/lib.rs` found to be present in multiple build targets:
* `lib` target `ddnet_rs`
* `bin` target `ddnet-rs`
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.31s
Running `target/debug/ddnet-rs`
[2025-01-23T20:12:08Z INFO fs] Found config dir in "/home/ewan/.config/ddnet-rs-alpha"
[2025-01-23T20:12:08Z WARN thread_priority] Couldn't set the priority for the thread with Rust Thread ID ThreadId(7) named Some("backend-thread"): OS(13)
[2025-01-23T20:12:08Z INFO graphics_backend::backend_thread] graphics backend thread exited: libvulkan.so.1: cannot open shared object file: No such file or directory
[2025-01-23T20:12:08Z INFO xkbcommon_dl] Failed loading `libxkbcommon.so.0`. Error: CantOpen(DlOpen { desc: "libxkbcommon.so.0: cannot open shared object file: No such file or directory" })
[2025-01-23T20:12:08Z INFO xkbcommon_dl] Failed loading `libxkbcommon.so`. Error: CantOpen(DlOpen { desc: "libxkbcommon.so: cannot open shared object file: No such file or directory" })
thread 'main' panicked at /home/ewan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winit-0.30.8/src/platform_impl/linux/wayland/seat/keyboard/mod.rs:300:41:
called `Result::unwrap()` on an `Err` value: XKBNotFound
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
ewan@machine ~/ddnet-rs (main)> cargo run
warning: /home/ewan/ddnet-rs/Cargo.toml: file `/home/ewan/ddnet-rs/src/lib.rs` found to be present in multiple build targets:
* `lib` target `ddnet_rs`
* `bin` target `ddnet-rs`
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.31s
Running `target/debug/ddnet-rs`
[2025-01-23T20:12:08Z INFO fs] Found config dir in "/home/ewan/.config/ddnet-rs-alpha"
[2025-01-23T20:12:08Z WARN thread_priority] Couldn't set the priority for the thread with Rust Thread ID ThreadId(7) named Some("backend-thread"): OS(13)
[2025-01-23T20:12:08Z INFO graphics_backend::backend_thread] graphics backend thread exited: libvulkan.so.1: cannot open shared object file: No such file or directory
[2025-01-23T20:12:08Z INFO xkbcommon_dl] Failed loading `libxkbcommon.so.0`. Error: CantOpen(DlOpen { desc: "libxkbcommon.so.0: cannot open shared object file: No such file or directory" })
[2025-01-23T20:12:08Z INFO xkbcommon_dl] Failed loading `libxkbcommon.so`. Error: CantOpen(DlOpen { desc: "libxkbcommon.so: cannot open shared object file: No such file or directory" })
thread 'main' panicked at /home/ewan/.cargo/registry/src/index.crates.io-6f17d22bba15001f/winit-0.30.8/src/platform_impl/linux/wayland/seat/keyboard/mod.rs:300:41:
called `Result::unwrap()` on an `Err` value: XKBNotFound
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
MAX_CLIENTS = 128
MAX_CLIENTS = 128
wordlist.txt
, no idea where that comes from thoughwordlist.txt
, no idea where that comes from though wordlist.txt
, no idea where that comes from though called
Result::unwrap() on an
Err value: failed to load default files for "skins/": requested sound file for default not found: ground_jump_001
`
(edited)called
Result::unwrap() on an
Err value: failed to load default files for "skins/": requested sound file for default not found: ground_jump_001
`
(edited)2025-01-23 12:55:48 E png: libpng internal failure: png_create_read_struct failed.
2025-01-23 12:55:48 E png: failed to load image from file. filename='editor/checker.png'
2025-01-23 12:55:48 E png: libpng internal failure: png_create_read_struct failed.
2025-01-23 12:55:48 E png: failed to load image from file. filename='editor/cursor.png'
2025-01-23 12:55:48 E png: libpng internal failure: png_create_read_struct failed.
(edited)png_create_read_struct
which are nullptr
right now: https://refspecs.linuxbase.org/LSB_3.1.1/LSB-Desktop-generic/LSB-Desktop-generic/libpng12.png.create.read.struct.1.htmlpng_create_read_struct
which are nullptr
right now: https://refspecs.linuxbase.org/LSB_3.1.1/LSB-Desktop-generic/LSB-Desktop-generic/libpng12.png.create.read.struct.1.html Application built with libpng-1.4.12 but running with 1.6.43
-DPREFER_BUNDLED_LIBS=ON
which I thought is what you want#define PNG_LIBPNG_VER_STRING "1.6.43"
in png.h
, so while this file is up-to-date the compiled library is notpng_create_read_struct
function fails, e.g. due to libpng version mismatch.
-- Found PNG: /Users/runner/work/TaterClient-ddnet/TaterClient-ddnet/ddnet-libs/png/mac/libfat/libpng16.16.dylib
and
-- * PNG not found (using bundled version)
so how is it getting libpng-1.4.12. I confirmed the libpng16.16.dylib version is 1.6.43true
and false
true
and false