summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-10-24 12:00:40 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-10-24 12:00:40 -0400
commit53feec74ec92bf1e5766e7bb6aaa11b2faa31eae (patch)
treeea0b898e7f2f932691cdd4aa4bdcd2b1d6637235
parent9523f936cf6f761ccc6127546540580cb57f9a5f (diff)
More release prep.
-rw-r--r--Makefile.am35
-rw-r--r--assets/fonts/Chonkly.otfbin10668 -> 0 bytes
-rw-r--r--bonnie-bee/assets.scm4
-rw-r--r--configure.ac2
4 files changed, 36 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 1b36210..ea25245 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,6 +21,8 @@ SUFFIXES = .scm .go
moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
+scripts/bonnie-bee:
+
bin_SCRIPTS = \
scripts/bonnie-bee
@@ -35,13 +37,44 @@ SOURCES = \
bonnie-bee/flower.scm \
bonnie-bee/turret.scm \
bonnie-bee/popcorn.scm \
+ bonnie-bee/moth.scm \
bonnie-bee/boss.scm \
bonnie-bee/game.scm \
bonnie-bee/splash.scm
fontsdir = $(pkgdatadir)/assets/fonts
dist_fonts_DATA = \
- assets/fonts/Chonkly.otf
+ assets/fonts/monogram_extended.ttf
+
+imagesdir = $(pkgdatadir)/assets/images
+dist_images_DATA = \
+ assets/images/background.png \
+ assets/images/bee.png \
+ assets/images/beetle.png \
+ assets/images/bullets.png \
+ assets/images/chickadee.png \
+ assets/images/darkness.png \
+ assets/images/flower.png \
+ assets/images/lightness.png \
+ assets/images/moth.png \
+ assets/images/particle.png \
+ assets/images/popcorn.png \
+ assets/images/turret.png
+
+soundsdir = $(pkgdatadir)/assets/sounds
+dist_sounds_DATA = \
+ assets/sounds/alarm.wav \
+ assets/sounds/enemy-hit.wav \
+ assets/sounds/enemy-shoot.wav \
+ assets/sounds/explosion.wav \
+ assets/sounds/hehehe.wav \
+ assets/sounds/intro.ogg \
+ assets/sounds/main.ogg \
+ assets/sounds/pickup.wav \
+ assets/sounds/player-bomb.wav \
+ assets/sounds/player-death.wav \
+ assets/sounds/player-shoot.wav \
+ assets/sounds/pollen-release.wav
EXTRA_DIST += \
COPYING
diff --git a/assets/fonts/Chonkly.otf b/assets/fonts/Chonkly.otf
deleted file mode 100644
index fc64a65..0000000
--- a/assets/fonts/Chonkly.otf
+++ /dev/null
Binary files differ
diff --git a/bonnie-bee/assets.scm b/bonnie-bee/assets.scm
index 38d6582..3dc35cc 100644
--- a/bonnie-bee/assets.scm
+++ b/bonnie-bee/assets.scm
@@ -3,8 +3,7 @@
#:use-module (chickadee graphics font)
#:use-module (chickadee graphics texture)
#:use-module (starling asset)
- #:export (chonkly-font
- monogram-font
+ #:export (monogram-font
background-image
particle-image
darkness-image
@@ -34,7 +33,6 @@
(let ((prefix (or (getenv "BONNIE_BEE_DATADIR") (getcwd))))
(string-append prefix "/" file-name)))
-(define-asset chonkly-font (load-font (scope-datadir "assets/fonts/Chonkly.otf") 16))
(define-asset monogram-font (load-font (scope-datadir "assets/fonts/monogram_extended.ttf") 12))
(define-asset background-image (load-image (scope-datadir "assets/images/background.png")))
(define-asset particle-image (load-image (scope-datadir "assets/images/particle.png")))
diff --git a/configure.ac b/configure.ac
index 0c892e4..0a990bc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
dnl -*- Autoconf -*-
-AC_INIT(bonnie-bee, 0.1.0)
+AC_INIT(bonnie-bee, 1.0.0)
AC_CONFIG_SRCDIR(bonnie-bee)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign])