Skip to content

Commit

Permalink
Packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
rdb committed Mar 29, 2020
1 parent 4a48867 commit 79e161c
Show file tree
Hide file tree
Showing 9 changed files with 49 additions and 4 deletions.
10 changes: 7 additions & 3 deletions README.md
Expand Up @@ -10,6 +10,8 @@ Use the mouse to navigate, click (or press shift) to gain speed.

Gamepad controls are also supported. The menus require a D-Pad. Use either stick to turn, and hold trigger, or A, to speed.

If you want to cheat to be done quickly, press M to open a minimap.

## Running from source

Requires Python 3 and Panda3D 1.10.6, plus a few other libraries. I recommend installing them via pip:
Expand All @@ -25,14 +27,16 @@ python run_game.py

## Acknowledgements

Art by @janEntikan
Modelling by hjh

Original soundtrack by @janEntikan
Original soundtrack by hjh

Programming by @rdb
Programming by rdb

Skybox created by [Roel](https://reije081.home.xs4all.nl/skyboxes/) (CC BY-NC-SA)

Font is Nunito Bold, licensed under the OFL.

With grateful nod to the PS3 game Flower.

Many thanks to @lordmauve and all the other PyWeek participants for a great challenge!
Binary file added assets/icons/icon-128.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/icon-32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/icon-48.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/icon-512.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/icon-64.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/icon.ico
Binary file not shown.
4 changes: 3 additions & 1 deletion settings.prc
Expand Up @@ -9,10 +9,12 @@ model-path $MAIN_DIR/assets

window-title pollen.
fullscreen false
win-fixed-size true
#win-fixed-size true
win-size 1022 766
win-origin -2 -2

icon-filename icons/icon.ico

textures-power-2 none

bounds-type best
Expand Down
39 changes: 39 additions & 0 deletions setup.py
@@ -0,0 +1,39 @@
from setuptools import setup

setup(
name='pollen.',
version='1.0.0',
options={
'build_apps': {
'include_patterns': {
'assets/**',
'settings.prc',
'README.md',
},
'package_data_dirs': {
'simplepbr': [
('simplepbr/*.vert', '', {}),
('simplepbr/*.frag', '', {}),
],
},
'gui_apps': {
'run_game': 'run_game.py',
},
'icons': {
'run_game': [
'assets/icons/icon-512.png',
'assets/icons/icon-128.png',
'assets/icons/icon-64.png',
'assets/icons/icon-48.png',
'assets/icons/icon-32.png'
],
},
'log_filename': "$USER_APPDATA/pollen/output.log",
'log_append': False,
'plugins': [
'pandagl',
'p3openal_audio',
],
},
}
)

0 comments on commit 79e161c

Please sign in to comment.