Skip to content

Commit cbe9694

Browse files
authored
Merge pull request #415 from GarageGames/development
Torque 2D Version 3.4
2 parents 55efccc + b863ff1 commit cbe9694

File tree

272 files changed

+7244
-25521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+7244
-25521
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ linkmap.txt
5959
.Spotlight-V100
6060
.Trashes
6161
Icon?
62-
ehthumbs.db
63-
Thumbs.db
62+
*.db
6463

6564
# Android project files #
6665
#########################
@@ -76,3 +75,4 @@ engine/compilers/android-studio/local.properties
7675
engine/compilers/android-studio/app/src/main/obj/
7776
engine/compilers/android-studio/app/src/main/libs/
7877
engine/compilers/android-studio/app/src/main/game/
78+
engine/compilers/android-studio/app/.externalNativeBuild/

Leap.dll

-1.17 MB
Binary file not shown.

Leapd.dll

-1.89 MB
Binary file not shown.

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
![Torque Logo](http://static.garagegames.com/static/pg/logokits/Torque-Logo_H.png)
2-
## Torque 2D 3.3
2+
## Torque 2D 3.4
33

44
MIT Licensed Open Source version of Torque 2D from GarageGames. Maintained by the T2D Steering Committee and contributions from the community.
55

66
Dedicated to 2D game development, Torque 2D is an extremely powerful, flexible, and fast C++ engine which has been used in hundreds of professional games. It is a true cross platform solution providing you access to Windows, OSX, Linux, iOS, Android, and the web - all from one codebase. It includes an OpenGL batched rendering system, Box2D physics, OpenAL audio, skeletal and spritesheet animation, automated asset management, a modular project structure, TAML object persistence, and a C-like scripting language.
77

88
### Branches
99

10-
Here is an overview of the branches found in the Torque 2D repository:
10+
Here is an overview of the branches found in the Torque 2D repository:
1111

12-
* **master:** this branch contains the current stable release code that can be used in a production environment.
12+
* **master:** this branch contains the current stable release code that can be used in a production environment.
1313
* **development:** this branch is dedicated to active development. It contains the latest bug fixes, new features, and other updates. All pull requests need to go to the development branch. While we try our best to test all incoming changes, it is possible for mistakes to slip in therefore this branch should always be considered unstable.
1414
* **gh-pages:** this branch currently contains the html pages generated from doxygen for the engine and TorqueScript references.
1515

@@ -21,19 +21,17 @@ If you do not wish to compile the source code yourself, precompiled binary files
2121

2222
After downloading a copy of the source code, the following project files for each platform are provided for you and can be found in the `engine/compilers` folder.
2323

24-
* **Windows:** Visual Studio 2013 or 2015 (works with the free, "Express for Windows Desktop" version)
24+
* **Windows:** Visual Studio 2017 (works with the free Community Edition)
2525
* **OSX:** Xcode
2626
* **Linux:** Make
2727
* **iOS:** Xcode_iOS
28-
* **Android:** Eclipse or Android Studio
28+
* **Android:** Android Studio
2929
* **Web:** Emscripten/Cmake
3030

3131
See the [wiki](https://github.com/GarageGames/Torque2D/wiki) for available guides on platform setup and development.
3232

3333
### Batteries Included
3434

35-
![truck](http://t2dtutorials.com/img/Truck.png)
36-
3735
Running Torque 2D for the first time out of the box will start you off in the Sandbox. The Sandbox is a collection of over 30 simple "toys" (or modules) which demonstrate various features in T2D. The default toy is a side scrolling level with a monster truck. To see a list of the available modules/toys to choose from, click on the `Show Tools` button in the lower right corner of the screen.
3836

3937
Naturally all of the script code and assets for each toy are available to you in the modules folder to use as practical examples while learning T2D.
@@ -46,7 +44,11 @@ All documentation for the open source version of Torque 2D can be found on our [
4644

4745
### Community
4846

49-
Don't go it alone! Join the active community around Torque 2D at GarageGames.com. Ask questions, talk about T2D and general game development topics, learn the latest news, or post a blog promoting your game or showing off additional engine features in your T2D fork.
47+
Don't go it alone! Join the active Torque community. Ask questions, talk about T2D and general game development topics, learn the latest news, or post a blog promoting your game or showing off additional engine features in your T2D fork.
48+
49+
* [Torque 2D Forums on the Torque 3D Website](https://forums.torque3d.org/viewforum.php?f=31)
50+
51+
You also might be able to find useful information on the less active GarageGames website.
5052

5153
* [Torque 2D Beginner Forum](http://www.garagegames.com/community/forums/84)
5254
* [Torque 2D Professional Forum](http://www.garagegames.com/community/forums/85)

engine/compilers/Make/Torque2D

+12-10
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,15 @@ SOURCES := ../../source/2d/assets/AnimationAsset.cc \
5656
../../source/assets/assetTagsManifest.cc \
5757
../../source/assets/declaredAssets.cc \
5858
../../source/assets/referencedAssets.cc \
59+
../../source/audio/audio.cc \
60+
../../source/audio/audioDataBlock.cc \
61+
../../source/audio/audioDescriptions.cc \
62+
../../source/audio/audio_ScriptBinding.cc \
63+
../../source/audio/audioStreamSourceFactory.cc \
64+
../../source/audio/wavStreamSource.cc \
5965
../../source/audio/AudioAsset.cc \
66+
../../source/audio/audioBuffer.cc \
67+
../../source/audio/vorbisStreamSource.cc \
6068
../../source/bitmapFont/BitmapFont.cc \
6169
../../source/bitmapFont/BitmapFontCharacter.cc \
6270
../../source/Box2D/Collision/b2BroadPhase.cpp \
@@ -175,6 +183,7 @@ SOURCES := ../../source/2d/assets/AnimationAsset.cc \
175183
../../source/gui/language/lang.cc \
176184
../../source/gui/messageVector.cc \
177185
../../source/input/actionMap.cc \
186+
../../source/io/byteBuffer.cpp \
178187
../../source/io/bitStream.cc \
179188
../../source/io/bufferStream.cc \
180189
../../source/io/fileObject.cc \
@@ -241,13 +250,6 @@ SOURCES := ../../source/2d/assets/AnimationAsset.cc \
241250
../../source/persistence/tinyXML/tinyxml.cpp \
242251
../../source/persistence/tinyXML/tinyxmlerror.cpp \
243252
../../source/persistence/tinyXML/tinyxmlparser.cpp \
244-
../../source/audio/vorbisStreamSource.cc \
245-
../../source/audio/audio.cc \
246-
../../source/audio/audioBuffer.cc \
247-
../../source/audio/audioDataBlock.cc \
248-
../../source/audio/audio_ScriptBinding.cc \
249-
../../source/audio/audioStreamSourceFactory.cc \
250-
../../source/audio/wavStreamSource.cc \
251253
../../source/component/dynamicConsoleMethodComponent.cpp \
252254
../../source/component/simComponent.cpp \
253255
../../source/component/behaviors/behaviorComponent.cpp \
@@ -299,10 +301,11 @@ SOURCES := ../../source/2d/assets/AnimationAsset.cc \
299301
../../source/platform/platformFileIO.cc \
300302
../../source/platform/platformFont.cc \
301303
../../source/platform/platformMemory.cc \
302-
../../source/platform/platformNetwork_ScriptBinding.cc \
304+
../../source/platform/platformNet.cpp \
305+
../../source/platform/platformNetAsync.cpp \
306+
../../source/platform/platformNet_ScriptBinding.cc \
303307
../../source/platform/platformString.cc \
304308
../../source/platform/platformVideo.cc \
305-
../../source/platform/platformNetAsync.unix.cc \
306309
../../source/platform/menus/popupMenu.cc \
307310
../../source/platform/nativeDialogs/msgBox.cpp \
308311
../../source/platform/Tickable.cc \
@@ -320,7 +323,6 @@ SOURCES := ../../source/2d/assets/AnimationAsset.cc \
320323
../../source/platformX86UNIX/x86UNIXMemory.cc \
321324
../../source/platformX86UNIX/x86UNIXMessageBox.cc \
322325
../../source/platformX86UNIX/x86UNIXMutex.cc \
323-
../../source/platformX86UNIX/x86UNIXNet.cc \
324326
../../source/platformX86UNIX/x86UNIXOGLVideo.cc \
325327
../../source/platformX86UNIX/x86UNIXOpenAL.cc \
326328
../../source/platformX86UNIX/x86UNIXProcessControl.cc \

engine/compilers/Make/ljpeg

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# I release this sample under the MIT license: free for any use, provided
2-
# you hold me harmless from any such use you make, and you retain my
2+
# you hold me harmless from any such use you make, and you retain my
33
# copyright on the actual sources.
44
# Copyright 2005 Jon Watte.
55

@@ -79,27 +79,27 @@ LIB_TARGETS_DEBUG += $(TARGET_ljpeg_DEBUG)
7979
OBJS_ljpeg := $(patsubst ../../lib/ljpeg/%,Release/ljpeg/%.o,$(SOURCES))
8080
OBJS_ljpeg_DEBUG := $(patsubst ../../lib/ljpeg/%,Debug/ljpeg/%.o,$(SOURCES))
8181

82-
# Deriving the variable name from the target name is the secret sauce
82+
# Deriving the variable name from the target name is the secret sauce
8383
# of the build system.
8484
#
8585
$(TARGET_ljpeg): $(OBJS_ljpeg)
86-
@echo Linking library ljpng
86+
@echo Linking library ljpng
8787
@mkdir -p $(dir $@)
8888
ar cr $@ $(OBJS_ljpeg)
89-
89+
9090
$(TARGET_ljpeg_DEBUG): $(OBJS_ljpeg_DEBUG)
91-
@echo Linking debug library ljpng
91+
@echo Linking debug library ljpng
9292
@mkdir -p $(dir $@)
9393
ar cr $@ $(OBJS_ljpeg_DEBUG)
9494

9595
Release/ljpeg/%.o: ../../lib/ljpeg/%
9696
@mkdir -p $(dir $@)
9797
$(CC) -c $(CFLAGS_ljpeg) $< -o $@
98-
98+
9999
Debug/ljpeg/%.o: ../../lib/ljpeg/%
100100
@mkdir -p $(dir $@)
101101
$(CC) -c $(CFLAGS_DEBUG_ljpeg) $< -o $@
102-
102+
103103
release_ljpeg: $(TARGET_ljpeg)
104104
debug_ljpeg: $(TARGET_ljpeg_DEBUG)
105105

0 commit comments

Comments
 (0)