aboutsummaryrefslogtreecommitdiff
path: root/modules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-01136-136/+136
| | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
* WebM: Fix compilation on Linux/X11 ARM platformBłażej Szczygieł2016-12-081-3/+5
|
* Remove incomplete Inverse Kinematic moduleRémi Verschelde2016-12-046-492/+0
| | | | | | | | | The plan is to implement IK properly in the core engine for version 3.1, together with ragdolls in the Skeleton node to let them reuse the same limits and constraints. Therefore we remove this module as part of the API breakage in 3.0, so that we are not limited by staying compatible with it in 3.1.
* WebM: Fix iPhone x86 compilationBłażej Szczygieł2016-11-161-3/+4
|
* Add "Positive" operator to VisualScriptGeorge Marques2016-11-111-1/+6
|
* Merge pull request #6802 from henriquelalves/masterRémi Verschelde2016-11-112-2/+6
|\ | | | | Added small modification on gdscript parser to allow users insert '+' before variables
| * Added small modification on parser for '+'Henrique L. Alves2016-10-222-2/+6
| |
* | Merge pull request #7028 from bojidar-bg/gdscript-multiline-comment-fixupRémi Verschelde2016-11-061-1/+10
|\ \ | | | | | | Make GDScript parser ignore floating strings in class definition
| * | Make GDScript parser ignore floating strings in class definitionBojidar Marinov2016-11-031-1/+10
| | | | | | | | | | | | Fixes #1320
* | | Merge pull request #7019 from vnen/rename-winrt-uwpRémi Verschelde2016-11-064-12/+12
|\ \ \ | | | | | | | | Rename WinRT platform to UWP
| * | | Rename remaining WinRT references to UWPGeorge Marques2016-11-032-2/+2
| | | |
| * | | Rename WinRT files to UWPGeorge Marques2016-11-034-10/+10
| | | |
* | | | opus: Move public headers to match system installRémi Verschelde2016-11-033-2/+3
|/ / /
* | | scons: Reorder options for clarityRémi Verschelde2016-11-0311-19/+19
| | | | | | | | | | | | Also prefix all thirdparty-related toggles with `builtin`.
* | | Make regex compilable with RTTI disabledPedro J. Estébanez2016-11-011-4/+9
|/ /
* | style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E7`, fixes: - E701 - Put colon-separated compound statement on separate lines. - E702 - Put semicolon-separated compound statement on separate lines. - E703 - Put semicolon-separated compound statement on separate lines. - E711 - Fix comparison with None. - E712 - Fix (trivial case of) comparison with boolean. - E713 - Fix (trivial case of) non-membership check. - E721 - Fix various deprecated code (via lib2to3).
* | style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-0123-16/+19
| | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
* | style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-0117-61/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
* | style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-0139-1520/+1520
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
* | Merge pull request #6490 from zaps166/webm-prRémi Verschelde2016-10-309-3/+1120
|\ \ | | | | | | Add WebM support
| * | Add WebM moduleBłażej Szczygieł2016-10-239-3/+1120
| | | | | | | | | | | | | | | Use already existing libraries: libvorbis and libopus. Also use newly added libraries: libvpx, libwebm, libsimplewebm.
* | | Merge pull request #6887 from leezh/regex_moduleRémi Verschelde2016-10-306-0/+1705
|\ \ \ | | | | | | | | RegEx re-implemented as a module
| * | | Changed RegEx to inherit ResourceZher Huei Lee2016-10-272-4/+8
| | | |
| * | | Added global sub and bounds checking to RegExZher Huei Lee2016-10-272-13/+46
| | | |
| * | | RegEx re-implemented as a moduleZher Huei Lee2016-10-276-0/+1668
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-wrote nrex as a module using godot-specific parts and new features: * Added string substitutions. * Named groups are now supported. * Removed use of mutable variables in RegEx. RegExMatch is returned instead.
* | | | fix bug introduced by #6501yg2f2016-10-261-1/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ( @Akien : this PR is for current HEAD only, not to be cherry-picked for 2.1.1 ) this is manual revertion of #6501 which introduced a bug that prevented scons from detecting Mingw under Windows when MSVC was installed. (thanks to @vnen for finding this) AND it fixes the actual bug that prevented scons from detecting MSVC standalone compiler ( a confusions between ``VSINSTALLDIR`` and ``VCINSTALLDIR`` ) The freeware Standalone MSVC C++ Build Tools are available here : http://landinghub.visualstudio.com/visual-cpp-build-tools
* | | Merge pull request #6925 from godotengine/ipv6Rémi Verschelde2016-10-261-3/+6
|\ \ \ | | | | | | | | Adding IPv6 support
| * | | adding ipv6Ariel Manzur2016-10-181-3/+6
| |/ /
* | | Merge pull request #6564 from ↵Rémi Verschelde2016-10-221-2/+4
|\ \ \ | | | | | | | | | | | | | | | | SuperUserNameMan/gdscript_opcode_line_opcode_breakpoint fixes #6487, GDscript compiler ignores OPCODE_LINE and OPCODE_BREAKPOINT in Release mode
| * | | Fixes #6487, GDscript compiler ignores OPCODE_LINE and OPCODE_BREAKPOINT in ↵yg2f2016-09-201-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release mode When godot is in release mode, GDscript compiler does not generate bytecodes for OPCODE_LINE and OPCODE_BREAKPOINT anymore. This optimizes GDscript execution speed when the script contains a lot of comments in blocs executed in loops. Fixes #6487
* | | | Merge pull request #6850 from akien-mga/pr-scsub-shebangRémi Verschelde2016-10-1722-0/+44
|\ \ \ \ | |_|/ / |/| | | SCsub: Add python shebang as a hint for syntax highlighting
| * | | SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-1722-0/+44
| | | | | | | | | | | | | | | | Also switch existing shebangs to "better" /usr/bin/env python.
* | | | Merge pull request #6692 from bojidar-bg/add-char-to-gd-vs-scriptRémi Verschelde2016-10-174-0/+34
|\ \ \ \ | | | | | | | | | | Add `String char(int ascii)` function to GDScript and Visual Script
| * | | | Add `String char(int ascii)` function to GDScript and Visual ScriptBojidar Marinov2016-10-034-0/+34
| | | | | | | | | | | | | | | | | | | | Just hope it doesn't crashes with that much pointer math... :smile:
* | | | | Theora: Don't compile unnecessary files, rename "x86_opt_*"Błażej Szczygieł2016-10-161-25/+25
| |/ / / |/| | |
* | | | freetype: Make it a module and split thirdparty libraryRémi Verschelde2016-10-155-0/+189
| | | | | | | | | | | | | | | | | | | | Comment out the weird workaround for building on Windows at it might not be needed anymore. Testing needed to confirm.
* | | | chibi: Move to a moduleRémi Verschelde2016-10-1549-0/+12890
| | | |
* | | | squish: Move to a module and split thirdparty libRémi Verschelde2016-10-156-0/+239
| | | |
* | | | mpc: Move to a module and split thirdparty libmpcdecRémi Verschelde2016-10-156-0/+667
| | | |
* | | | theora: Move to a module and split thirdparty libRémi Verschelde2016-10-157-0/+2422
| | | | | | | | | | | | | | | | Same rationale as the previous commits.
* | | | modules: Clone env in each moduleRémi Verschelde2016-10-1516-88/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows to pass include paths and flags only to a given thirdparty library, thus preventing conflicts between their files (e.g. between opus and openssl which both provide modes.h. This also has the nice effect of making the compilation command smaller for each module as it no longer related to all other modules, only the final linking brings them together. This however requires adding manually the ogg include path in opus and vorbis when building against the builtin ogg, since it is no longer in the global env. Also simplified template 'thirdparty_<module>_sources' to 'thirdparty_sources'. "Core" modules like cscript, gdscript, gridmap, ik and virtual_script still use the main env_modules, but it could be changed if need be.
* | | | openssl: Move to a module and split thirdparty libRémi Verschelde2016-10-158-0/+1774
| | | | | | | | | | | | | | | | Same rationale as the previous commits.
* | | | ogg/vorbis/opus: Make them modules and unbundle thirdparty libsRémi Verschelde2016-10-1516-0/+1597
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Took the opportunity to undo the Godot changed made to the opus source. The opus module should eventually be built in its own environment to avoid polluting others with too many include dirs and defines. TODO: Fix the platform/ stuff for opus.
* | | | webp: Make it a module and unbundle libwebp thirdparty filesRémi Verschelde2016-10-156-0/+432
| | | | | | | | | | | | | | | | | | | | | | | | Note that there are two Godot-specific changes made to libwebp for the javascript/HTML5 platform. They are documented in the README.md.
* | | | dds/etc1/pbm/pvr: Make those modules and split thirdparty filesRémi Verschelde2016-10-1526-0/+2311
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They are not particularly packaged in Linux distros so we do not facilitate unbundling via SCons. There could be done if/when there is interest. Also s/pnm/pbm/, long-lived typo :)
* | | | enet: Split enet thirdparty files and allow unbundlingRémi Verschelde2016-10-1522-6429/+80
| | | | | | | | | | | | | | | | | | | | Building against shared libraries only implemented for Linux X11 so far. TODO: Document Godot's modifications of upstream enet.
* | | | jpg: Make it a module and split jpgd thirdparty filesRémi Verschelde2016-10-156-0/+292
| | | | | | | | | | | | | | | | Similar rationale as in previous commit.
* | | | Merge pull request #6813 from Faless/fix_6801_bisRémi Verschelde2016-10-142-12/+0
|\ \ \ \ | | | | | | | | | | Re-Allow absolute paths, make them behave correctly
| * | | | Revert "Add warning when (pre)loading paths with leading / (#4280 - #3106)"Fabio Alessandrelli2016-10-132-12/+0
| | |_|/ | |/| | | | | | | | | | | | | | | | | | Also closes: #6801 This reverts commit e59820ac94b7c9706298d5559608937dfca332e5.
* / | | Adapt overlooked instances of zero-based column numbersPedro J. Estébanez2016-10-131-5/+5
|/ / /