Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Merge internal branch into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Stewart Miles committed Jul 15, 2015
2 parents 94da0d6 + fad52c7 commit ecc51e4
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 23 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ set(dependencies_flatbuffers_dir "${fpl_root}/flatbuffers"
CACHE PATH "Directory containing the Flatbuffers library.")
set(dependencies_fplutil_dir "${fpl_root}/fplutil"
CACHE PATH "Directory containing the fplutil library.")
set(dependencies_pindrop_dir "${fpl_root}/audio_engine"
set(dependencies_pindrop_dir "${fpl_root}/pindrop"
CACHE PATH "Directory containing the pindrop library.")
set(dependencies_mathfu_dir "${fpl_root}/mathfu"
CACHE PATH "Directory containing the MathFu library.")
Expand Down
2 changes: 1 addition & 1 deletion disttools/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"push": 0
},
{
"name": "audio_engine",
"name": "pindrop",
"url": "http://github.com/google/pindrop.git",
"branch": "develop",
"is_library": 1,
Expand Down
3 changes: 2 additions & 1 deletion docs/generate_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
THIS_DIR = os.path.realpath(os.path.dirname(__file__))
PROJECT_DIR = os.path.realpath(os.path.join(THIS_DIR, os.pardir))
sys.path.extend(
[os.path.realpath(os.path.join(PROJECT_DIR, os.pardir, os.pardir, 'libs', 'fplutil')),
[os.path.realpath(os.path.join(PROJECT_DIR, os.pardir, os.pardir, 'libs',
'fplutil')),
os.path.realpath(os.path.join(PROJECT_DIR, 'dependencies', 'fplutil'))])
import docs # pylint: disable=C6204

Expand Down
6 changes: 3 additions & 3 deletions docs/src/doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ HTML_FILE_EXTENSION = .html
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_HEADER =
HTML_HEADER = $(SHARED_DOCS_PATH)/header.html

# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank doxygen will generate a standard
Expand All @@ -1107,7 +1107,7 @@ HTML_HEADER =
# that doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_FOOTER = footer.html
HTML_FOOTER = $(SHARED_DOCS_PATH)/footer.html

# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
Expand All @@ -1130,7 +1130,7 @@ HTML_STYLESHEET =
# see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_STYLESHEET =
HTML_EXTRA_STYLESHEET = $(SHARED_DOCS_PATH)/style.css

# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
Expand Down
12 changes: 0 additions & 12 deletions docs/src/footer.html

This file was deleted.

2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ your friends. It is written in cross-platform C++.

\htmlonly
<iframe width="560" height="315"
src="http://www.youtube.com/embed/p1F6HRFnLoo?rel=0"
src="https://www.youtube.com/embed/p1F6HRFnLoo?rel=0"
frameborder="0" allowfullscreen>
</iframe>
\endhtmlonly
Expand Down
2 changes: 1 addition & 1 deletion docs/src/programmers_guide/multiscreen.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Multi-screen mode is a very different way of playing Pie Noon!

\htmlonly
<iframe width="560" height="315"
src="http://www.youtube.com/embed/aR5WQaq70fw?rel=0"
src="https://www.youtube.com/embed/aR5WQaq70fw?rel=0"
frameborder="0" allowfullscreen>
</iframe>
\endhtmlonly
Expand Down
2 changes: 1 addition & 1 deletion jni/android_config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ DEPENDENCIES_SDL_MIXER_DIR?=$(THIRD_PARTY_ROOT)/sdl_mixer
# Location of the Flatbuffers library.
DEPENDENCIES_FLATBUFFERS_DIR?=$(FPL_ROOT)/flatbuffers
# Location of the Pindrop library.
DEPENDENCIES_PINDROP_DIR?=$(FPL_ROOT)/audio_engine
DEPENDENCIES_PINDROP_DIR?=$(FPL_ROOT)/pindrop
# Location of the fplutil library.
DEPENDENCIES_FPLUTIL_DIR?=$(FPL_ROOT)/fplutil
# Location of the Freetype library.
Expand Down
2 changes: 1 addition & 1 deletion jni/libs/src/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ $(call import-add-path,$(DEPENDENCIES_PINDROP_DIR)/..)
$(call import-add-path,$(DEPENDENCIES_WEBP_DIR)/..)

$(call import-module,flatbuffers/android/jni)
$(call import-module,audio_engine/jni)
$(call import-module,pindrop/jni)
$(call import-module,motive/jni)
$(call import-module,mathfu/jni)
$(call import-module,webp)
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
os.path.pardir, 'libs'))


PINDROP_ROOT = os.path.abspath(os.path.join(DEPENDENCIES_ROOT, 'audio_engine'))
PINDROP_ROOT = os.path.abspath(os.path.join(DEPENDENCIES_ROOT, 'pindrop'))

MOTIVE_ROOT = os.path.abspath(os.path.join(DEPENDENCIES_ROOT, 'motive'))

Expand Down
3 changes: 3 additions & 0 deletions src/pie_noon_game.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@
#define PIE_NOON_GAME_H

#ifdef PLATFORM_MOBILE
#ifdef __ANDROID__
#define PIE_NOON_USES_GOOGLE_PLAY_GAMES
#endif // __ANDROID__
#endif


#include "ai_controller.h"
#include "cardboard_controller.h"
#include "full_screen_fader.h"
Expand Down

0 comments on commit ecc51e4

Please sign in to comment.