Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
attack priority list mobs within attack range, even if there exist
higher priority targets outside.
|
|
****
mana/plus!150
|
|
Squashed with:
* statuswindow: I like this way better
****
mana/plus!151
|
|
****
mana/plus!147
|
|
Not sure how to trigger this one, couldn't do it with a few simple
tests.
****
mana/plus!149
|
|
2025-03/22/#Debug.log-[19:38:37] Wrong actual or planned inbound packet size!. Packet id: 433(0x1b1), Planned size: 7, Actual size: 4
2025-03/22/#Debug.log:[19:38:52] You picked up 1 [@@760|Overlord's Helmet@@].
****
mana/plus!146
|
|
|
|
bb= bounding box
|
|
seems to skip beings with info if stopattack is active or if they are
marked as unselectable (like hammocks in ML)... huh?
|
|
as without filtering, priority and closestPriority are always the same
|
|
making special handling before first suitable being is found unnecessary.
|
|
being (down from 3x)
Note: the filter used priorityMobs (instead of priorityMobsMap).
The former seems to be the std::set variant of the latter, but I can't
find where either are filled. It does work in practice, however...
|
|
|
|
distance criteria.
This should also resolve a theoretical bug if there is a non-ignored
being within range, but something out of range has priority
Cleanup addednum: rename d to distSq
|
|
This resolves at least three instances where squared distance was
compared with non-squared one, two cases of maxDist and no squaring of
getDistance result.
|
|
Cheaper checks reordered to be checked first, removed squared root.
****
mana/plus!144
|
|
(no quantity display reserved for unlimited stock shops)
Depends on !140 due to merge conflicts.
****
mana/plus!141
|
|
distance before (potentially) asking pathfinder.
Pathfinder may get called in the validateBeing() call, can't tell yet.
Squashed with:
* Fix linter
This test and the below static_cast looks like dynamic_cast should've
been used.
****
mana/plus!143
|
|
Squashed with:
* Fix lint.. just revert previous state, I'll deal with it when I make
things pass Positions
****
mana/plus!142
|
|
****
mana/plus!140
|
|
@jesusalva asked what to rename it to, here:
https://forums.themanaworld.org/viewtopic.php?t=21691
Squashed with:
* Rename --without-manaversegame to --without-gameclient
This makes the most sense, I think. Jes agrees, too.
* Rename --without-manaplusgame to --without-manaversegame
Split off from !45: Rename the program from ManaPlus to ManaVerse.
****
mana/plus!138
Co-authored-by: jak1 <jak1@themanaworld.org>
|
|
Reported by Thorbjorn
****
mana/plus!129
Approved-by: Thorbjørn Lindeijer <bjorn@lindeijer.nl>
|
|
Split off from mana/plus!45: "Rename the program from ManaPlus to ManaVerse."
+POTFILES.in CI fix
****
mana/plus!132
Co-authored-by: Fedja Beader <fedja@protonmail.ch>
|
|
****
mana/plus!139
|
|
This makes sure that ml/clientdata!180 never happens again via message
in Debug tab.
The legacy numeric ID method could be deprecated. Maybe after release.
The client uses full attribute names since 2016.
****
mana/plus!137
|
|
(Fedja) I'm suspecting that some CI will break on this.
Split off from !45: Rename the program from ManaPlus to ManaVerse.
****
mana/plus!135
Co-authored-by: Fedja Beader <fedja@protonmail.ch>
|
|
****
mana/plus!136
|
|
Tested as part of !136, pushed to master
|
|
****
mana/plus!134
|
|
while processing mana/plus!132 I spotted what looked like an ommision of several
src/progs/{manaplus,manaverse} files from POTFILES.in, but as it turned
out, they have no strings marked for translation (start with "_(").
Squashed with:
* Just force LC_COLLATE=C and commit POTFILES.in changes required to make
this happen. Don't know how to repro CI's sorting locally and it's
pointless as my local sort is clearly wrong. See traderecv.cpp's position
for why.
* The correct locale variable to set should be LC_COLLATE, which is
probably set by LANG on all platforms and so this will fail, again.
* sort is still not preserving the order of files :/
* Ensure the order of files remains the same regardless of platform.
* POTFILES update to pass CI :)
****
mana/plus!133
|
|
Split from mana/plus!28 and rebased on master by specing.
****
mana/plus!131
|
|
In theory split out from mana/plus!28, in practice I (specing)
just ran sed myself instead of bothering with splitting out changes.
****
mana/plus!130
|
|
Squashed with:
* Add build instructions link
* CMake is unsupported (for now)
* Change IRC link to irc-only channel.
* Update text-only README to match
* Make the point clearer. And, Bitbucket is dead by now?
* Nah, I'll leave the strange statement about licensing and bad platforms
in, for now. It's got a point!
* Remove strange statement about licensing and bad platforms
* Update note, change in-game support text
* RIP FreeNode
* Fix fix + add in-game "contact"
* Reorganise the support section
* Remove some duplicates and reword the command help section (which should
probably be removed. This is not the 1985 any more)
* Comment out nonfunctional CI badges
* reorder builds and CI status
* Remove version info.. it's 6 years old anyways. Wait... 6 years since last release?!
* Shorten the CI status badges
* Update main CI status button to point to pipelines page
* Try more compact form on a single line (like before)
* Add more direct download links when clicking CI status buttons
* Add myself to AUTHORS
* Change CI link to point to TMW gitlab
+ remove undress from help.. players don't need that.
* Fix forum link - was pointed to general player talk and not https.
****
mana/plus!127
|
|
Autoconf manual states that CXXFLAGS is a user variable and should not
be overriden, so I did not use AX_APPEND_COMPILE_FLAGS for this. Thus,
there are no checks if the compiler supports it, but also the builder can
override this flag by passing another flag that overrides it on the
command line. Okay, this is now way too theoretical.
Indeed, the override happens with ./configure 'CXXFLAGS=-std=c++17'
(both flags in final command line)
Do note:
- The standard was not explicitly set for some builds (thus compiler
default was used)
- The default on my own box is C++17
- I'm setting C++11 as that's required by my previous change. Upgrade to
C++17 is deferred to until it becomes required.
- The use of CPPFLAGS could be reviewed... they may be used incorrectly
(instead of CXXFLAGS). I would really like to get all the builders going
before requirements are raised.
- CI cleanup would be nice
- wish 4144 would return.
****
mana/plus!128
|
|
Tile coordinates dance in pairs, so let's pair them up.
also grows exe size by about 3K, hope this will go away when the rest is
converted to Position as well. Note: on my local debug build only. Not on gcc10 CI.
Squashed with:
* Should it be mNavigateDest or mNavigateTo? Hmm, the jury is still out
there ...
****
mana/plus!116
|
|
https://git.themanaworld.org/mana/plus/-/jobs/183682#L81
the ORs were not groupped together in the find call, resulting in only
*.cc files being processed.
> Total errors found: 3463
Well, this will take a while to fix :disappointed: .
Squashed with:
* Trim unnecessary excludes, for there is no matching error to exclude.
Fine-tune the remaining ones.
* The grep below wasn't working as find exited nonzero and code that was
supposed to handle that wasn't working as well as expected
****
mana/plus!126
|
|
line-length limits.
Introduced in mana/plus!88
and exposed in mana/plus!126
Pushing directly to master from top of !126 before merging 126.
|
|
+Update CI job from Debian Buster to Bullseye. Buster's Py3.7 is too old for cpplint.
Squashed with:
* Update linters job to debian bullseye
* Force use of python3
* Try upgrade to python3. Other scripts will probably break.
****
mana/plus!124
|
|
From updating to buster->bullseye in !124: nsiqcppstyle was silently failing, too >_>
Squashed with:
* I always forget newlines at end of printfs.
* Add sore thumb to remind me of untreated wounds beneath bandages
* nsiqcppstyle was silently failing, too >_>
*Explicitly call python2
*Grep will exit non-zero if it finds nothing. *fix*
****
mana/plus!125
|
|
Squashed with:
* Split out change
* Let's get this to properly fail, first.
put unfiltered file name into a variable and append .log to make it
viewable online + direct URL for cpplint.py like before
IT's LOGFILE, not ERRFILE.. sigh
Nevermind, it actually is ERRFILE + add unfiltered version to init
Downgrade version, py3 later
Let's get unfiltered log to print if find fails
Related: mana/plus!122
****
mana/plus!123
|
|
Google has removed cpplint.py three weeks ago and this has been silently failing since then.
See also mana/plus!123
****
mana/plus!122
|
|
Addendum to !89 (and !117)
Amusing: putting this line before the .clear() grows the exe by 40 bytes.
****
mana/plus!118
|
|
****
mana/plus!119
|
|
****
mana/plus!120
|
|
Sometimes we're curious about the impact of a change on code size, this might satisfy us.
****
mana/plus!121
|
|
Pointless change, I know.
****
mana/plus!115
|
|
****
mana/plus!113
|
|
****
mana/plus!114
|