turleypol
24c8c8b92f
Tidy modernize for loops ( #862 )
...
* trigger loop convert
* Automated clang-tidy change: modernize-loop-convert
* fixed refactor
* Automated clang-tidy change: modernize-loop-convert
* compile
* first look through
* fixes and start to use a few ranges
* revert autogenerated file
* compilation fix
* second pass
* renamed loop variable
---------
Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
2026-01-31 09:14:02 +01:00
turleypol
bce1154d7a
ClangTidy readability-else-after-return ( #857 )
...
* trigger tidy
* Automated clang-tidy change: readability-else-after-return
* compile test
* rerun
* Automated clang-tidy change: readability-else-after-return
* trigger..
* Automated clang-tidy change: readability-else-after-return
* manually removed a few
* Automated clang-tidy change: readability-else-after-return
* removed duplicate code
* fix remaining warnings
* fixed scope
---------
Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
2026-01-18 09:35:52 +01:00
turleypol
21577d8e5b
Clang Tidy concat namespaces ( #855 )
...
* tidy
* Automated clang-tidy change: modernize-concat-nested-namespaces
* compile test
* fix namespace
---------
Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
2026-01-17 10:30:21 +01:00
turleypol
17911b23aa
impptr_if method/impptrIf function to test and return Imp derived classes ( #685 )
...
* impptr_if method/impptrIf function to test and return Imp derived
classes.
Simplified a few spots
* more usage of impptr
* fix makeDouble
* fix warnings
* more warnings
* more warnings..
* replaced new/remaining casts
* non owning imp* needs to be protected
* silly me
2024-08-07 22:14:52 +02:00
turleypol
ec91d7cc3c
Codecleanup from #581 ( #583 )
...
* is_visible_to_me checks now also in_visual_range
added obj::distance_to
fixed warnings
* no magic numbers for snprintf
2023-12-26 17:47:40 +01:00
Kevin Eady
12d6186d10
Script option enhancements ( #118 )
...
* Fix SCRIPTOPT_CAN_ACCESS_OFFLINE_MOBILES
* Add SCRIPTOPT_SURVIVE_ATTACHED_DISCONNECT
* wip beginning work on templatization
* Use PolModule in pol-specific modules
* wip, creating PolModule with getXYZParam
* wip 1, moving getXYZ to UOExecutor
* compilable with PolObjectImp / PolApplicObj
* add type guard
* wip, change signatures
change signatures of script_method, script_method_id, and
custom_script_method
* compilable (windows)
* linux fixes
* namespace fixes
* remove uoexhelp
* formatting
* compilable
- move can_access_offline_mobiles back to uoexec
- add guildscrobj and partyscrobj sources
- move EGuildRefObjImp and EPartyRefObjImp
- wip, implement asUOExec
- formatting uoexec.cpp,.h
* finish uoexec() helper
* some cleanup
2020-02-08 09:21:35 +01:00
turleypol
7e8f92bc85
rewrote module function generation, maybe this works
2019-11-10 22:04:08 +01:00
Kevin Eady
ca850a0c76
project refactoring
2019-10-18 21:32:30 +02:00
Kevin Eady
5c0fb7c4ea
First support for .em-parsed module function tbls
...
- Create module parser custom target
- Include generated tables in .cpp sources
- Standardize module function names based off .em names
2019-10-17 22:37:26 +02:00
Kevin Eady
b55e852a5b
wip 1
2019-10-17 19:08:49 +02:00
turleypol
3f6f34fe1a
fixed linelength
2018-10-30 21:42:27 +01:00
turleypol
8de143f6af
EScript Tests are now implemented completly in cmake
...
use ctest or target "test"
2018-10-30 21:23:40 +01:00
esdete
dc2d29b433
NULL to nullptr
2018-07-31 14:30:29 +02:00
turleypol
3afc41241b
CMake on windows ( #48 )
...
CMake can now also be used for windows
2018-02-24 22:34:55 +01:00
turleypol
dbb25bdb62
Include and buildsystem cleanup ( #45 )
...
Include cleanup
Reworked buildsystem (Linux only)
Removed dynamic libs, Linux now again uses static linking (like windows)
2018-01-29 21:55:48 +01:00
Fernando Rozenblit
eb34290222
Cleanup for modules' function tables
2017-01-24 21:57:16 +01:00
turley
f9c3db9e41
Modules share the same (helper) template base class
...
Optimize function name search for all modules not only uo by using an additional map, replaced c array with vector for functionsdef.
Simplified pragma pack order. (MSVC version is supported in all
compilers)
Removed compilerassert.h (asserteql,..) replaced with static_assert
Removed some old #ifs
2016-12-20 23:53:32 +01:00
turley
4d9aa75f3b
Corrected definition order in module defs
2016-12-14 21:50:23 +01:00
turley
189cad3479
Formating everything
...
Authors are not forced to use the clang-format setting, but should
atleast be inspired by the style.
The only thing which is now not allowed are tabs for ident/alignment!
2016-02-19 19:26:35 +01:00
turley
ed7b16b233
normalized lineendings
2016-02-11 22:54:43 +01:00
Gabriele Tozzi
d1ac902926
Documentation: reformatted headers for DoxyGen
2016-01-28 14:52:40 +01:00
Gabriele Tozzi
530790c8f8
Comparison operators refactor: better handle weird cases, cleaning
...
- obj.isLesserThan() and obj.ieEqual() are now replaced by < and ==
- Removed obsolete isLT(), isLE(), isGT(), isGE()
- Also implemented comparison operators for BObjectImp
- These operators may now be fully overriden in child classes
- Default implementations are derived from == and < operators
- As a general rule (that fit into "undefined" behavior":
-- Objects are == if having the same address
-- Objects are < based on their type ID, except of Error and Uninit
that always are < everything else.
-- Objects are supposed to implement their own < and fall back to
base class. If not implemented, as a last fallback, the object's
address in memory is used to do the comparison
- Added test case for comparison operators
2016-01-24 22:22:45 +01:00
Gabriele Tozzi
bfe3a9875b
Fixing FormatRealToString() doc and tests. All tests now ok on Windows
2016-01-23 04:49:10 +01:00
frozenblit
1f0f7581dd
Some more cleanups
2014-11-03 01:29:21 +01:00
frozenblit
943b820eba
More and more cleanups
...
Added some missing include guards, corrected wrong include guard names.
Removed more stl_inc.h includes.
2014-11-02 19:40:40 +01:00
frozenblit
71df10d0db
Fixing more unchecked returns
...
Ignored a return in Math::Abs(), fixed unchecked return for flags in
Npc::TurnToward().
Two others in the packet object: SetUnicodeString() and
SetUnicodeStringFlipped(), neither was checking if the conversion from
array to UC was working.
2014-10-27 22:45:58 +01:00
turley
99d7dc3037
namespaces...finally :)
...
Hard part is finished every file is touched. Namespaces are currently rough named by directory name.
Maybe we could split it more
2013-12-21 09:10:46 +00:00
turley
4f053bc563
minor performance stuff + next try to fix memory problem
2011-05-16 14:48:11 +00:00
turley
e10cd27cea
sync: shini - long to int (prerequisit for 64-bit)
2010-03-29 14:52:03 +00:00
turley
7c54d3175f
gcc fixes, minor cleanup
2009-11-06 16:07:47 +00:00
muaddib_pol
c301d80817
+ code organizational updates in the modules
...
+ Updated to-do and post-build
+ Renamed the mkdist7 and .vc7 since works on vc9 too just fine.
2009-09-06 21:42:46 +00:00
muaddib_pol
49072c3c41
+ To-Do file updates
...
+ Beginning of Mobile and Module source file organization
+ Makefile.Gcc updates
2009-09-06 14:11:24 +00:00