godot/drivers/theoraplayer/SCsub
Juan Linietsky 8cab401d08 3D Physics Rework, Other Stuff
-=-=-=-=-=-=-=-=-=-=-=-=-=-

3D Physics:
-Fixed "Bounce" parameter in 3D
-Fixed bug affecting Area (sometims it would not detect properly)
-Vehicle Body has seen heavy work
-Added Query API for doing space queries in 3D. Needs some docs though.
-Added JOINTS! Adapted Bullet Joints: and created easy gizmos for setting them up:
   -PinJoint
   -HingeJoint (with motor)
   -SliderJoint
   -ConeTwistJoint
   -Generic6DOFJoint
-Added OBJECT PICKING! based on the new query API. Any physics object now (Area or Body) has the following signals and virtual functions:
    -input_event (mouse or multitouch input over the body)
    -mouse_enter (mouse entered the body area)
    -mouse_exit (mouse exited body area)
   For Area it needs to be activated manually, as it isn't by default (ray goes thru).

Other:

-Begun working on Windows 8 (RT) port. Compiles but does not work yet.
-Added TheoraPlayer library for improved to-texture and portable video support.
-Fixed a few bugs in the renderer, collada importer, collada exporter, etc.
2014-09-15 11:33:30 -03:00

87 lines
2.6 KiB
Plaintext

Import("env")
import string
sources = string.split("""
src/TheoraVideoClip.cpp
src/FFmpeg/TheoraVideoClip_FFmpeg.cpp
src/TheoraAsync.cpp
src/TheoraAudioInterface.cpp
src/TheoraException.cpp
src/TheoraWorkerThread.cpp
src/TheoraVideoManager.cpp
src/TheoraTimer.cpp
src/TheoraUtil.cpp
src/TheoraDataSource.cpp
src/TheoraAudioPacketQueue.cpp
src/TheoraFrameQueue.cpp
src/Theora/TheoraVideoClip_Theora.cpp
src/YUV/yuv_util.c
src/YUV/libyuv/src/row_any.cc
src/YUV/libyuv/src/compare_common.cc
src/YUV/libyuv/src/scale_neon.cc
src/YUV/libyuv/src/planar_functions.cc
src/YUV/libyuv/src/compare.cc
src/YUV/libyuv/src/scale_mips.cc
src/YUV/libyuv/src/scale_posix.cc
src/YUV/libyuv/src/row_posix.cc
src/YUV/libyuv/src/row_win.cc
src/YUV/libyuv/src/compare_neon.cc
src/YUV/libyuv/src/convert_from_argb.cc
src/YUV/libyuv/src/mjpeg_validate.cc
src/YUV/libyuv/src/convert_from.cc
src/YUV/libyuv/src/rotate_neon.cc
src/YUV/libyuv/src/row_neon.cc
src/YUV/libyuv/src/rotate_mips.cc
src/YUV/libyuv/src/compare_posix.cc
src/YUV/libyuv/src/row_mips.cc
src/YUV/libyuv/src/scale.cc
src/YUV/libyuv/src/scale_argb.cc
src/YUV/libyuv/src/mjpeg_decoder.cc
src/YUV/libyuv/src/scale_win.cc
src/YUV/libyuv/src/scale_common.cc
src/YUV/libyuv/src/scale_argb_neon.cc
src/YUV/libyuv/src/row_common.cc
src/YUV/libyuv/src/convert.cc
src/YUV/libyuv/src/format_conversion.cc
src/YUV/libyuv/src/rotate_argb.cc
src/YUV/libyuv/src/rotate.cc
src/YUV/libyuv/src/convert_argb.cc
src/YUV/libyuv/src/cpu_id.cc
src/YUV/libyuv/src/video_common.cc
src/YUV/libyuv/src/convert_to_argb.cc
src/YUV/libyuv/src/compare_win.cc
src/YUV/libyuv/src/convert_to_i420.cc
src/YUV/libyuv/src/convert_jpeg.cc
src/YUV/libyuv/yuv_libyuv.c
src/YUV/android/cpu-features.c
src/YUV/C/yuv420_grey_c.c
src/YUV/C/yuv420_yuv_c.c
src/YUV/C/yuv420_rgb_c.c
src/TheoraVideoFrame.cpp
video_stream_theoraplayer.cpp
""")
if env["platform"] == "iphone":
sources.append("src/AVFoundation/TheoraVideoClip_AVFoundation.mm")
env.Append(LINKFLAGS=['-framework', 'CoreVideo', '-framework', 'CoreMedia', '-framework', 'AVFoundation'])
env_theora = env.Clone()
env_theora.Append(CPPFLAGS=["-D_YUV_C", "-D__THEORA", "-D_LIB"])
if env["platform"] == "iphone":
env_theora.Append(CPPFLAGS=["-D__AVFOUNDATION"])
if env["platform"] == "android":
env_theora.Append(CPPFLAGS=["-D_ANDROID"])
env_theora.Append(CPPPATH=["#drivers/theoraplayer/include/theoraplayer", "#drivers/theoraplayer/src/YUV", "#drivers/theoraplayer/src/YUV/libyuv/include", "#drivers/theoraplayer/src/Theora", "#drivers/theoraplayer/src/AVFoundation"])
objs = []
env_theora.add_source_files(objs, sources)
env.drivers_sources += objs