Compare commits

..

909 Commits

Author SHA1 Message Date
Tom Rothamel e31f1ac63f Mark one pylint spurious warning. 2010-01-10 15:42:11 -05:00
Tom Rothamel 33a6c97446 Finalize changelog. 2010-01-10 15:37:57 -05:00
Tom Rothamel 99e9e6e9ba Bump version to 6.10.2a. 2010-01-10 15:34:31 -05:00
Tom Rothamel 1d81cede71 Unpack ScaledSurfaces before using them as a sample for an alpha channel. 2010-01-10 01:52:00 -05:00
Tom Rothamel 54ab9e0f1b Add copyright information to files that have it missing. 2010-01-09 13:25:18 -05:00
Tom Rothamel f0df9a7a05 Bump copyright to 2010. 2010-01-09 13:14:42 -05:00
Tom Rothamel adc3bf820b Fixed a bug that caused the overlay to display twice in some cases. 2010-01-05 18:07:28 -05:00
Tom Rothamel d26ac890a5 Add the ability to pin images into the cache, using the renpy.cache_pin function. 2010-01-05 02:30:39 -05:00
Tom Rothamel d0397b2111 The new config.automatic_images_strip variable can strip out prefixes
when automatically defining images.
2010-01-03 16:32:21 -05:00
Tom Rothamel 0229de3f0d The new config.menu_clear_layers variable allows layers to be cleared
when entering the game menu. This makes it easier for a layer to have 
overlay-like things on it when in the game, but not when in the game
menu.
2010-01-03 16:25:20 -05:00
Tom Rothamel 176150be7f Add renpylint script, a wrapper around pylint that gets rid of some
false positives where pylint isn't able to fully analyze Ren'Py.

Add annotations to Ren'Py to further supress false positives. The result
is that we can now run pylint and pick out regressions.
2010-01-02 02:38:07 -05:00
Tom Rothamel 04992fa431 Flag spurious pylint warnings, in the renpy/ directory. 2010-01-01 16:30:38 -05:00
Tom Rothamel b26725fd01 pylint done. 2010-01-01 15:09:36 -05:00
Tom Rothamel 601e7b1949 pylint: Initial pass through renpy directory. 2010-01-01 14:27:20 -05:00
Tom Rothamel 37c1571792 pylint: ast.py and atl.py 2010-01-01 13:30:39 -05:00
Tom Rothamel 812144bdf0 Fixed a bug that caused pixellate to crash. 2009-12-31 16:16:20 -05:00
Tom Rothamel 6e616fda4e When a music filename is unknown, remove it from the loop, so we don't keep
trying to access it.
2009-12-31 15:44:40 -05:00
Tom Rothamel 3f120ce658 Ren'Py now caches the individual words of text that are rendered. This
can lead to a speedup in text display when there are many words of
text on the screen, and that text is re-displayed, as is the case
where the text text speed is not the maximum. This is especially 
beneficial for eastasian languages, where every character is treated
as a word.
2009-12-30 16:24:18 -05:00
Tom Rothamel 5446da46dc Ren'Py now caches the individual words of text that are rendered. This
can lead to a speedup in text display when there are many words of
text on the screen, and that text is re-displayed, as is the case
where the text text speed is not the maximum. This is especially 
beneficial for eastasian languages, where every character is treated
as a word.
2009-12-30 15:41:29 -05:00
Tom Rothamel 172efcac94 Surface creation parameter was missing when creating a Frame with tile=True.
Fixes lp:501351.
2009-12-30 00:24:27 -05:00
Tom Rothamel c5ce6c0f4b Bump version. 2009-12-17 09:36:36 -05:00
Tom Rothamel 40f8644ac2 Export time from renpy.exports. 2009-12-17 09:35:34 -05:00
Tom Rothamel d45cf0d79a Bump version. 2009-12-16 19:17:18 -05:00
Tom Rothamel 68937a71b9 Add developer menu to string scanner. 2009-12-14 22:06:00 -05:00
Tom Rothamel db435f5a0a Bump version. 2009-12-14 19:06:43 -05:00
Tom Rothamel 40c469fa23 Add ctc_timedpause. 2009-12-14 19:04:10 -05:00
Tom Rothamel fe7c7e2299 Decode the tutorial properly, so international characters can be used. 2009-12-14 16:51:43 -05:00
Tom Rothamel 2f9d9f9dee Bump version numbers. 2009-12-13 11:26:44 -05:00
Tom Rothamel 293508969a The layout.imagemap_main_menu and layout.imagemap_load_save functions
now allow one to define variant screens. This allows one to select an 
imagemap main menu screen to use, or to define different screens for
loading and saving.
2009-12-13 11:05:58 -05:00
Tom Rothamel 5908546828 Ensure we get an alpha surface even if pygame hasn't been initialized.
Take the position from the transform, not something enclosing the transform.

Fix the archiver to not error out on import.
2009-12-12 23:16:59 -05:00
Tom Rothamel b80f6a1e8e Fix a bug with the last checkin. 2009-12-12 15:45:12 -05:00
Tom Rothamel d3434400cd The layout.imagemap_load_save function can now take dictionaries for
each of its arguments. This allows separate values of the arguments to
be specified for load and save.
2009-12-12 15:28:16 -05:00
Tom Rothamel 11a20e21d1 Update the font to the latest version. 2009-12-12 03:11:18 -05:00
Tom Rothamel 0de0aa292a ATL now has a "function" statement, which allows an ATL transform to
use the same functions that are supplied to Transform.
2009-12-12 01:28:41 -05:00
Tom Rothamel aa0d357bdc The transform state transfer now looks inside ImageReferences. This means
that it works when a transform is defined as part of an image, as well as
part of an at clause (or as an ATL block).

Parameterize ctc indicators.
2009-12-12 00:22:04 -05:00
Tom Rothamel ca16c24fc4 Make all of Ren'Py pyflakes-clean. 2009-12-11 01:38:28 -05:00
Tom Rothamel d32db0c9a3 Fix Pyflakes warnings. 2009-12-11 01:20:33 -05:00
Tom Rothamel 60b9f0522c Make shown_window an attribute of scene_lists. This tracks it better.
Change overlay semantics to match everything else.

Make core.py and exports.py pyflakes clean.
2009-12-11 00:39:17 -05:00
Tom Rothamel d3c58da216 Make core.py pyflakes-clean. 2009-12-10 11:31:46 -05:00
Tom Rothamel e81044465d Fix various bugs, incl lp:494820. 2009-12-10 01:01:59 -05:00
Tom Rothamel 75a0741c33 Scaling bug fixes. 2009-12-09 02:49:00 -05:00
Tom Rothamel a68f4af35d Vaguely working (not immediately crashing) rewrite of the scaling code. 2009-12-09 02:24:02 -05:00
Tom Rothamel 9e0932af5a Fix typo that prevented ui.at from working. 2009-12-07 09:58:04 -05:00
Tom Rothamel 112c0bce66 Only allow rollbacks to be committed in the top-level context. Fixes lp:493062.
Error handling improvements.

Allow ui.imagemap to take arbitrary displayables as the ground.
2009-12-06 15:30:36 -05:00
Tom Rothamel d640759ab8 Fixed a bug that prevented Ren'Py from interpolating image rotation
before image rotation was specified.
2009-12-05 17:05:14 -05:00
Tom Rothamel bb628bd9cd Make bilinear scaling precise.
Make im.Scale use the smooth scaling code. Fixes lp:488814.
2009-12-05 15:42:31 -05:00
Tom Rothamel ed3c0937d9 Check in cython-created files. 2009-12-05 13:32:26 -05:00
Tom Rothamel 48cf0cd50a Fixed a bug that caused Ren'Py to fail when scaling was enabled. 2009-12-05 03:09:56 -05:00
Tom Rothamel a39934d0c4 The image text tag can now take any textual image representation. So
something like {image=eileen happy} is legal, if odd.


Fixed a bug that could prevent files from being loaded if Ren'Py was
run from a path that contains non-ascii characters. (Even in directories
that were not part of the Ren'Py distribution.)
2009-12-05 00:38:30 -05:00
Tom Rothamel 2a9eaf9dea Fix a no-shutdown bug. 2009-12-05 00:15:07 -05:00
Tom Rothamel 0d07b4dcb6 Be sure blit lock is held. 2009-12-02 18:14:11 -05:00
Tom Rothamel 76fbce3304 Fix bug that could cause shift+R to fail when going back to a menu after a restart.
Fix bug that could prevent Ren'Py from exiting if image or auto-save threads felt like keeping us around.
2009-12-02 17:51:08 -05:00
Tom Rothamel 510eba1628 Hide deprecation warnings on Python 2.6. 2009-11-30 02:54:16 -05:00
Tom Rothamel c37fede2f1 Add precise mode for transform32.
Remove can_ tests from the module as obsolete.
2009-11-30 02:01:45 -05:00
Tom Rothamel 3ccb522e33 Replace all surface creation with calls to
renpy.display.pgrender.surface and other functions in that
module. This function creates a surface with a 1px border in
all directions. This will let us not have to worry about transform32 
overrunning the surface.
2009-11-29 16:01:42 -05:00
Tom Rothamel a067d0c830 Bump version to 6.10.0e 2009-11-16 23:20:12 -05:00
Tom Rothamel 2f82c7466d Adjust the types of ATL properties as necessary. 2009-11-16 02:22:37 -05:00
Tom Rothamel 9e9a6b7f8e Change the strategy used for cropping in Transform. The new one allows for floating pointy crop windows. 2009-11-16 02:04:41 -05:00
Tom Rothamel 9db36905c6 Fix bug that prevented ATL default parameters from working. 2009-11-15 19:29:17 -05:00
Tom Rothamel e5ae260c33 Add ATL warp construct. 2009-11-15 19:24:17 -05:00
Tom Rothamel 4e3a579eed ATL: fix bug with bare number as pause. 2009-11-15 15:44:49 -05:00
Tom Rothamel 4cd1e62978 Simplify module.py, now that we error out if the module isn't loadable.
Make it possible to build on a stock ubuntu.
2009-11-15 15:31:09 -05:00
Tom Rothamel babd95540d ATL add contains expression statement. 2009-11-15 00:51:53 -05:00
Tom Rothamel 905de15883 Clear lint error.
Bump version for release.
2009-11-14 22:14:48 -05:00
Tom Rothamel 00f31ca351 Bar style tweak, and replace missing main menu file. 2009-11-14 22:10:12 -05:00
Tom Rothamel cb82cfae3e Allow Transforms to embed Dissolve et al.
Add concert to tutorial game. Add new main menu to tutorial game.
2009-11-14 22:03:51 -05:00
Tom Rothamel 1a36f1feb7 Add show_transform to character. 2009-11-13 18:18:47 -05:00
Tom Rothamel d1893c6e17 Do not change the style prefix of a button when changing the style
prefix of a button that contains it.
2009-11-13 15:12:08 -05:00
Tom Rothamel 330ec0e68c Optimize transforms when alpha is 0.
Trim happy_alley.

Bump version to 6.10.0b.
2009-11-13 14:24:19 -05:00
Tom Rothamel 830304b79e In ATL, changed child -> contains, so as not to mask access to the child variable. 2009-11-10 23:05:07 -05:00
Tom Rothamel dc5940ac56 Ensure layer_at_list works with ATL transforms properly. 2009-11-10 22:55:12 -05:00
Tom Rothamel 437cc8784f Choose default focus when leaving a context in which at least one interaction occured. 2009-11-10 01:58:41 -05:00
Tom Rothamel 8e08e6647a Update .bzrignore 2009-11-09 21:04:11 -05:00
Tom Rothamel 60a21a7bbe Add child statement to ATL.
Allow ATL Transform to be used as transition.
2009-11-09 21:01:04 -05:00
Tom Rothamel 6251a86cfe Add new lucy art - thanks, Mugen! 2009-11-09 16:48:43 -05:00
Tom Rothamel 580ea88cd0 Make transforms take a list of declared parameters.
Fix problem where transform and define would declare a label.
2009-11-09 16:42:15 -05:00
Tom Rothamel c93734cd9c Have the caret change color when a color parameter is supplied to Input. 2009-11-08 13:55:19 -05:00
Tom Rothamel f7e2f0dd1a Fix bug that prevented styles from rebuilding. 2009-11-08 13:22:02 -05:00
Tom Rothamel 943b505ec2 Fix the version number to be 6.10.0a. 2009-11-07 19:43:01 -05:00
Tom Rothamel 75304e781a Don't let REDRAW or TIMEEVENT hold up motions.
Final tweaks for release.
2009-11-07 19:41:46 -05:00
Tom Rothamel d73326af11 Rename the bidi module.
Bump the version numbers.

Fix the demo a bit.

Fix problem in which TIMEEVENT could starve redraws.
2009-11-07 17:55:27 -05:00
Tom Rothamel 670eca455d Update strings.
Get things building on all platforms, bump library versions.
2009-11-07 02:49:07 -05:00
Tom Rothamel ab38c2e521 The freetype library has been updated, and we have added support for
the use of TrueType collections. Using a name of 0@font.ttc will get
the first font in the collection, 1@font.ttc will get the second font,
and so on.

ATL typo.
2009-11-07 00:54:53 -05:00
Tom Rothamel 1ded9b2959 Changelog updates.
Add align and anchor ATL properties, for symmetry with pos.
2009-11-06 02:12:20 -05:00
Tom Rothamel 7c67db202f Preserve the illusion of linear time in transforms. 2009-11-05 21:30:39 -05:00
Tom Rothamel ba4321956b Basically done with the tutorial game. Removed a lot of files that are
no longer used.
2009-11-05 02:50:39 -05:00
Tom Rothamel 79e4b5a2fa Finished the ATL tutorial. 2009-11-04 23:09:07 -05:00
Tom Rothamel 5b84b0507c Added a .001s sleep for frames that are framerate-limited. This should
prevent Ren'Py from consuming all CPU unless the game is CPU-bound.
2009-11-04 19:25:12 -05:00
Tom Rothamel c15d13e543 Allow LiveComposites bigger than the screen. Fixes lp:473624. 2009-11-03 21:11:50 -05:00
Tom Rothamel 3ef27787b4 Various ATL fixes. Commit ATL tutorial. Off to go vote... 2009-11-03 11:10:26 -05:00
Tom Rothamel e84e8102b6 The new config.auto_load variable allows you to specify a save file
that is automatically loaded when Ren'Py starts. For example, setting
this to "1" loads the game in save slot 1. This is intended for use by
developers, so they can easily return to a point in the game after 
restarting Ren'Py.
2009-11-02 01:53:17 -05:00
Tom Rothamel ee8d1a531a Work on the ATL demo.
Fix yet another segfault bug in transform32, this one probably having to 
do with precision of floating point numbers.
2009-11-02 01:28:47 -05:00
Tom Rothamel 2d4d1903b2 More work on the tutorial. 2009-10-31 20:10:52 -04:00
Tom Rothamel d1cc2015ac Move demo/ to tutorial/. 2009-10-31 14:47:20 -04:00
Tom Rothamel be44f0805c Minor focus behavior changes to deal with viewports better.
More work on the demo. The quickstart is now covered.
2009-10-31 14:31:19 -04:00
Tom Rothamel 612207510c Working on turning the demo game into the tutorial game. 2009-10-31 02:19:29 -04:00
Tom Rothamel c2875e4a7d More tutorial work. Finished the dialogue section. 2009-10-28 00:50:20 -04:00
Tom Rothamel b8d2433a79 Demo work.
Add basic RTL support.
2009-10-26 18:46:21 -04:00
Tom Rothamel 43cc8b425a Make _args and _kwargs dynamically scoped. This fixes a problem with
_after_load when at a label, and may also fix a problem with return 
labels being missing.
2009-10-25 02:13:50 -04:00
Tom Rothamel 7962073926 The play statement takes an if_changed modifier, which prevents a song
from being restarted if it is already playing on the channel.
2009-10-25 00:06:22 -04:00
Tom Rothamel 281a35bc66 Fix problems with imagemap load & save. 2009-10-24 23:26:31 -04:00
Tom Rothamel a4f6a18bb8 Python blocks are now compiled in a mode that allows the python "with"
statement. Container displayables now support the context manager
protocol, automatically closing at the end of a with block. (Note
that the python with statement postdates the Ren'Py with statement,
and has totally different semantics.)
2009-10-24 04:19:35 -04:00
Tom Rothamel f50adf3ed2 Add the ui.tag function. 2009-10-22 09:57:41 -04:00
Tom Rothamel f1b78b4a05 Make a copy of an ATL displayable before running a hide handler. This
allows us to roll back to before the hide handler has run.
2009-10-22 09:43:38 -04:00
Tom Rothamel 7953f8adf1 Have ATL give a parse error if it sees two expressions in a row. 2009-10-22 08:59:29 -04:00
Tom Rothamel f3062e6f22 Add ability for ATL to run an event on hide, and suppress hide until
done. (Not sure if this is totally desirable, though. It interacts with
rollback poorly.)
2009-10-22 01:37:19 -04:00
Tom Rothamel fe4eda2661 Try to ensure that loading and saving ATL works out. 2009-10-20 21:51:42 -04:00
Tom Rothamel 2be10ba84c Alias Character to Speaker. 2009-10-20 21:14:31 -04:00
Tom Rothamel 82b3d0e78e The layout.imagemap_yesno_prompt now supports a prompt_images
argument, which is can be used to specify images to replace the
text of a yes/no prompt.

Make buttons give out the role + hover status.

Allow transform to control the render size of its child.
2009-10-18 21:49:54 -04:00
Tom Rothamel 079180f4ce Changed MoveTransition to preserve the timebases of the thing being moved
in all circumstances.

Fixes lp:451464
2009-10-17 23:30:26 -04:00
Tom Rothamel 9a3369c27c The developer screen was getting a bit large, so load it from a module
only if config.developer is enabled.
2009-10-17 15:12:23 -04:00
Tom Rothamel b87e10cdcf Added the Image Location Picker to the Developer (shift+D) menu. This
tool lets the user pick an image, and then pick locations that
image. It display the mouse coordinates, imagemap rectangle, and
cropping rectangle.
2009-10-17 15:07:15 -04:00
Tom Rothamel 229c542d68 ATL: Propagate events to child as well as parent. 2009-10-17 13:40:34 -04:00
Tom Rothamel 3478d079d6 The displayable code has been adjusted to consider strings that do not
contain at least one dot as image references. Now, one can write
"eileen happy" to refer to an image with that name.

ATL: Fix Child.
2009-10-17 00:25:09 -04:00
Tom Rothamel a7fc70402e The play and queue statements now take optional loop and noloop
modifiers, which force looping (or lack of looping) on that channel.
2009-10-16 23:41:40 -04:00
Tom Rothamel 5df6419a59 Added the pause statement. 2009-10-16 23:30:52 -04:00
Tom Rothamel 8b03bc5072 The new config.automatic_images variable, when set correctly, will
cause Ren'Py to automatically define images for appropriately-named
image files found in the archives and game directory.
2009-10-16 23:22:55 -04:00
Tom Rothamel 6ca8a37cc6 The new config.window_overlay_functions variable contains a list of
functions that should be called only when once the dialogue window has
been shown.
2009-10-16 22:40:23 -04:00
Tom Rothamel 9fbf1ee1b2 Add the define statement. 2009-10-16 22:17:03 -04:00
Tom Rothamel 84b7741fa4 Rewrite transform to fix segfaulting. Eliminate most fixed-point arithmetic.
Add to ATL corner1, corner2.
2009-10-16 03:41:42 -04:00
Tom Rothamel e6efaa5f9f Add ability of ATLTransform to take events from its child, and for
button to generate ATL events.

Fix focusing the child of an ATL displayable.
2009-10-16 01:19:13 -04:00
Tom Rothamel 330c2e247e Allow rotation of clipped render. 2009-10-15 11:35:48 -04:00
Tom Rothamel 923f56273c Add to ATL support for spline interpolation. 2009-10-14 01:33:44 -04:00
Tom Rothamel 8b761aa689 Update icon to 7-ready one.
Minor fix to ATLTransform.
2009-10-12 15:21:53 -04:00
Tom Rothamel fa538db11f Add ATL support for polar coordinates and revolution. 2009-10-12 02:57:17 -04:00
Tom Rothamel e4dff364e1 Add language support for revolution. 2009-10-12 02:56:36 -04:00
Tom Rothamel 5d7faf0274 Add basic revolution support. 2009-10-12 02:38:17 -04:00
Tom Rothamel ee0cafcf67 Change ATL to use warpers. 2009-10-11 15:38:25 -04:00
Tom Rothamel 94506ad601 Give people a fighting chance of debugging ATL errors. 2009-10-11 00:27:25 -04:00
Tom Rothamel f0b54ea7f9 Mark window is shown in renpy.display_menu. 2009-10-08 19:58:03 -04:00
Tom Rothamel 11dbf23952 Applied patch from spikey to fix lp:409151 2009-10-08 01:15:34 -04:00
Tom Rothamel 8957aa4f2f fixes lp:413209. 2009-10-08 01:09:22 -04:00
Tom Rothamel 7e206549fd Attempt a fix for lp:435595. 2009-10-08 00:32:11 -04:00
Tom Rothamel f365408bbc Fix lp:415110. 2009-10-08 00:17:04 -04:00
Tom Rothamel 0bdf5cd904 Be more aggressive in handling events, so the queue is less likely to
overflow.
2009-10-07 23:41:53 -04:00
Tom Rothamel 9ba28e5cd2 Fixed style.rebuild. 2009-10-07 02:07:12 -04:00
Tom Rothamel 49ae49a82e Add ui.button's keymap argument.
Add support for deleting save games.
2009-10-07 01:35:55 -04:00
Tom Rothamel 23e9fffd68 Fix function leaking into atl interpolators. 2009-10-07 00:43:08 -04:00
Tom Rothamel 1c6df6230d Various improvements to ui.input, in support of a failed effort to
allow the user to change the label of a savegame.
2009-10-07 00:22:39 -04:00
Tom Rothamel 88584747e4 renpy.get_roll_forward 2009-10-05 14:09:12 -04:00
Tom Rothamel d77d1c266b When an image is shown, Ren'Py checks to see if there was a previous
image with that tag, and if that image used a transform. If this is
true, Ren'Py does two things:

# If the new image is not a transform, it wraps it in a transform.
# The transform is initialized to have the properties of the old transform.

The generally has the effect of "remembering" the position of images
shown on the screen. In some cases, this memory effect may override a
position encoded into an image. In that case, the image must be hidden
and shown again.
2009-10-04 22:45:03 -04:00
Tom Rothamel d9738a2809 Added a FPS meter to the Developer (shift+D) menu.
Added a .001s sleep for frames that are framerate-limited. This should
prevent Ren'Py from consuming all CPU unless the game is CPU-bound.
2009-10-04 16:38:38 -04:00
Tom Rothamel a40d997413 Implement visit method on the various ATL classes. 2009-10-04 12:02:06 -04:00
Tom Rothamel d444558b06 Add ATL image prediction.
Add ATL On and Event statements.
2009-10-04 11:48:22 -04:00
Tom Rothamel 07164c156b Pass statement, remove requirement for choice to take an expression. 2009-10-04 03:36:09 -04:00
Tom Rothamel 625df4c7ac Implement Transform statement.
Implement calling an ATLTransform, and using an ATLTransform as a parameterized image.
2009-10-04 02:59:28 -04:00
Tom Rothamel 75a047e18d Implement the time statement. 2009-10-04 01:54:25 -04:00
Tom Rothamel ade3d4f935 Implemented choice. 2009-10-04 00:05:16 -04:00
Tom Rothamel a0bc604d92 Implement ATL statements, including repeat and parallel. 2009-10-03 22:59:55 -04:00
Tom Rothamel 10743adcee Fix a bug that could cause us to read a negative amount from a file, with disasterous results. 2009-10-03 15:36:35 -04:00
Tom Rothamel 4e9af0789c First ATL animation. 2009-10-01 03:21:37 -04:00
Tom Rothamel 83f7ef6fd7 WIP checkin of ATL. 2009-09-30 15:44:19 -04:00
Tom Rothamel b2850cc6ac ATL work. 2009-09-29 03:03:46 -04:00
Tom Rothamel e41c71da98 Add ATL, parse multipurpose statement. 2009-09-27 01:07:22 -04:00
Tom Rothamel 0e3468872b Fix strings to not double-escape. 2009-09-01 10:06:42 -04:00
Tom Rothamel cd6a49e679 Allow translation. 2009-08-31 01:36:55 -04:00
Tom Rothamel 494e1a944b Fix regression that prevented {w=1} from working. 2009-08-13 20:19:58 -04:00
Tom Rothamel 1361825f5d Bump version. 2009-08-03 21:33:34 -04:00
Tom Rothamel b977e20156 Export RENPY_BASE environment variable to help editors find Ren'Py.
Make SciTE use this mechanism to launch games.
2009-08-03 21:28:45 -04:00
Tom Rothamel ff858e599d Ensure that distribute works with non-unicode directories. 2009-08-03 19:26:26 -04:00
Tom Rothamel 4c7bdede29 Bump version. 2009-07-30 21:24:55 -04:00
Tom Rothamel 4208836d77 The various layouts now change the mouse to the gamemenu or mainmenu
mouse, as appropriate.
2009-07-30 21:13:34 -04:00
Tom Rothamel 592341f5b1 Editor selection tweaks. (Respects RENPY_EDITOR) 2009-07-30 21:04:06 -04:00
Tom Rothamel bc41ebadce Hide console on lint. 2009-07-29 23:36:02 -04:00
Tom Rothamel 0deadb41ee Reset LD_LIBRARY_PATH before running zenity. 2009-07-29 23:33:06 -04:00
Tom Rothamel 076624c4c2 Normalize filenames when building distributions. This prevents
duplicates and ensures that we can properly replace file data. For
example, on Windows, this was preventing Info.plist from being
replaced.
2009-07-28 22:23:33 -04:00
Tom Rothamel 943b421779 Bump version to 6.9.3a. 2009-07-14 09:59:00 -04:00
Tom Rothamel c21acfb108 Fix missed launcher internationalization. Thanks go to Cato. 2009-07-14 02:47:05 -04:00
Tom Rothamel 8ae58964d8 NVL-mode tutorial. 2009-07-14 01:59:03 -04:00
Tom Rothamel 0cf0135a00 Fix imagemap_preferences to properly highlight button. 2009-07-13 01:47:55 -04:00
Tom Rothamel 11d8a8a249 The save location for screenshots has now been standardized. It is now
the directory containing the executable used to start Ren'Py, be it a
.exe, .py, .sh, or .app. (The latter is handled specially.)
2009-07-12 16:49:45 -04:00
Tom Rothamel 8edacbf9f1 Fixed launchpad bug #392322. 2009-07-12 15:48:23 -04:00
Tom Rothamel e6f49527b6 Ren'Py will now search for a directory named "Ren'Py Data" in the
directories above your Ren'Py installation. If found, save data will
be placed in that directory, rather than the system-specific default
location. This should help make it easier to develop Ren'Py games when
using a USB drive.
2009-07-12 15:39:15 -04:00
Tom Rothamel 9b897f7ffc l2: Automatically update a translations file, if it exists. 2009-07-12 13:38:07 -04:00
Tom Rothamel bc06c75cf2 l2: translations framework 2009-07-12 12:16:09 -04:00
Tom Rothamel ef324e2f9f Remove debug print. 2009-07-11 15:43:17 -04:00
Tom Rothamel 002ed104de Allow config.layer_clipping to specify layers that are larger than the
screen.
2009-07-11 15:27:51 -04:00
Tom Rothamel 211fd59d66 The window show and window hide statements now work with NVL-mode,
and are probably preferred over nvl show and nvl hide.
2009-07-09 01:48:36 -04:00
Tom Rothamel 3827198240 Fixed a 5-year-old bug in rollback that prevented an object from being
rollback if it was not being referred to by an object in the current 
state. For example, if we did:

$ o.foo = [ ]

"point a"

$ o.foo.append(1)

"point b"

$ o.foo = None

"point c"

and then rolled back from point c to point a, o.foo would improperly remain
[1]. (And would become bigger each time we rolled back and forth.)
2009-07-06 23:51:40 -04:00
Tom Rothamel 760d975d5b L2 initial release. 2009-07-05 18:23:59 -04:00
Tom Rothamel ad25bd6597 l2 is now the default launcher. 2009-07-05 14:24:36 -04:00
Tom Rothamel 9edc9aa741 l2: text editing support. 2009-07-05 14:23:09 -04:00
Tom Rothamel 061f481d10 l2: new 2009-06-30 01:47:36 -04:00
Tom Rothamel f33839212d Add header to pot file. 2009-06-27 23:10:19 -04:00
Tom Rothamel ac46d25470 Switch to using pot files to store translations. 2009-06-27 22:41:25 -04:00
Tom Rothamel efdf7d4e30 l2: archiver. 2009-06-27 22:05:21 -04:00
Tom Rothamel 76d942ebb3 l2: progress bars and success screen 2009-06-27 20:50:16 -04:00
Tom Rothamel 24881174ce l2: Now building distributions on win, mac, linux, all. 2009-06-27 19:48:09 -04:00
Tom Rothamel 88a44ea1a9 l2: scanning files for distribution
l2: builds windows distribution
2009-06-27 18:42:57 -04:00
Tom Rothamel d0aed4a284 l2: distribute interface. 2009-06-27 14:31:03 -04:00
Tom Rothamel 47f5cce2c3 l2: Now can choose between multiple kinds of themes. 2009-06-27 00:11:03 -04:00
Tom Rothamel 534f669e1d l2: editor
l2: lint
l2: delete persistent
l2: start on theme changing
2009-06-26 04:17:08 -04:00
Tom Rothamel 2f422080e9 l2: game directory. 2009-06-26 02:08:11 -04:00
Tom Rothamel 6efbd90a7c Beginning work on Launcher2. 2009-06-26 01:59:14 -04:00
Tom Rothamel 446b5fd32f Also adjust times on root. 2009-06-12 16:36:16 -04:00
Tom Rothamel 705dc5f53b Fixed a problem that could cause children of the various
MultiBox-based displayables (Fixed, HBox, VBox, and LiveComposite) to
display animations incorrectly.
2009-06-11 21:50:44 -04:00
Tom Rothamel c5dba9f4a1 The new ui.detached function allows one to use the ui functions to
define displayables without adding them to a layer.
2009-06-11 21:09:56 -04:00
Tom Rothamel 904c2ebe73 Fix bug that caused renders to be cached without respect to displayable time. 2009-06-09 21:27:31 -04:00
Tom Rothamel 275f52814f Fix im.py:703: DeprecationWarning: integer argument expected, got float 2009-05-27 23:39:42 -04:00
Tom Rothamel 693cf9f8c9 Version bumps for 6.9.2 2009-05-05 02:09:59 -04:00
Tom Rothamel 35c2ec5a83 Fixed a bug that could cause it to take two tries to define a joystick
button.
2009-05-02 23:31:13 -04:00
Tom Rothamel 3b60efd744 Update changelog.
Fix dequeue to have correct semantics.
2009-05-02 23:05:27 -04:00
Tom Rothamel daac5d8ebf Doing anything besides rollforward during rollback now terminates
rollback.

Queueing music immediately after a play statement now allows the first 
track from the play statement to play.
2009-05-02 22:41:04 -04:00
Tom Rothamel 1fab6d8707 Prevent slow_done from being repeatedly called. 2009-05-02 21:32:24 -04:00
Tom Rothamel aaff11668a Catch errors when saving screenshots. 2009-05-02 20:21:18 -04:00
Tom Rothamel 536341a819 Fix problem with window icon on 16bit screen. 2009-05-01 22:16:29 -04:00
Tom Rothamel b9c468e446 Fix repeate word in the question. 2009-04-27 07:50:09 -04:00
Tom Rothamel 03edec9785 Fix a bug with Container. 2009-04-24 19:22:04 -04:00
Tom Rothamel da70a85d75 Bring in changes from staging. 2009-04-23 00:53:14 -04:00
Tom Rothamel 4ba170b8d8 Bring in features from mainline. 2009-04-23 00:52:04 -04:00
Tom Rothamel 72ae15c635 Back out some changes that lead to a slowdown in dissolve. 2009-04-22 23:16:49 -04:00
Tom Rothamel 1179066dda Bump version to 6.9.1h 2009-04-20 23:05:00 -04:00
Tom Rothamel 62d0093bee End skipping on rollback. 2009-04-20 23:01:10 -04:00
Tom Rothamel 55c0d3b4a7 Convert to alpha before smoothscaling windows icon. 2009-04-19 16:03:42 -04:00
Tom Rothamel 92014eafdd Fix a bug with the icon on windows. 2009-04-19 16:01:55 -04:00
Tom Rothamel b1be4c8ed4 The library alias for config has been removed. 2009-04-19 02:00:53 -04:00
Tom Rothamel 06f36dd8d1 Prevent infinite loop in error handling. 2009-04-19 01:31:26 -04:00
Tom Rothamel 3a15f5c717 6.9.1g 2009-04-18 23:24:22 -04:00
Tom Rothamel 031f3338b1 Scale screenshot using an alpha image. 2009-04-17 19:44:00 -04:00
Tom Rothamel 66125b2e10 Bump version. 2009-04-16 21:03:48 -04:00
Tom Rothamel e6becffc4c Blacklist obsolete file formats.
Properly deallocate VideoStates of short/invalid media files.
2009-04-16 19:31:50 -04:00
Tom Rothamel d281e57879 Fix reported bugs.
Make scaling more accurate.
2009-04-16 18:04:10 -04:00
Tom Rothamel 5196a970a0 Channels now have a default tightness. 2009-04-15 12:12:40 -04:00
Tom Rothamel efcbc92e7a Reimplement smoothscale in terms of _renpy.pixellate and _renpy.bilinear. 2009-04-15 01:10:13 -04:00
Tom Rothamel 142fa33548 Changelog updates. 2009-04-13 23:49:39 -04:00
Tom Rothamel 4b6e871ac6 6.9.1d 2009-04-13 23:40:13 -04:00
Tom Rothamel 1fbbad053a Add _rollback. 2009-04-13 23:11:39 -04:00
Tom Rothamel 61aa933d97 Fix rendering of empty image-based fonts. 2009-04-13 19:31:11 -04:00
Tom Rothamel 70c3ea773e Fix conflict between window show and shift+>. 2009-04-13 11:54:40 -04:00
Tom Rothamel a16de04682 The demo now passes with RENPY_SCALE_FACTOR=1.5. This required various fixes.
Prevent blit_lock from being held over a traceback.
2009-04-13 01:27:34 -04:00
Tom Rothamel 0280a12589 In SayBehavior, when a click comes in at the same time as a skip
timeout, favor the click.
2009-04-12 23:53:22 -04:00
Tom Rothamel 4dc8fef9c1 Fix a problems in scaling caused when images of different physical
sizes map to the same virtual size.

Fix a problem with restart.
2009-04-12 23:47:42 -04:00
Tom Rothamel 2c02645ec7 Lint now reports all uses of missing files, rather than just the first. 2009-04-12 15:14:19 -04:00
Tom Rothamel 40bad327fe renpy.full_restart now takes a target parameter, which is a screen on
the main menu to target.
2009-04-12 14:48:26 -04:00
Tom Rothamel f5653d3c4d Releasing 6.9.1c. 2009-04-11 14:16:14 -04:00
Tom Rothamel 4026d7818b Provide a basic mechanism for invoking the main menu with a particular screen. 2009-04-11 14:04:54 -04:00
Tom Rothamel a0fda2f058 Do not offer an editor if none exists.
Modified setup.py to check dependencies. It can now be used to build
on a stock ubuntu system, if all dependencies are in place.
2009-04-11 13:47:35 -04:00
Tom Rothamel 93546e2d5c Allow the movie channel to play back while muted. 2009-04-11 01:41:29 -04:00
Tom Rothamel 85a562713a Fix memory leak in the redraw queue. 2009-04-11 00:47:51 -04:00
Tom Rothamel 4e9beb1a5d Minor tweaks to the includes of ffdecode.c 2009-04-10 11:01:12 -04:00
Tom Rothamel 522333e0f5 Update help file to include a link to renpy/LICENSE.txt. 2009-04-10 10:15:06 -04:00
Tom Rothamel b4c4d0264c Make scale correct and higher quality. 2009-04-10 02:40:15 -04:00
Tom Rothamel 21c3187fa3 Fix help on an imagemap menu. 2009-04-10 00:03:42 -04:00
Tom Rothamel b377cfcdef Only play activate and hover sounds if defined. 2009-04-09 22:52:09 -04:00
Tom Rothamel 5d384e531d Drop log level in ffdecode.
Bump version to 6.9.1b.
2009-04-09 18:41:25 -04:00
Tom Rothamel 2b00c64973 More accurate durations on streams. 2009-04-09 14:44:48 -04:00
Tom Rothamel 7c777dea22 Scaling is now automatically enabled if the window won't fit on the screen. 2009-04-08 00:41:10 -04:00
Tom Rothamel 9d0c77917d Remove debugging code in nvl mode. 2009-04-07 11:59:32 -04:00
Tom Rothamel 6d40ced435 Updated renpy.sh to work on the Mac again. 2009-04-07 02:13:36 -04:00
Tom Rothamel 0675ee7f79 Fix clipping of BMFonts. 2009-04-06 23:43:38 -04:00
Tom Rothamel 0aec15a848 Fix problem with sounds being changed upon exiting a context. 2009-04-05 21:25:50 -04:00
Tom Rothamel 2ff01a99ac Update distribute.py to deal with new module files. 2009-04-05 16:21:06 -04:00
Tom Rothamel 0596ed7739 Update license for 6.9.1. 2009-04-05 16:10:35 -04:00
Tom Rothamel d8beb99964 There is a new config.windows_icon variable, that lets one set the
window icon for Windows separately from Mac OS X and Linux.
2009-04-05 15:59:00 -04:00
Tom Rothamel 648dfd8d75 Fix bugs revealed by the mediatest game. 2009-04-05 14:53:02 -04:00
Tom Rothamel 279a7a3fc8 Don't use SDL_Mix_Audio, which can have weird alignment
rules. Instead, just mix things ourselves in C.

Random other release engineering things.
2009-04-05 12:07:59 -04:00
Tom Rothamel a62aede62f Add video to the demo.
Tweak video playback to remove some logging, and some force stops.
2009-04-04 22:13:20 -04:00
Tom Rothamel b07bbbc1c9 Report more relevant errors when various commands occur during the init phase. 2009-04-04 19:08:08 -04:00
Tom Rothamel 547ce87eaa Add more window control statements to demo.
Properly compute size of Transform.

Eliminate dependency loop that was causing Renders to leak.
2009-04-04 18:08:43 -04:00
Tom Rothamel c206456d00 Modify demo game to use window show and window hide. 2009-04-04 14:42:56 -04:00
Tom Rothamel 590dd13f8f The new window statement allows one to control if an empty window is
shown when no character is speaking. Specifically, the

window show [transition]

statement shows the window, and the 

window hide [transition]

statement hides it. Both can take an optional
transition. config.empty_window is responsible for displaying the
window, while config.window_show_transition and
config.window_hide_transition are default transitions. The state of
the window can be determined by testing _window. The
renpy.shown_window function can be called to suppress displaying the
empty window, and is called automatically when characters speak.



The new renpy.get_placement function returns information about the
placement of displayables.
2009-04-04 14:02:00 -04:00
Tom Rothamel afd0e70479 Deal with the case where a bmfont has a negative offset for the first
character in a string.
2009-04-04 03:58:21 -04:00
Tom Rothamel b9166b35b3 The define.move_transitions function can now pass keyword arguments to
the moves it creates. The most useful thing with this is to pass
subpixel=True, in order to create subpixel move transitions.
2009-04-04 03:32:44 -04:00
Tom Rothamel 333fa51862 Hotspots for the game menu buttons can be defined as part of
layout.imagemap_load_save, layout.imagemap_preferences, and
layout.imagemap_yesno_prompt. Doing so prevents layout.navigation from
being called for that screen. It also allows opaque imagemaps to be
used, rather than forcing them to be transparent to allow the
navigation to show through.
2009-04-04 03:00:31 -04:00
Tom Rothamel ec6d256707 Support play <channel>, queue <channel>, and stop <channel> statements. 2009-04-03 22:36:44 -04:00
Tom Rothamel 86764d92a6 Fixed a bug that could cause crashing when rolling back to a Zoom with
an after_child.
2009-04-03 17:50:45 -04:00
Tom Rothamel cf1c9b3e5e Fixed a bug that caused layout.imagemap_main_menu to call a label even
though there was a button with the same name.
2009-04-03 14:05:08 -04:00
Tom Rothamel b15d7179b6 Zooming was totally broken when bilinear=False. 2009-04-03 02:29:11 -04:00
Tom Rothamel 72312f1249 Update the keymap to support alt-enter to toggle fullscreen, alt-q to quit. 2009-04-03 02:08:03 -04:00
Tom Rothamel 373198f628 Various minor changes required to get movie_cutscene working, and keep it compatible with the old version. 2009-04-03 01:58:36 -04:00
Tom Rothamel e96d8c774b Reimplement movie_cutscene.
Fix bugs that prevented sound from looping in some cases.
2009-04-02 22:34:07 -04:00
Tom Rothamel 8e221e183d Implement changing the volume over time.
Re-implement sound in terms of music.
2009-04-02 18:15:59 -04:00
Tom Rothamel 2249c49303 Added the PNG save code back in, so we can save a PNG file into a
memory buffer. 

Scout is hereby banned from crayons until she figures out a way to use
them that doesn't buffer-overrun pygame's TGA-writer.
2009-04-01 22:21:11 -04:00
Tom Rothamel 388362d318 Many fixes to movie playback.
Munge filenames that include non-identifier characters.
2009-04-01 04:28:50 -04:00
Tom Rothamel a554ea8e8b Update munge algorithm to deal with characters that cannot appear in python identifiers. 2009-04-01 04:22:01 -04:00
Tom Rothamel 090719deee Make ffdecode drop frames to maintain sync.
debug_sound will now enable output of ffmpeg status information.
2009-04-01 04:00:53 -04:00
Tom Rothamel e29a162a85 Discover AVSEEK_SIZE. Implement it. Fix bug that caused AVI files not
to parse.  It's _never_ easy. :-)
2009-04-01 03:05:34 -04:00
Tom Rothamel e17fa9edc2 The code now builds properly on Windows, but immediately crashes upon playing
a video.
2009-03-30 02:26:09 -04:00
Tom Rothamel e57529257e Remove more references to save_png. 2009-03-30 01:03:23 -04:00
Tom Rothamel 866f9228ef Get the Movie displayable working.
Remove image writing from _renpy, now that it's in pygame.
2009-03-30 01:00:23 -04:00
Tom Rothamel 3a38a8b89b Fix seeking bug that was affecting AVI playback. 2009-03-29 18:54:20 -04:00
Tom Rothamel 0509a23881 Fullscreen movie playback works. 2009-03-29 16:19:49 -04:00
Tom Rothamel cbb0741ab9 Rewritten sound support now works. (At least in the sense of not
crashing or leaking memory.)
2009-03-29 04:19:15 -04:00
Tom Rothamel 716bb0fac1 style, not 'style'. 2009-03-28 11:07:50 -04:00
Tom Rothamel acb193bd7b Moved all of the motions into their own file, as there's a reasonably
logical split between them and the stuff that remained in
renpy.layout. (And since two ~1k line files are more readable than one
2k line file.)
2009-03-28 01:18:10 -04:00
Tom Rothamel 0a09beb731 Fix FactorScale, and add to demo to be sure it works. 2009-03-28 00:22:10 -04:00
Tom Rothamel 93dca3df73 The Motion (including Move and Pan), Zoom, RotoZoom, and FactorZoom
displayables now use the style.motion style, which now has xanchor and
yanchor both set to 0. This gives these movements the same semantics
when used inside an image clause as they have outside one.
2009-03-27 23:08:34 -04:00
Tom Rothamel 008143a3da im.Grayscale and im.Sepia now take properties, so they can be
positioned.
2009-03-27 04:58:40 -04:00
Tom Rothamel 30a4db432e Fix problem computing the size of the render of a Transform. 2009-03-27 04:39:30 -04:00
Tom Rothamel 65546baf01 Remove obsolete files. 2009-03-27 03:53:55 -04:00
Tom Rothamel 8be5069490 Fix fixes. 2009-03-26 03:18:39 -04:00
Tom Rothamel 802410644b Fix locking conflict that could cause movies & music to not end.
Add some checking that should deallocate all renders.
2009-03-26 02:23:01 -04:00
Tom Rothamel e74b172372 Remove debug prints.
Add better locking to codec open/close, which prevents ffmpeg from complaining.
2009-03-24 06:36:21 -04:00
Tom Rothamel 23ac59588e Fix problems with non-44100 sampling rates. 2009-03-24 04:58:46 -04:00
Tom Rothamel 7f6e9de5e5 Integrated ffmpeg with pss. 2009-03-24 01:16:43 -04:00
Tom Rothamel 143906ae9d Begin work to integrate ffmpeg. 2009-03-22 21:16:17 -04:00
Tom Rothamel b003371456 6.9.0h 2009-03-21 17:36:00 -04:00
Tom Rothamel 1e6fa37a10 Fix offset problem in RotoZoom 2009-03-21 02:35:01 -04:00
Tom Rothamel 935786a161 Fix prior fix. 2009-03-19 23:51:46 -04:00
Tom Rothamel 23c4d07432 Fix bug with clipping. 2009-03-19 01:41:25 -04:00
Tom Rothamel 77107ef1eb Fix memory leak in Grid when bigger than the screen. 2009-03-18 02:12:21 -04:00
Tom Rothamel cac4238b12 6.9.0g 2009-03-17 23:46:55 -04:00
Tom Rothamel 8c402c2dc3 Fix button_menu problem. 2009-03-17 23:12:31 -04:00
Tom Rothamel 9bff95826a Fix bug in is_pixel_opaque. 2009-03-17 23:06:22 -04:00
Tom Rothamel fc0f7cecc4 Fix for viewport focus bugs? 2009-03-16 01:42:27 -04:00
Tom Rothamel 0b5c5ce17e Fix memory leak bug. 2009-03-16 00:45:43 -04:00
Tom Rothamel 9aa61532ff Refix bugs in pefile.py. 2009-03-12 22:39:56 -04:00
Tom Rothamel 3271557f8a Fix pefile.py to match latest py2exe. 2009-03-11 21:08:31 -04:00
Tom Rothamel 9587342129 6.9.0f
Fixes an overflow bug in subpixel.
2009-03-10 20:07:08 -04:00
Tom Rothamel 9b4821308d Change semantics of set_pan to be slightly more useful.
6.9.0e.
2009-03-09 23:12:04 -04:00
Tom Rothamel 663978906a Added renpy.partial. 2009-03-08 20:49:12 -04:00
Tom Rothamel 60f3308b8b Autobar now uses floating point numbers, making it smoother when the range is small.
Up the script version to 6.9.0.
2009-03-08 10:09:43 -04:00
Tom Rothamel a305d6e725 6.9.0d 2009-03-08 01:58:50 -05:00
Tom Rothamel 1feff344b8 New clipping code. 2009-03-07 21:23:01 -05:00
Tom Rothamel 4fa4ffae54 Releasing 6.9.0c. 2009-03-06 18:32:31 -05:00
Tom Rothamel 4ecd72de6e Readying 6.9.0b 2009-03-02 22:40:15 -05:00
Tom Rothamel 3ec495c3fc Fix fill problem.
Move only named layers.
Fix focus problem.
2009-03-02 21:50:50 -05:00
Tom Rothamel 5efc437384 Fixed rounding issue in place. 2009-03-02 15:29:55 -05:00
Tom Rothamel a777f4d3b1 Fix negative render size. 2009-03-01 20:06:19 -05:00
Tom Rothamel ff139808ff 6.9.0a 2009-03-01 14:23:58 -05:00
Tom Rothamel 07136f9be8 2009 2009-03-01 13:37:06 -05:00
Tom Rothamel 35fc2295e9 Various fixes. 2009-03-01 13:35:36 -05:00
Tom Rothamel 2b262ccca3 Fix annoying windows bugs. 2009-03-01 03:10:42 -05:00
Tom Rothamel d42aab3dff Movement demo. 2009-02-28 12:20:32 -05:00
Tom Rothamel 612c347498 Add transform demo. 2009-02-28 12:09:06 -05:00
Tom Rothamel 3c4540131a Remove speex.
Images are now allowed outside of init blocks.

Unicode strings are automatically prefixed with u in python code.
2009-02-27 00:45:55 -05:00
Tom Rothamel 43317f6e02 Add config.editor_file_separator 2009-02-24 23:31:42 -05:00
Tom Rothamel 523742d8de Write out launcherinfo.py 2009-02-24 23:11:18 -05:00
Tom Rothamel 9516ee910e The reporting of parse errors involving missing quotes has been
improved.

Added scaling of the subpixel function.
2009-02-24 03:49:55 -05:00
Tom Rothamel 3ea31a3862 Added config.label_callback. 2009-02-23 01:35:07 -05:00
Tom Rothamel 649411a4ef ui.transform and ui.autobar 2009-02-22 02:31:56 -05:00
Tom Rothamel a0e60e5453 Added transform and renpy.Container. 2009-02-21 15:34:16 -05:00
Tom Rothamel e3f1f40a78 Fix it for ppc etc. as well. 2009-02-19 03:43:03 -05:00
Tom Rothamel d0177f4c52 Implemented Transform
Fixed segfault bug in transform32_mmx.
2009-02-19 03:38:25 -05:00
Tom Rothamel 84a3a55a03 Update the changelog. Ensure draw_func draws on an integer pixel boundary. 2009-02-16 03:14:38 -05:00
Tom Rothamel 048075b47a Subpixel blitting works. Transform + alpha blitting is untested. 2009-02-16 02:41:18 -05:00
Tom Rothamel fab097c92a Render rewrite is roughly at parity with previous functionality. 2009-02-14 17:44:08 -05:00
Tom Rothamel 9d26bd8c04 WIP on Render rewrite. 2009-02-10 00:32:51 -05:00
Tom Rothamel 664d243c23 Implemented subpixel rendering in _renpy. 2009-01-29 02:58:48 -05:00
Tom Rothamel 9a0906655d Fix problems with 16 bit platform and config.window_icon. 2009-01-11 20:46:01 -05:00
Tom Rothamel 13d60f2741 Began adding subpixel support. 2009-01-05 01:28:06 -05:00
Tom Rothamel 7d4de64d0b Fixed an issue with imouto-mode that cropped up when a Frame scales something down to nothing. 2008-12-30 15:00:18 -05:00
Tom Rothamel 9ada2d9884 Deal with environment.txt. 2008-12-30 12:37:52 -05:00
Tom Rothamel a5f1951cfb Fixed multiple imouto-mode problems. 2008-12-30 12:27:03 -05:00
Tom Rothamel 98850e4c5c Added im.FactorScale, renpy.game_menu, and ui.gamemenus. 2008-12-29 12:25:29 -05:00
Tom Rothamel 709e1f925d Added renpy.sound.set_pan 2008-12-24 13:45:43 -05:00
Tom Rothamel b11ae331a5 Update renpygame.
Autosave on quit.

Fix memory leak via adjustments.
2008-12-23 00:41:15 -05:00
Tom Rothamel 3ba4b26b99 Transform (Rotozoom) now support subpixel alpha. 2008-12-16 03:29:43 -05:00
Tom Rothamel b864077017 Improved Rotozoom's correctness and speed. 2008-12-15 21:57:27 -05:00
Tom Rothamel d411dff1c0 Overlay behavior change.
Fix divide-by-zero in Alpha.
2008-12-06 01:52:12 -05:00
Tom Rothamel 7fc7453450 Releasing 6.8.1a. 2008-11-23 13:05:47 -05:00
Tom Rothamel 1799971885 Implement RENPY_LESS_UPDATES and RENPY_LESS_MOUSE.
Build iLiad distributions.

Add support for rebuilding distributions.
2008-11-23 11:15:26 -05:00
Tom Rothamel b999911292 Untested support for building iLiad distributions. 2008-11-21 02:59:49 -05:00
Tom Rothamel 29e0f9ad21 Working on iLiad support. 2008-11-21 02:09:54 -05:00
Tom Rothamel d821b7eb8b Fixed a bug that occured when space characters were inserted
immediately after a newline.
2008-11-20 01:32:40 -05:00
Tom Rothamel 272a214304 Modified lint slightly.
Added Alpha.
2008-11-18 01:35:29 -05:00
Tom Rothamel 7f15b351ee Add support for a user-defined default statement.
Speed up parsing a little.
2008-11-17 02:40:55 -05:00
Tom Rothamel 5a6a12a14a Blacklist renpy.display from being reloaded. 2008-11-17 00:05:31 -05:00
Tom Rothamel 01493c7063 Splitting cardgame. 2008-11-10 01:30:01 -05:00
Tom Rothamel 244055fcb7 Modified presplash.py so that it ignores errors forking of a second process. 2008-11-09 15:50:22 -05:00
Tom Rothamel 0415af5f31 Better support for scaling.
The launcher will now may sys.executable point to an existing file.
2008-11-09 15:36:16 -05:00
Tom Rothamel f73372c924 iRex iLiad support. 2008-11-02 16:14:16 -05:00
Tom Rothamel 65cdc24e37 Add staticgray support, for iLiad. 2008-11-02 08:43:53 -05:00
Tom Rothamel 1b2d439651 Releasing 6.8.0 2008-10-25 14:52:49 -04:00
Tom Rothamel b383942c69 Create icon group for loaded icons. (Took a week :-( ) 2008-10-25 01:45:03 -04:00
Tom Rothamel 73bd109abb Another try at fixing icons. 2008-10-17 22:57:18 -04:00
Tom Rothamel 33ffd5dedb Fix for a problem with icons that specify a size and shouldn't. 2008-10-17 20:21:21 -04:00
Tom Rothamel 7422fe43b8 Fix a bug building mac distributions on windows.
Ready 6.8.0d.
2008-10-17 10:06:57 -04:00
Tom Rothamel 879c45a5b3 Releasing 6.8.0c 2008-10-15 15:43:29 -04:00
Tom Rothamel db0d205374 Added BMFont support. 2008-10-15 15:36:05 -04:00
Tom Rothamel f20594a2b5 Add build_launchertrans to version control.
Remove obsolete files.
2008-10-15 12:40:26 -04:00
Tom Rothamel ee017f4bc6 The launcher now deals better with long project names.
The launcher now warns if java is missing.
2008-10-14 21:20:14 -04:00
Tom Rothamel 4d089f9a0e Fixed various editor bugs. 2008-10-14 19:35:02 -04:00
Tom Rothamel e7f9c5c2ac Making ready for 6.8.0b 2008-10-14 17:43:31 -04:00
Tom Rothamel 2df8d38c2f Add config.missing_background. 2008-10-14 17:36:51 -04:00
Tom Rothamel 17ac44d610 Ren'Py now supports the MudgeFont image-based file format. The new
renpy.register_mudgefont function is used to register a
MudgeFont.
2008-10-14 17:30:56 -04:00
Tom Rothamel 3c52c2ae3f Fixed positioning of 640x480 preferences. 2008-10-14 16:29:45 -04:00
Tom Rothamel 5a5115e29f Fixed a problem with outlines and bold/italic text. 2008-10-14 16:07:29 -04:00
Tom Rothamel 5c7ff1c97b Fixed a bug that prevented styles from being rebuilt. 2008-10-13 23:19:04 -04:00
Tom Rothamel cc820a3595 Fix bugs pointed out by delta at:
http://lemmasoft.renai.us/forums/viewtopic.php?p=58835#p58835
2008-10-13 22:49:23 -04:00
Tom Rothamel 48fff48d28 Updated tag script. 2008-10-13 17:59:53 -04:00
Tom Rothamel 1684243e57 Finalizing 6.8.0 2008-10-13 17:56:13 -04:00
Tom Rothamel 45e14781eb Custom mouse cursors should now be properly hidden when the mouse
leaves the window. Previously, this failed to work on the Mac OS X
platform.
2008-10-13 16:02:53 -04:00
Tom Rothamel 5ceea7b4a5 The new unscrollable style property allows one to choose how
unscrollbable scrollbars are displays. None keeps the current
behavior, which shows the bar normally. If set to "insensitive", the
bar becomes insensitive, while if set to "hide", the bar is not 
drawn at all.
2008-10-13 13:32:27 -04:00
Tom Rothamel 17e716b4c3 The presplash code now looks for presplash.jpg in the game directory
if presplash.png is not found.
2008-10-13 10:53:04 -04:00
Tom Rothamel adfdbf3246 Added icons to The Question. 2008-10-13 02:17:15 -04:00
Tom Rothamel 03b757d60e Added more files into bzr.
Fixed problem with pefile.py not being able to resize the resource segment... now it can.
2008-10-13 01:43:30 -04:00
Tom Rothamel 12c6d77990 Moved to bazaar. Added file to ignore temporaries and generated code. 2008-10-12 22:57:21 -04:00
Tom Rothamel 8a7373f412 Adding some files to subversion. 2008-10-13 00:08:29 +00:00
Tom Rothamel df28ff5bdc Updated distribute.py to respect new launcher directory. 2008-10-12 22:15:28 +00:00
Tom Rothamel 2afc2beb5d Refactored font code out into its own file.
Replaced asfont with a new font.

Updated the demo, generally got things ready for release.
2008-10-12 17:31:00 +00:00
Tom Rothamel 3896bf3aad Newly-created games will have a Help option on the main and game
menus. This is controlled by the config.help variable. By default 
the help system shows the README.html file in the game's base directory.

The new RENPY_SCREENSHOT_PATTERN environment variable lets you
configure the name of screenshot files. Ren'Py can now write out
screenshots as JPGs, as well as PNGs.
2008-10-11 18:52:37 +00:00
Tom Rothamel 744ace5ab6 Alt-f4 and Alt-q now trigger the quit event, as if you pressed the
quit button on the top of the window. The first press brings up the 
quit prompt, and a second press forcibly terminates the game. Alt
is mapped to Command on the Mac, so Command-q now works on Macintosh.

Alt/Command-h hides (iconifies) the window.
2008-10-10 19:51:53 +00:00
Tom Rothamel 4bf0b74b6c update changelog 2008-10-10 15:15:42 +00:00
Tom Rothamel 5c6e624ff7 If the file icon.ico is present in the base directory, it will be used
as the icon of the windows exe when building the windows
distribution. Similarly, the file icon.icns will be used as the icon
of the Macintosh application. (Note that .icns is a different file format 
from .ico.)

The Macintosh application will now show the name of the game in the 
menu bar, rather than "Ren'Py Launcher".
2008-10-10 15:09:44 +00:00
Tom Rothamel 6c0d5a7a10 Move launcher directory. 2008-10-10 13:52:45 +00:00
Tom Rothamel b34cb21f0c The newly-documented Style.set_parent method lets you change the
parent of a style. The new style.rebuild function allows styles to be
rebuilt even after the game has begun running, with some
caveats. (Changes are not persisted, for one thing.)


The new renpy.easy_displayable method can be used by user-defined
displayables to convert strings into Solid or Image displayables.
2008-10-10 13:51:55 +00:00
Tom Rothamel b77eb7ed0b When config.developer is set and an undefined image is used in a show
or scene statement, a list of undefined images will appear centered at
the top of the screen. A black screen will be show instead of any missing
background. This makes it easier to write a script before all images are
present.
2008-10-10 12:59:27 +00:00
Tom Rothamel 34193c510e Fixed problem with bytecode.rpyb being opened in ascii mode. Once again, I hate windows. 2008-10-08 16:05:07 +00:00
Tom Rothamel 55f1eaf5da There is now a new justify style property, that causes lines of text
to have additional whitespace inserted between words so that the left
and right margins are even, except on the last line of a paragraph.
2008-10-05 21:31:00 +00:00
Tom Rothamel 9b74b5a367 * Outlined text is now possible. The new outlines style property
allows you to specify one or more outlines, including offset
ones. This allows for several fairly complicated text effects, similar
to what you'd see in modern subtitles. [demo]

* We believe the bug preventing fonts from being archived has been
fixed. It should now be possible to include a font in an archive, and
have that work. The archiver has been modified to allow this.
2008-10-04 16:09:13 +00:00
Tom Rothamel 008922edc6 Added support for one or more outlines around text. This allows the
sort of text effects one sees in modern subtitles.
2008-10-04 02:00:42 +00:00
Tom Rothamel 82edca785f Added _renpy_font module. 2008-10-04 00:52:04 +00:00
Tom Rothamel b271baecd5 2008-10-03 21:20:12 +00:00
Tom Rothamel 9b48cd2a35 Adding font stuff. 2008-10-03 19:42:16 +00:00
Tom Rothamel 183f6ace88 2008-10-01 20:23:40 +00:00
Tom Rothamel b5987cd6ea Minor editing fixes. 2008-10-01 20:21:55 +00:00
Tom Rothamel 6e153a5070 ready for 6.7.1c 2008-09-28 15:12:31 +00:00
Tom Rothamel 56e59d91dd The Question art refresh 2008-09-28 14:45:00 +00:00
Tom Rothamel fd91c6811f The new renpy.copy_images function copies images with one prefix to a
second prefix.
2008-09-27 03:06:04 +00:00
Tom Rothamel 9914f4e145 2008-09-26 03:38:16 +00:00
Tom Rothamel 458db1095a 6.7.1b 2008-09-26 03:32:13 +00:00
Tom Rothamel 93c4f964ca Ren'Py now limits the framerate to 60 frames per second, which should
improve smoothness on fast enough machines.


Ren'Py now scans the game directory for all .rpa files, and adds them
to config.archives automatically. In addition, the archiver tool now
prompts for the name of archives, and uses filename patterns to decide
what to archive. This makes it easier to break the files up into
multiple archives, in a single game.
2008-09-26 03:21:17 +00:00
Tom Rothamel 743c459789 Fix error reporting on renpy.easy.color. 2008-09-24 14:05:06 +00:00
Tom Rothamel 4f4c424a67 2008-09-22 02:39:42 +00:00
Tom Rothamel df40e340e9 6.7.1a final 2008-09-22 02:35:38 +00:00
Tom Rothamel f08828f130 User-defined displayables can now use a canvas to draw lines, polygons, arcs,
and ellipses on the screen.

Ready for 6.7.1a.
2008-09-22 00:36:47 +00:00
Tom Rothamel d28b6ab04f The definitions of config.editor and config.editor_transient have been
changed. While it's simplified, older values may no longer
work. Please read the documentation for details of the new syntax.
2008-09-21 20:20:23 +00:00
Tom Rothamel 9cf8802c28 new distribution scheme. 2008-09-20 18:38:00 +00:00
Tom Rothamel 5e5d8b441a 2008-09-19 18:27:06 +00:00
Tom Rothamel 2e7240c29d The new _window_subtitle variable allows a portion of the window
caption to be varied depending on the game circumstances. The new
config.menu_window_subtitle
2008-09-19 18:26:59 +00:00
Tom Rothamel 3aed142859 config.editor changes 2008-09-17 00:13:28 +00:00
Tom Rothamel b087b29a22 Work around bug in subprocess.Popen.__del__ 2008-09-16 03:56:52 +00:00
Tom Rothamel 5687f6fbaf 2008-09-16 03:32:00 +00:00
Tom Rothamel 57bfebe0b1 2008-09-16 01:53:20 +00:00
Tom Rothamel 9dce927cd0 2008-09-16 01:52:29 +00:00
Tom Rothamel 3c1df298c7 2008-09-16 01:43:34 +00:00
Tom Rothamel 68d11f0a7b 2008-09-16 01:42:41 +00:00
Tom Rothamel e55bc7be71 2008-09-12 05:50:30 +00:00
Tom Rothamel 031f82cf63 Fix problems with presplash. 2008-09-12 05:44:11 +00:00
Tom Rothamel 99aa549b6b Fixed bugs with ctrl and suppressed transitions. 2008-09-12 04:50:29 +00:00
Tom Rothamel 7f1ec73a34 cardgame 1 2008-09-10 04:58:08 +00:00
Tom Rothamel ef81a0bddc 6.7.0b 2008-09-09 17:13:48 +00:00
Tom Rothamel 86d90aa924 Finalized 6.7.0. 2008-09-08 00:06:42 +00:00
Tom Rothamel 704440287d 2008-09-07 19:45:08 +00:00
Tom Rothamel ae09666322 Added homedir saves. 2008-09-07 18:22:19 +00:00
Tom Rothamel 3facb92ca5 imagemap layouts 2008-09-07 04:49:20 +00:00
Tom Rothamel b2dd429f84 spline editor done. spline integration. 2008-09-06 15:46:36 +00:00
Tom Rothamel 3d5058ee90 spline editor 2008-09-06 14:49:17 +00:00
Tom Rothamel 44ed2c1f91 Spline editor. 2008-09-06 06:30:26 +00:00
Tom Rothamel ffd5971ea6 Delta's feature - config.nvl_show_display_say 2008-09-06 03:32:30 +00:00
Tom Rothamel eda2d64dfe The renpy.full_restart function now takes an argument that lets one
specify the label that will be restarted to. By calling
renpy.full_restart(label="start"), one can start a new game.
2008-09-06 03:13:52 +00:00
Tom Rothamel 4ebc96723b The new SizeZoom motion function allows displayables to be scaled to a
specific size. Along with SizeZoom, the Zoom and FactorZoom functions get 
a new repeat argument that makes the zooms repeat.
2008-09-06 01:36:20 +00:00
Tom Rothamel 2ce8ba3406 The new layout.imagemap_navigation layout lets one use an imagemap to
define the game menu navigation.
2008-09-05 23:34:13 +00:00
Tom Rothamel 96fc7b5aba Fixed style inheritance, which in some cases wouldn't pick up the
style inherited from.

Fixed a bug that prevented the style inspector from working on animated
screens.
2008-09-05 20:19:39 +00:00
Tom Rothamel 08a37b90a4 2008-09-02 05:08:40 +00:00
Tom Rothamel 1d4ff67612 2008-09-02 04:57:15 +00:00
Tom Rothamel 23dd507913 Added Klondike solitaire. 2008-09-02 04:46:49 +00:00
Tom Rothamel e6e3d3e546 Initial checkin of cardgame 2008-09-01 23:27:18 +00:00
Tom Rothamel 62273459d8 2008-08-29 03:11:13 +00:00
Tom Rothamel d5f6741bd9 2008-08-29 03:10:56 +00:00
Tom Rothamel 634cc46258 2008-08-28 12:54:16 +00:00
Tom Rothamel 7f2e09af55 2008-08-24 23:38:51 +00:00
Tom Rothamel 47b2ca163a Fixed a bug that made image prediction fail when a hide statement was
encountered.

Fixed a bug that prevented im.AlphaMask and ImageDissolve from working
with some images. Also improved the quality of im.AlphaMask, which was
incorrectly blending fractional alphas with black.
2008-08-21 04:00:05 +00:00
Tom Rothamel adb4b3eb5c The \ character is now the universal quote character. One can use \%
to prevent % from performing interpolation, and \{ to prevent { from 
starting a text tag.
2008-08-19 00:58:37 +00:00
Tom Rothamel 6fddc3449e Fixed a bug that prevented im.AlphaMask and ImageDissolve from working
with some images.

Using stdin for the remote control didn't work on Windows, and could
lead to errors in some cases. Instead, the remote control mode now 
uses a file, which gets deleted after processing the command.
2008-08-19 00:42:33 +00:00
Tom Rothamel ae897681cc Improved the numerical stability of interpolation. This fixes a
problem where moves could wiggle from side to side for no good 
reason.
2008-07-27 21:08:48 +00:00
Tom Rothamel 1bb7c0cd36 Bug fixes. Ready for release. 2008-07-21 02:53:48 +00:00
Tom Rothamel e42d877d11 split into renpy.easy.displayable and renpy.easy.displayable_or_none 2008-07-19 18:59:47 +00:00
Tom Rothamel 7b0e376f4d The {w=<pause>} text tag now compensates for slow text, and will only
begin the pause once all text has been displayed.


Lint will no longer produce an error when encountering a user-defined
text tag of the form: {/=style}.
2008-07-19 05:14:51 +00:00
Tom Rothamel e405d91cdf Added remote-control mode.
ui.add(None) is now an error.

Shut off music when returning to main menu.

classic load/save takes a thumbnail.
2008-07-17 02:32:07 +00:00
Tom Rothamel 2f0b429e76 2008-06-07 20:43:15 +00:00
Tom Rothamel 7480d416bd 2008-06-04 19:20:46 +00:00
Tom Rothamel 052ed133ba Fixed a bug that could cause crashing under certain combinations of
layouts and transitions.
2008-05-26 16:24:37 +00:00
Tom Rothamel b5bc5f6b10 2008-05-11 15:06:52 +00:00
Tom Rothamel 9c5b4484e6 Fixes to the new transition code. 2008-05-11 14:56:59 +00:00
Tom Rothamel fb729c4737 6.6.2a 2008-05-11 02:29:44 +00:00
Tom Rothamel 3c82bee409 Readying release. 2008-05-11 02:00:42 +00:00
Tom Rothamel 957eec0bdf The new {s} text tag causes text to be struck-through. The new
{=style_name} text tag cause text to be rendered in the given style
(for example, {=foo}text{/=foo} causes text to be rendered in the foo 
style.
2008-05-10 17:52:59 +00:00
Tom Rothamel 72ce387755 The new layout.imagemap_main_menu function makes it easy to use
imagemaps to define the main menu.
2008-05-08 06:18:01 +00:00
Tom Rothamel 9e7ab9b6f8 The config.after_load_transition variable can be used to specify a
transition that occurs after a game has been loaded. [doc]


Calling renpy.restart_interaction() will no longer cause ongoing
transitions to be terminated. [test, doc]
2008-05-08 06:16:47 +00:00
Tom Rothamel c0181755c5 The config.main_menu and config.game_menu variables can now optionally
take 4- and 5-component tuples, respectively. In both cases, the new 
last component is a python expression that must be true for the button
to be shown.

Pressing control will no longer cause transitions to end when
config.allow_skipping is False.
2008-04-27 19:31:45 +00:00
Tom Rothamel 4faef86e87 The use of tab to toggle skipping is now disabled while inside the
game and main menus.

The new config.hyperlink_styler variable allows the style of
hyperlinks to be changed based on the argument to the hyperlink.
2008-04-27 17:57:01 +00:00
Tom Rothamel f65d84e09f 2008-03-29 10:27:27 +00:00
Tom Rothamel e24e54c56d 2008-03-26 22:03:10 +00:00
Tom Rothamel e2ed4afb71 nvl_window now is indexed with rollback. 2008-03-24 00:14:42 +00:00
Tom Rothamel 4872c10e9b 2008-03-23 23:59:59 +00:00
Tom Rothamel e070c4430c 2008-03-15 16:00:08 +00:00
Tom Rothamel 8f6a9eaeb6 2008-03-15 15:59:55 +00:00
Tom Rothamel c7d2e71726 2008-03-12 03:19:49 +00:00
Tom Rothamel 8af19f82a3 2008-03-10 03:40:58 +00:00
Tom Rothamel 89feaa0e0a 2008-03-10 01:43:32 +00:00
Tom Rothamel 8a82882378 2008-03-09 23:23:05 +00:00
Tom Rothamel aaeb862ef1 2008-03-07 05:18:41 +00:00
Tom Rothamel 66f256f55c 2008-03-05 21:46:18 +00:00
Tom Rothamel 0274db18fe 2008-03-05 03:31:03 +00:00
Tom Rothamel 460cdf5db8 2008-02-28 04:09:56 +00:00
Tom Rothamel dbf5087ccf Some fixes 2008-02-27 22:43:09 +00:00
Tom Rothamel 17b027d88a 2008-02-19 17:56:09 +00:00
Tom Rothamel d0282c4d5a 2008-02-11 02:37:55 +00:00
Tom Rothamel 4051d4e299 2008-02-11 02:28:56 +00:00
Tom Rothamel 23bf80608e 2008-02-11 02:01:43 +00:00
Tom Rothamel 33fe3a1003 2008-02-10 15:22:53 +00:00
Tom Rothamel f7cc77a28c 2008-02-08 22:58:59 +00:00
Tom Rothamel 13aadab31f Fixed themes. 2008-02-08 22:20:43 +00:00
Tom Rothamel 115849f760 2008-02-07 10:39:43 +00:00
Tom Rothamel f4a973582e 2008-02-07 09:53:29 +00:00
Tom Rothamel 138afbd3c3 Fixed editor goto 2008-02-06 06:22:48 +00:00
Tom Rothamel 4b87b8ec9c 2008-02-05 13:13:07 +00:00
Tom Rothamel caab16c759 Done with 6.6.0a 2008-02-04 21:17:23 +00:00
Tom Rothamel 000558e5dd 2008-02-04 19:39:38 +00:00
Tom Rothamel e7ce0841c5 2008-02-04 18:15:48 +00:00
Tom Rothamel 0e4632cc25 2008-02-04 17:52:06 +00:00
Tom Rothamel 520add49f4 Style system rewrite. 2008-02-03 06:14:49 +00:00
Tom Rothamel a9802ea04c Style system rewrite. 2008-02-03 06:14:01 +00:00
Tom Rothamel 1cbfcce551 2008-02-02 06:27:56 +00:00
Tom Rothamel bb94aa0ac9 2008-02-02 06:25:57 +00:00
Tom Rothamel 2132a3d6ea 2008-02-02 04:29:39 +00:00
Tom Rothamel 239de0df80 2008-01-31 11:24:13 +00:00
Tom Rothamel 9e9799f1d1 2008-01-31 11:13:26 +00:00
Tom Rothamel baa6f88291 2008-01-31 10:31:30 +00:00
Tom Rothamel 02cdfefd27 2008-01-31 05:34:42 +00:00
Tom Rothamel d46a1a01f4 2008-01-28 07:12:21 +00:00
Tom Rothamel f04fdf39ee 2008-01-28 07:12:06 +00:00
Tom Rothamel f9d1011e17 2008-01-25 04:34:38 +00:00
Tom Rothamel 32294e2f22 2008-01-23 10:23:13 +00:00
Tom Rothamel c536eeddd5 2008-01-21 17:49:28 +00:00
Tom Rothamel 5d139d5f7d 2008-01-21 17:44:44 +00:00
Tom Rothamel 7163f1e889 size_group 2008-01-21 08:06:43 +00:00
Tom Rothamel d12d9579d2 2008-01-19 18:58:48 +00:00
Tom Rothamel 7db3c21013 2008-01-18 16:05:02 +00:00
Tom Rothamel 80cffcf388 2008-01-18 14:51:12 +00:00
Tom Rothamel fd6bd9c9a6 Layouts improving. 2008-01-18 10:14:49 +00:00
Tom Rothamel 81024ef270 2008-01-18 06:18:19 +00:00
Tom Rothamel 0048dc5483 2008-01-17 08:20:15 +00:00
Tom Rothamel 14c85742cb 2008-01-17 07:59:35 +00:00
Tom Rothamel b069b168aa 2008-01-16 09:05:34 +00:00
Tom Rothamel 962805f1f8 2008-01-16 08:43:41 +00:00
Tom Rothamel 6f5e094691 2008-01-16 08:43:22 +00:00
Tom Rothamel 6f73c95e75 2008-01-13 20:59:07 +00:00
Tom Rothamel 1c410ff232 Implemented module loading. 2008-01-13 18:59:34 +00:00
Tom Rothamel 939152830f 2008-01-08 22:54:53 +00:00
Tom Rothamel 9316f1507e fix pickling 2008-01-03 07:05:14 +00:00
Tom Rothamel 316ff71542 fix pickling 2008-01-03 07:00:29 +00:00
Tom Rothamel 2b782faab6 2008-01-03 06:47:06 +00:00
Tom Rothamel 901d0e609e 2007-12-29 07:14:36 +00:00
Tom Rothamel 4eda972567 2007-12-29 06:29:42 +00:00
Tom Rothamel b93006a810 2007-12-29 05:18:23 +00:00
Tom Rothamel f51d46eb4d 2007-12-29 04:46:48 +00:00
Tom Rothamel 611ad5e7bc 2007-12-29 04:40:26 +00:00
Tom Rothamel 008add67e5 2007-12-29 04:01:31 +00:00
Tom Rothamel 57524bd1b6 Performance tweaking. 2007-12-29 00:33:18 +00:00
Tom Rothamel 6959786848 2007-12-28 22:39:30 +00:00
Tom Rothamel ec29567b77 2007-12-28 06:41:16 +00:00
Tom Rothamel 13739dce3b 2007-12-27 05:32:30 +00:00
Tom Rothamel 74f5810334 2007-12-27 05:26:37 +00:00
Tom Rothamel 6f0a83c348 2007-12-24 17:05:34 +00:00
Tom Rothamel 121586c8e2 2007-12-24 16:36:41 +00:00
Tom Rothamel 718d5c2375 2007-12-24 08:00:45 +00:00
Tom Rothamel 8bc8a47be7 6.5.0a finalized. 2007-12-24 07:22:27 +00:00
Tom Rothamel e6a9cdc4b1 2007-12-24 06:28:51 +00:00
Tom Rothamel 8e4fae7d73 2007-12-24 05:37:06 +00:00
Tom Rothamel 7ac8192492 2007-12-23 22:08:16 +00:00
Tom Rothamel 9fd63e0e8f 2007-12-23 21:29:25 +00:00
Tom Rothamel 2cf47dfb6e 2007-12-21 05:56:34 +00:00
Tom Rothamel e35e3a7743 2007-12-21 05:49:48 +00:00
Tom Rothamel 8d94763fca 2007-12-21 05:49:42 +00:00
Tom Rothamel 5c371723ce 2007-12-21 05:12:50 +00:00
Tom Rothamel 69666d9cd8 2007-12-19 06:10:28 +00:00
Tom Rothamel 6cda72b9a6 2007-12-19 06:05:12 +00:00
Tom Rothamel f2fe68a5a6 User-defined statements can now be provided a next function, which is
called to get the label of the statement to be executed after the
current one.
2007-12-19 05:54:53 +00:00
Tom Rothamel 11652eaf33 ui.side. 2007-12-17 17:23:21 +00:00
Tom Rothamel 3160502be4 2007-12-16 20:58:47 +00:00
Tom Rothamel f1bebbe89b 2007-12-16 14:05:57 +00:00
Tom Rothamel 55f258474c New scrollbars. im.hue. foreground. image prediction bug. 2007-12-11 01:21:52 +00:00
Tom Rothamel 7ff0f7e390 New roundrect scrollbars. 2007-12-08 06:05:12 +00:00
Tom Rothamel 979230078f 2007-12-08 05:30:46 +00:00
Tom Rothamel 944777cdf4 Added bzip2, pyobjc. 2007-12-03 08:34:50 +00:00
Tom Rothamel d5560db0ce Implemented ui.viewport draggable. 2007-12-03 08:19:08 +00:00
Tom Rothamel 07aeb76971 Rewrote the Bar class, which implements ui.bar. This class now
optionally takes an adjustment object, which is what stores
information about the range, value, page size, and step size of 
the bar. [doc]

Bars now take a new style_property, bar_resizing. If this is true, we 
resize sub-bars, rather than rendering them at the full bar size and
then cropping. This changes the look of bars a bit.

Viewports now use adjustments to control their x and y scrolling
information. They properly fill in a range and step size, allowing
scrollbars to indicate the fraction of the viewport that is being
displayed to the user. [doc]

Viewports now also support several new ways of scrolling around. If
a true mousewheel argument is given to ui.viewport, the user will be
able to scroll the viewport using the mousewheel. If the draggable
argument is true, then the user will be able to drag the viewport
around using the mouse. [doc, implement draggable, doc config.keymap]
2007-12-03 06:28:42 +00:00
Tom Rothamel 9b36f7da03 Python 2.5 support. 2007-11-25 02:05:31 +00:00
Tom Rothamel 9e2b936e9f Allow hyperlink callbacks to end an interaction. 2007-11-25 01:54:48 +00:00
Tom Rothamel 7a2ebea2dd renaming profile 2007-11-22 07:06:33 +00:00
Tom Rothamel 6ed860e314 2007-11-11 17:56:19 +00:00
Tom Rothamel 0977253227 Beginning release process. 2007-11-11 05:46:40 +00:00
Tom Rothamel c8ea5ef55c Many changes. 2007-11-09 08:38:12 +00:00
Tom Rothamel a138844faf Character rewrite. 2007-11-08 06:15:42 +00:00
Tom Rothamel 23b520c773 2007-11-07 04:37:34 +00:00
Tom Rothamel 937c2b167a Modified the behavior of return so that it evaluates the return
expression with the values of dynamic variables found inside the
function that has been called.

Added a new variable, _mouse_visible, that controls if the mouse 
should be visible at any given moment. [doc]

renpy.with_statement and ui.interact now take a clear argument, which 
controls if the transient layer is cleared at the end of a transition
or interaction. [doc]

The new At function provides a nicer syntax for applying position
objects (the result of Position, Move, etc.) to displayables. [doc]
2007-11-02 02:55:18 +00:00
Tom Rothamel 4e78cee1d8 2007-10-03 01:52:34 +00:00
Tom Rothamel 8aca0c9d4f Bugfix, changelog cleaned. 2007-10-01 00:51:14 +00:00
Tom Rothamel 839e7e2569 The new ui.timer function lets you call a function after a certain
amount of time has passed. The function may be called once, or it may
repeat. [doc]


The ui.remove function removes a displayable from a layer.
2007-09-26 05:28:22 +00:00
Tom Rothamel 0c57985968 The code for supporting hyperlinks (the {a} text tag) has been
rewritten. It is now possible for hyperlinks to span more than one
line. It is also possible to have code run when a hyperlink has been
focused, using the config.hyperlink_focus callback. 

This necessitated some changes to how hyperlinks work. They are no
longer buttons, so style.hyperlink is no longer used... now, only
style.hyperlink_text is used to change the look of a hyperlink.



The new im.AlphaMask image operator lets you use an image to
alpha-mask another. The new config.missing_image_callback lets you
specify a function that's called when an image is missing. Together,
they provide the necessary infrastructure for JCC--- JPEG Compression of
Character art.
2007-09-25 04:29:32 +00:00
Tom Rothamel 8313ab8ad6 The subtitle layout algorithm now properly deals with newlines. 2007-09-11 14:19:23 +00:00
Tom Rothamel 4fb0edcbfe 2007-08-27 02:22:57 +00:00
Tom Rothamel 09f5d23aa5 2007-08-13 14:41:32 +00:00
Tom Rothamel 26dc030a4d 2007-08-12 16:38:02 +00:00
Tom Rothamel ef10644285 2007-08-11 03:54:49 +00:00
Tom Rothamel affeece1f3 2007-08-11 00:56:59 +00:00
Tom Rothamel caa1b6c261 2007-08-10 03:52:23 +00:00
Tom Rothamel 46b2934867 2007-08-08 22:43:55 +00:00
Tom Rothamel 448ca5f0a8 2007-08-07 01:06:08 +00:00
Tom Rothamel 9fc21619ad 2007-07-31 12:24:19 +00:00
Tom Rothamel e08b6e4a16 2007-07-31 12:23:55 +00:00
Tom Rothamel 1252d7af95 2007-07-31 12:23:25 +00:00
Tom Rothamel 1b731fe48d 2007-07-31 12:23:13 +00:00
Tom Rothamel 99b252fb53 Documented how displayables work, and how users can define their own
displayables. This involved making public the types renpy.Displayable,
renpy.Render, and renpy.IgnoreEvent; and the functions renpy.render, 
renpy.redraw, and renpy.timeout.
2007-07-31 12:22:03 +00:00
Tom Rothamel 5049dd2ea0 2007-07-28 23:29:12 +00:00
Tom Rothamel c8daf0df77 2007-07-28 20:18:04 +00:00
Tom Rothamel 97673f7f48 renpygame initial 2007-07-24 02:42:39 +00:00
Tom Rothamel 3efb0d562e 2007-07-14 00:18:49 +00:00
Tom Rothamel 0d341dfe62 2007-07-13 05:29:43 +00:00
Tom Rothamel 69d7576d28 2007-07-09 23:13:20 +00:00
Tom Rothamel 2e37647bd4 2007-07-09 22:31:43 +00:00
Tom Rothamel 37bbe802ea 2007-07-09 16:47:37 +00:00
Tom Rothamel 5c7d844c6c 2007-07-07 04:59:47 +00:00
Tom Rothamel 1211d223b2 2007-06-30 18:42:12 +00:00
Tom Rothamel 46ed470dba Focus fixes. 2007-06-23 04:52:20 +00:00
Tom Rothamel a50b8c81f8 2007-06-21 01:46:52 +00:00
Tom Rothamel 9400f65550 2007-06-18 16:10:45 +00:00
Tom Rothamel 8f76c07757 2007-06-18 16:07:14 +00:00
Tom Rothamel 8ab6342a3b 2007-06-17 03:38:35 +00:00
Tom Rothamel f6b3a1e72b 2007-06-12 21:49:17 +00:00
Tom Rothamel 22897cad88 2007-06-11 17:30:48 +00:00
Tom Rothamel ad38cd75d7 2007-06-11 17:30:21 +00:00
Tom Rothamel afe820df47 2007-06-11 17:27:17 +00:00
Tom Rothamel c300147785 2007-06-10 14:13:29 +00:00
Tom Rothamel 4dc589e254 2007-06-10 13:43:59 +00:00
Tom Rothamel afc351550b 2007-06-10 03:22:02 +00:00
Tom Rothamel fd41cfd159 2007-06-10 02:46:18 +00:00
Tom Rothamel 43f767f311 2007-06-07 21:27:02 +00:00
Tom Rothamel 781b779fb1 2007-06-07 05:23:11 +00:00
Tom Rothamel 9a6f2234de 2007-06-06 04:27:17 +00:00
Tom Rothamel e646aaefa7 box_layout=fixed.
renpy.image_size

MPEG-1 movies can now be read out of archive files.
2007-06-05 04:00:53 +00:00
Tom Rothamel a4d1a60f22 2007-06-02 15:51:38 +00:00
Tom Rothamel 905146012f Massive changes to style system. 2007-06-01 05:09:26 +00:00
Tom Rothamel 8e96e83e8e Improving the style system muchly. 2007-05-31 05:51:23 +00:00
Tom Rothamel 5f8b866592 Show text and centered now display their text using the "subtitle"
layout algorithm, which tries to minimize the difference in line
length.
2007-05-27 16:18:58 +00:00
Tom Rothamel 367ae0b7b0 fixed nw, warn about config.developer 2007-05-27 15:40:54 +00:00
Tom Rothamel 04ba009ff0 There is a new style inspector, which can be activated with 'I' when
config.developer is true. [elaborate, doc, implement]


The activate_ property prefix has made a comeback. This prefix is
applied to buttons that have been selected by the user. It is applied
when the button is first selected (while the clicked function is
running). If the clicked function returns a non-None value, or an 
exception, then the button remains activated forever. [doc]


The new xoffset and yoffset placement properties allow one to specify 
a pixel offset to the position computed using xpos/xanchor and
ypos/yanchor. This makes it easy to specify, say, that a button's
label should be a pixel or two above center. [doc]


The default roundrect theme now takes a new argument, less_rounded. If
True, this will use the 6-pixel rounded rectangles, even on an 800x600
game. This is the default for new projects. [doc, implement]


Setting _game_menu_screen = None prevents the game menu from being
shown. (Setting it to a value like "_save_screen" or "_load_screen"
shows the game menu again.) This is the default during the
splashscreen. [doc]
2007-05-21 15:43:05 +00:00
Tom Rothamel 4b82958e7b Setting _game_menu_screen = None prevents the game menu from being
shown. (Setting it to a value like "_save_screen" or "_load_screen"
shows the game menu again.) This is the default during the
splashscreen. [doc]


NVLCharacter has a new parameter, clear, that if true causes the nvl-mode
screen to be cleared after that character speaks. [doc]


Rewrote the input handling code. Now, we can deal with keysyms prefixed 
with alt_, shift_, and noshift_.
2007-05-19 17:56:23 +00:00
Tom Rothamel 2cfde4ba75 2007-05-12 02:58:33 +00:00
Tom Rothamel 50cea93c5c Adding ColorMatrix/MatrixColor code. 2007-05-09 04:29:36 +00:00
Tom Rothamel 72dcb7304d Fixed a bug that prevented ui.at from working properly. 2007-05-04 23:43:51 +00:00
Tom Rothamel 44296c7a4d Added a function, renpy.seen_label, that returns True if a label has
been executed at least once, in any execution of the game. [doc]
2007-05-04 13:31:59 +00:00
Tom Rothamel 10d7a57a6a Fixed Ren'Py such that movies properly loop when required. Changes
renpy.movie_cutscene so that it allows a delay of None, which will
delay until the user clicks. (Note that you still need to specify
loops=-1 in this case.) [doc]
2007-05-03 19:03:18 +00:00
Tom Rothamel c82821fdd6 2007-04-25 18:54:40 +00:00
Tom Rothamel 1914df46b4 Added retag. 2007-04-22 16:08:58 +00:00
Tom Rothamel 3e2ca9e289 2007-04-22 16:07:37 +00:00
Tom Rothamel fb4bd94074 Tagging script. 2007-04-22 16:06:38 +00:00
Tom Rothamel d0ea38c849 Updated demo for 6.2.0b. 2007-04-22 15:14:56 +00:00
Tom Rothamel 579cce34ab Adding support for the {nw} tag. 2007-04-21 16:41:52 +00:00
Tom Rothamel 5c814cc5e1 6.2.0 ready. 2007-04-21 04:14:17 +00:00
Tom Rothamel 2669834fea 2007-04-21 02:02:06 +00:00
Tom Rothamel c7713a655b 2007-04-19 04:52:15 +00:00
Tom Rothamel aeb3e804dd 2007-04-16 01:20:51 +00:00
Tom Rothamel db3bc691aa 2007-04-14 20:22:09 +00:00
Tom Rothamel 3c7253ca33 2007-04-14 14:55:33 +00:00
Tom Rothamel 65e855cbe4 2007-04-12 03:33:54 +00:00
Tom Rothamel b3ecf203f0 2007-04-12 03:06:55 +00:00
Tom Rothamel 7e83dc7489 2007-04-11 17:14:20 +00:00
Tom Rothamel 5a97d433a7 Fix for lint on non-unicode files. 2007-04-10 20:17:58 +00:00
Tom Rothamel 8cd8e3e44d 2007-04-09 15:17:24 +00:00
Tom Rothamel 131e28b852 More autosave tweaks. 2007-04-08 16:03:51 +00:00
Tom Rothamel 166d29b7e1 Initial add of auto-save. 2007-04-08 14:51:04 +00:00
Tom Rothamel 1096fabb32 2007-04-07 05:00:50 +00:00
Tom Rothamel 4057ef583a Normalize archive paths. 2007-04-04 18:49:30 +00:00
Tom Rothamel 6ddd7aa60f 2007-04-03 15:33:21 +00:00
Tom Rothamel f3faf25c68 Merging branch. 2007-04-03 14:40:59 +00:00
Tom Rothamel 7c1ed208ad Merging branch. 2007-04-03 14:40:42 +00:00
Tom Rothamel d6322ba74d 2007-04-03 14:34:34 +00:00
Tom Rothamel 8de38e73c7 2007-03-22 04:21:08 +00:00
Tom Rothamel b925f24003 Making more robust against lacking savedir. 2007-03-21 02:53:04 +00:00
Tom Rothamel c438d17a3d 2007-03-21 02:52:10 +00:00
Tom Rothamel 3b18d46a8b 2007-03-21 02:51:45 +00:00
Tom Rothamel 3e25a4b8b8 2007-03-21 02:47:32 +00:00
Tom Rothamel eb5aaa46ae 2007-03-18 02:16:06 +00:00
Tom Rothamel ddd84b207e 2007-03-18 01:10:50 +00:00
Tom Rothamel 4e61ebeaf7 2007-03-17 02:10:13 +00:00
Tom Rothamel 91b1556b8a Added .rpe extension system. 2007-03-17 01:42:11 +00:00
Tom Rothamel 7e0257e167 The black screen of death. 2007-03-15 00:19:40 +00:00
Tom Rothamel f21d70e9fa Implemented a new trace mode that will help to diagnose problems with
Ren'Py itself. Supplying the --trace option to Ren'Py will write
information about function calls to trace.txt. Supplying --trace twice 
will also dump information about line execution and function
returns. Note that trace mode comes with a significant speed penalty, 
when active.
2007-03-13 20:54:08 +00:00
Tom Rothamel ea41bb9cd0 Removed remaining instances of 'with'. (hopefully) 2007-03-10 16:38:37 +00:00
Tom Rothamel 14c28b927a 2007-03-10 07:48:08 +00:00
Tom Rothamel 5b9b176f66 2007-03-10 07:40:26 +00:00
Tom Rothamel 0348445dec 2007-03-10 07:18:54 +00:00
Tom Rothamel c41fc41e90 2007-03-10 07:12:33 +00:00
Tom Rothamel fa37e2e556 2007-03-08 19:13:00 +00:00
Tom Rothamel 5bcee73df4 2007-03-07 18:21:56 +00:00
Tom Rothamel ddfd44915f 2007-03-05 02:33:16 +00:00
Tom Rothamel 9b03c8e8c2 2007-03-05 02:08:24 +00:00
Tom Rothamel c0badd8de8 2007-03-04 15:56:45 +00:00
Tom Rothamel 4d5c2713c2 2007-03-04 14:22:07 +00:00
Tom Rothamel d3a8d0e2d6 2007-03-04 00:56:43 +00:00
Tom Rothamel 1da77b7856 2007-03-04 00:42:30 +00:00
Tom Rothamel d2bc6ca31f 2007-03-02 04:42:21 +00:00
Tom Rothamel 8fd9fe41f8 2007-02-28 07:30:47 +00:00
Tom Rothamel 032c9a1b10 2007-02-28 05:48:58 +00:00
Tom Rothamel 91ba41bc88 2007-02-27 06:01:33 +00:00
Tom Rothamel 931e6df719 text_cps 2007-02-21 19:55:34 +00:00
Tom Rothamel e2814a71cd Make Animation adjust the shown timebase. 2007-02-20 20:38:27 +00:00
Tom Rothamel 6f10cbac14 Checking in shell script. 2007-02-20 13:05:55 +00:00
Tom Rothamel c0d923b928 Updated Dissolve and ImageDissolve transitions. 2007-02-20 06:30:39 +00:00
Tom Rothamel fed151ff01 2007-02-20 06:16:11 +00:00
Tom Rothamel b6fde297fa Implement more config.*transition variables, propery color insensitive
load slots.
2007-02-18 04:52:18 +00:00
Tom Rothamel 075ae8d282 New style system, et al. 2007-02-17 22:22:50 +00:00
Tom Rothamel affb926ff3 2007-02-14 19:28:35 +00:00
Tom Rothamel 3c7e27c9cf 2007-02-14 18:13:23 +00:00
Tom Rothamel bb18aed24c 2007-02-08 05:21:10 +00:00
Tom Rothamel ed3c0d3f0d 2007-02-08 04:07:33 +00:00
Tom Rothamel 6727ee4511 2007-02-06 16:02:04 +00:00
Tom Rothamel afbd8af715 2007-02-06 15:34:09 +00:00
Tom Rothamel 672b12a2cd 2007-02-06 15:00:26 +00:00
Tom Rothamel 306f591e4b 2007-02-05 14:56:48 +00:00
Tom Rothamel 9a9d8db41d 2007-02-04 20:15:39 +00:00
Tom Rothamel bdaf3c0ed4 2007-02-04 15:24:17 +00:00
Tom Rothamel bcaf88f8a3 2007-02-04 15:23:18 +00:00
Tom Rothamel 0be97c3f2c 2007-02-04 06:43:47 +00:00
Tom Rothamel db0576a125 2007-02-03 16:38:38 +00:00
Tom Rothamel f9e36e8854 2007-02-01 23:02:56 +00:00
Tom Rothamel 79f669d409 2007-02-01 05:35:30 +00:00
Tom Rothamel bbbb05868e 2007-01-29 19:22:21 +00:00
Tom Rothamel b9ebbd8014 2007-01-29 14:31:10 +00:00
Tom Rothamel 0db2e1c9a2 2007-01-28 23:23:23 +00:00
Tom Rothamel 29254c2f93 2007-01-28 19:49:38 +00:00
Tom Rothamel 113c335adb 2007-01-28 19:34:48 +00:00
Tom Rothamel 2647c57cd7 Lets the user specify extensions to ignore. 2007-01-28 16:55:13 +00:00
Tom Rothamel 4dc6d3b3f8 2007-01-26 01:19:55 +00:00
Tom Rothamel 87111417a8 2007-01-26 00:29:44 +00:00
Tom Rothamel 2fdf4264b2 Adding the question. 2007-01-26 00:28:19 +00:00
Tom Rothamel 55763227a8 2007-01-24 13:58:40 +00:00
Tom Rothamel 262ef1045b 2007-01-24 13:57:07 +00:00
Tom Rothamel f44de50bf6 2007-01-24 13:54:45 +00:00
Tom Rothamel af57916916 Adding user-defined statements. 2007-01-24 13:45:36 +00:00
Tom Rothamel 5e5aa4c96a 2007-01-19 09:26:49 +00:00
Tom Rothamel d2400eda05 2007-01-13 02:35:27 +00:00
Tom Rothamel 67fc45b0e0 2007-01-08 20:44:41 +00:00
Tom Rothamel 8e058e9ffb 2007-01-08 15:44:22 +00:00
Tom Rothamel c01294b5a1 2007-01-08 15:07:43 +00:00
Tom Rothamel 79eea14456 hovered can return a value, ending an interaction.
various ways of configuring the menus.

RotoZoom.
2007-01-08 00:19:07 +00:00
Tom Rothamel 061a12c273 2007-01-02 20:19:29 +00:00
Tom Rothamel 5a628e16fd 2007-01-02 20:03:02 +00:00
Tom Rothamel fd1bc58f3e Added improved MoveTransition. 2007-01-02 17:44:01 +00:00
Tom Rothamel 4e60aa72d1 Default to 32-bit, change MoveTransition. 2007-01-02 07:47:17 +00:00
Tom Rothamel 41d0b7ca95 2007-01-01 19:34:31 +00:00
Tom Rothamel 57347e7032 2006-12-31 22:18:49 +00:00
Tom Rothamel 483f05edba 2006-12-31 11:51:24 +00:00
Tom Rothamel d1e1b65647 2006-12-31 08:45:14 +00:00
Tom Rothamel e99267fdca 2006-12-23 08:19:05 +00:00
Tom Rothamel 63179fc49a It is now possible to supply a function that determines if the say
statement is allowed to be dismissed, by setting
config.say_allow_dismiss. ui.saybehavior has been updated with similar
functionality. This was added to support children's games, where
dismissing dialogue before it's fully spoken harms the value of a game
as a pedagogical tool... this functionality should not be used in visual 
novels aimed at adults.
2006-12-20 04:12:18 +00:00
Tom Rothamel cf9376d453 2006-12-16 18:19:19 +00:00
Tom Rothamel 02ae2fcaaf 2006-12-15 04:23:05 +00:00
Tom Rothamel 2fdf3b2565 2006-12-15 03:09:02 +00:00
Tom Rothamel badf120507 2006-12-15 03:06:43 +00:00
Tom Rothamel ac6351b801 2006-12-15 03:05:55 +00:00
Tom Rothamel 16115db8fe Added more checks to lint. 2006-12-14 23:59:18 +00:00
Tom Rothamel 16c7ccfe26 The new config.image_buttons and config.image_labels variables can now
be used to replace the buttons and labels (respectively) found on the
game and main menus with image-based replacements.

The new focus_mask property allows image buttons to take a mask image
that defines where the mouse must be for it to be focused. The
focus_rect property lets a subrectangle be used to specify focus, when
two imagebuttons overlap.
2006-12-12 16:29:47 +00:00
Tom Rothamel 9a68d0501f We now store a digest of .rpy files in the corresponding .rpyc
file. This will allow us to detect that the .rpy file has changed,
even if there are problems with the system clock.
2006-12-03 21:03:54 +00:00
Tom Rothamel 8c4741f91c The show statement now takes a 'behind' clause, which gives a list of
image tags the current image should be shown behind.

Demo minigame.

Launcher fixes.
2006-11-24 18:49:46 +00:00
Tom Rothamel f9778ca346 2006-11-20 18:53:55 +00:00
Tom Rothamel 5513c10593 Bactick strings. 2006-11-20 05:20:45 +00:00
Tom Rothamel d21d756764 2006-11-15 23:56:42 +00:00
Tom Rothamel 985e66eedc 2006-11-15 03:15:55 +00:00
Tom Rothamel a28b88067f Implemented the ui.keymap function, which lets one easily map keys to
functions.

Modified the launcher so the user can chose which files are archived
by the "Archive Files" tool. (Which has been renamed from "Archive Images".)

Fixed a bug that prevented new projects from being created under
Linux.
2006-11-15 03:15:43 +00:00
Tom Rothamel 6f0e0b4982 2006-11-10 04:31:05 +00:00
Tom Rothamel e13cf875bb Bug fixing. 2006-11-10 04:12:57 +00:00
Tom Rothamel 18b4acd852 2006-11-10 03:26:20 +00:00
Tom Rothamel bfd380f028 2006-11-10 03:02:11 +00:00
Tom Rothamel 7b7a93954d 2006-11-10 02:10:02 +00:00
Tom Rothamel 23412f847a 2006-11-10 01:59:50 +00:00
Tom Rothamel e06d275fb0 2006-11-10 01:58:57 +00:00
Tom Rothamel cb046b7387 2006-11-10 01:57:04 +00:00
Tom Rothamel 46e0c3bd7a Ren'Py now considers config.has_sound, config.has_music, and
config.has_voice when assigning mixer names to channels. If all of
these are set False, sound will be disabled. If only some are set,
only those mixers will control system volume.
2006-11-09 05:00:40 +00:00
Tom Rothamel 4958185439 2006-11-09 04:33:01 +00:00
Tom Rothamel 6a33d26c41 2006-11-08 06:29:34 +00:00
Tom Rothamel ea48335834 2006-11-07 05:54:14 +00:00
Tom Rothamel c18a2e2689 2006-11-02 14:53:37 +00:00
Tom Rothamel e29003763b Ren'Py now attempts to automatically determine if the RLE optimization
will be profitable, and will automatically use the RLE optimization if
it deems it worthwhile.
2006-10-29 06:33:41 +00:00
Tom Rothamel cb62a2b962 SnowBlossom now takes a fast argument, which if true causes the
particles to start all at once all over the screen, rather then at the
top or the bottom only.
2006-10-29 05:45:56 +00:00
Tom Rothamel 29ec48d023 Export displayables, update DynamicDisplayable, Character.copy() 2006-10-18 12:52:17 +00:00
Tom Rothamel 6b77899000 library. -> config. transmigration. 2006-10-14 20:44:30 +00:00
Tom Rothamel 3da2ff55a6 Added roll forward to the other interactions. 2006-10-14 11:25:44 +00:00
Tom Rothamel af5ea04ec5 Roll forward through menus.
Skipping multiple transitions at once.
2006-10-14 03:41:33 +00:00
Tom Rothamel 11ac2a5a8d 2006-10-08 14:47:50 +00:00
Tom Rothamel ed1a8cbabc Various fixes. 2006-10-08 14:28:50 +00:00
Tom Rothamel c61f0ff965 2006-10-04 02:36:00 +00:00
Tom Rothamel b21a6449d0 Bug fixes. 2006-10-04 02:06:24 +00:00
Tom Rothamel 793fd1238a Finalized 5.6.2. 2006-10-02 18:01:49 +00:00
Tom Rothamel ff653f0fd9 2006-10-01 15:34:01 +00:00
Tom Rothamel 4d47ba7a42 2006-10-01 14:09:56 +00:00
Tom Rothamel 6406307317 2006-10-01 14:00:42 +00:00
Tom Rothamel cc8cdf059f 2006-10-01 13:59:55 +00:00
Tom Rothamel d6d64bd115 Now building working Linux dist. 2006-09-30 02:50:39 +00:00
Tom Rothamel 6081783a9d 2006-09-29 23:56:45 +00:00
Tom Rothamel 5080052728 Launcher work continues. 2006-09-29 03:40:18 +00:00
Tom Rothamel 90da02fa68 Reorg. 2006-09-27 02:32:57 +00:00
Tom Rothamel dd67724968 Reordering directories. 2006-09-27 01:02:45 +00:00
Tom Rothamel a163c4fc00 RLE bug fix.
Changed the way we look for directories.
2006-09-25 02:24:39 +00:00
Tom Rothamel 8504a7b80c Fixed a bug that manifested itself in a crash when a clipped
Displayable was placed at (x, y) where x <= 0 and y <= 0.

Fixed a focus bug that made it difficult to unhide windows.
2006-09-15 12:50:38 +00:00
Tom Rothamel a1472a9dcc 2006-09-14 02:06:34 +00:00
Tom Rothamel 2c08690d59 Readying 5.6.1. 2006-09-13 23:23:39 +00:00
Tom Rothamel b041d707fb Readying 5.6.1. 2006-09-13 23:23:04 +00:00
Tom Rothamel 760b1ae30c Previously, in statements with a transition, focusable objects from
the old scene could be assigned the default focus. This is no longer
possible.

Auto-forward mode now takes into account the {fast} text tag.
2006-09-13 13:08:32 +00:00
Tom Rothamel ce7bd1f915 Now can add layer to save games. 2006-09-12 12:45:26 +00:00
Tom Rothamel 19e5260a89 After a load, the user can roll back the number of screens he could
before the load. Previously, this number was one less.
2006-09-12 04:18:27 +00:00
Tom Rothamel 5846f6ba4c 2006-09-11 18:56:02 +00:00
Tom Rothamel 54662088de Prevented hang when executing a with statement without a prior shown
scene.
2006-09-11 14:48:56 +00:00
Tom Rothamel 30f05caf42 Improved the precision of bilinear scaling, which fixes artifacting
experienced with very small source surfaces.
2006-09-11 12:18:34 +00:00
Tom Rothamel 0657723374 Fixed a bug in the way python code was pre-compiled. This bug
manifested by "phantom syntax-errors", syntax errors that would occur
again the first time Ren'Py was started after they were first
eliminated.
2006-09-11 12:09:39 +00:00
Tom Rothamel 55edf3e373 2006-09-08 03:30:25 +00:00
Tom Rothamel c36fadbbe2 A regression involving PNG images with colorkey alpha has been
fixed. I didn't realize PNG images _could_ have colorkey alpha. Go
figure.
2006-09-07 17:52:12 +00:00
Tom Rothamel 6882c6a74e Various bug-fixes. 2006-09-07 12:41:03 +00:00
Tom Rothamel 25f29aacf6 Fixed bug with fast skipping. 2006-09-06 20:07:55 +00:00
Tom Rothamel 735332ef86 2006-09-06 01:56:58 +00:00
Tom Rothamel 75ba12c5aa Readying 5.6.0. 2006-09-06 01:49:06 +00:00
Tom Rothamel 5fd4ed6238 2006-09-06 00:35:37 +00:00
Tom Rothamel c9bc47c35e Working on changelog. 2006-09-04 20:55:21 +00:00
Tom Rothamel 6ad478f61b Improve speed of rollback (to the point where its reasonable again. 2006-09-04 19:49:46 +00:00
Tom Rothamel 520129321d Updated demo. 2006-09-04 06:22:17 +00:00
Tom Rothamel ba032fe806 2006-09-04 05:02:13 +00:00
Tom Rothamel 5423af98d5 New syntax for say statements. 2006-09-04 04:55:19 +00:00
Tom Rothamel 65030ada99 Add zorder to scene list. 2006-09-03 14:55:49 +00:00
Tom Rothamel 875d7b4410 Bilinear Filtering done. 2006-09-03 04:41:23 +00:00
Tom Rothamel ba58ec003a Many fixes involving clipped layers. 2006-09-01 16:05:59 +00:00
Tom Rothamel fd28ad3600 Some backwards compat fixes, introduced menu_button, moved implicit with Nones to say, menu, pause, imagemap, and input. 2006-08-31 02:22:25 +00:00
Tom Rothamel 9a07dce963 Initial go at minigame support. 2006-08-30 13:09:55 +00:00
Tom Rothamel 83f3f04c4d Integrated two_window and side_image into Character. 2006-08-30 00:53:28 +00:00
Tom Rothamel 73e0cbea16 MoveTransition gets a factory; Motion, Zoom, Move and Pan get time_warp. 2006-08-29 01:58:49 +00:00
Tom Rothamel 1b13951ee0 MultiPersistent, etc. 2006-08-28 23:25:36 +00:00
Tom Rothamel f6659b3873 Switched fonts to DejaVu. 2006-08-28 21:20:42 +00:00
Tom Rothamel 6a0748e3bf Implemented the ability to clip layers to sub-parts of the screen. 2006-08-27 16:03:54 +00:00
Tom Rothamel f66e2a0649 Made as and depth keywords. 2006-08-25 01:07:22 +00:00
Tom Rothamel 4564820e3c implicit with None, and changes to support always_show_window. 2006-08-24 02:00:04 +00:00
Tom Rothamel 06e4e8c21c 2006-08-23 01:40:06 +00:00
Tom Rothamel 6ebfce1b1a Improved debugging of python blocks. 2006-08-23 01:39:12 +00:00
Tom Rothamel f67a398eda im.Color and Frame(tile=True). 2006-08-23 01:02:45 +00:00
Tom Rothamel 7f3251d15a Added checking of style properties.
Added easy colors and displayables.
2006-08-23 00:40:47 +00:00
Tom Rothamel bfbc271801 New prefs system. Prefs compat.
New main menu pic.
2006-08-22 23:33:40 +00:00
Tom Rothamel ee629cb316 Ren'Py now checks, when parsing a file, that image statements are
contained within init blocks. It has long been an error to run an
image statement outside of an init block, so this primarily checks for
useless init statements.
2006-08-20 19:40:26 +00:00
Tom Rothamel 5cfdb1d6a6 When changing the script, Ren'Py now tries fairly hard to assign
statements the same internal name they had in the previous version of
the script. This means that it's now usually possible to load in a
changed script, and come back to roughly the spot where you left
off. (Previously, the closest we would come is the prior label.) Of
course, variables are given the values they when the game was saved.

This allows us to implement a new feature. Pressing shift+R when
config.developer is set saves the game, reloads the script from disk,
and then reloads the game. Doing this generally brings you to the last
unchanged line seen before saving, making it easy to edit the script
and then see your changes in action. Like many developer features,
this may not work perfectly in all circumstances.
2006-08-20 19:26:31 +00:00
Tom Rothamel d5396466d8 Fixed a bug, reported by Shaja, that prevented pauses from terminated
when they occured in interactions beginning with a transition, when no
events occured during the interaction. A symptom of the bug was that
if the user moved the mouse, the pause would immediately terminate and
the game would advance.
2006-08-20 02:43:32 +00:00
Tom Rothamel 8a591c38df Added a function, renpy.showing() that allows us to check to see if
an image is shown or not.
2006-08-17 19:40:23 +00:00
Tom Rothamel db4fcb1397 When changing the script, Ren'Py now tries fairly hard to assign
statements the same internal name they had in the previous version of
the script. This means that it's now usually possible to load in a
changed script, and come back to roughly the spot where you left
off. (Previously, the closest we would come is the prior label.) Of
course, variables are given the values they when the game was saved.
2006-08-15 12:54:16 +00:00
Tom Rothamel b2ca030729 O3-Inspired changes. New Eileen art from Piroshki. 2006-08-13 21:50:50 +00:00
Tom Rothamel 38f4ad4168 2006-08-10 00:00:45 +00:00
Tom Rothamel b33308d3a1 2006-08-09 23:16:46 +00:00
Tom Rothamel 314311c7e8 We now look for the presplash image in the "game" and "data" directories,
as well as the directory derived from the script filename.
2006-08-09 02:35:32 +00:00
Tom Rothamel b2d3107035 2006-08-08 11:39:59 +00:00
Tom Rothamel fe7ecc8221 2006-08-08 02:45:59 +00:00
Tom Rothamel d265c93bcc 2006-08-08 01:22:44 +00:00
Tom Rothamel e6ea26ad93 2006-08-08 01:22:19 +00:00
Tom Rothamel ba61ef1f1f 2006-08-08 01:00:50 +00:00
Tom Rothamel 69f51ed383 2006-08-03 19:56:55 +00:00
Tom Rothamel d242595213 2006-08-02 00:09:27 +00:00
Tom Rothamel 678581f165 Bars now support vertical mode, and invert mode. [expand, doc] 2006-07-28 19:33:55 +00:00
Tom Rothamel 3db637bbcf Changed preload to predict, as predict is the name I kept using. 2006-07-28 18:06:48 +00:00
Tom Rothamel e328ca32d9 2006-07-26 11:01:02 +00:00
Tom Rothamel 4533f541c4 Now, renpy.preload can be called to programatically preload an image. [doc] 2006-07-24 23:42:07 +00:00
Tom Rothamel a23bbff40d Fixed bug that prevented text from changing color when focused.
Fixed bug that caused wrong displayble to be focused.
2006-07-24 23:21:43 +00:00
Tom Rothamel e96f87763a Fixed a use-after-free bug in the sound playback code. The result of
this bug was random crashing when changing music.
2006-07-23 13:11:54 +00:00
Tom Rothamel 27725bd81e There is now a new method of recoloring that allows one to specify two
colors, one of which replaces white and one which replaces
black. This is accessed through im.Twocolor. This effect can also be
applied to SFonts using the black_color style property.
2006-07-19 23:01:37 +00:00
Tom Rothamel 3f8560ed0e 2006-07-15 23:53:40 +00:00
Tom Rothamel 89ea7c7f9b Fixing bug with empty lines in Text. 2006-07-15 23:52:27 +00:00
Tom Rothamel 5f02f63aa6 Fixed bug in is_fullscreen. 2006-07-15 20:41:10 +00:00
Tom Rothamel 05d696ef45 Fixed a bug in which some variables were not saved after the game was
restarted. This is a fairly major bug that could affect end users in
certain circumstances.
2006-07-15 20:39:32 +00:00
Tom Rothamel 7e3d7ac0e1 A new optimization is that we only draw images that are above the
uppermost full-screen image that does not have an alpha channel.
Images below this image cannot be seen, and now are not drawn. This
optimization only considers the presence or absence of an alpha
channel, and not the content of that channel. So a PNG image with an
alpha channel that has full opacity will not trigger this
optimization, while the same image with the alpha channel removed will.
2006-07-12 01:29:16 +00:00
Tom Rothamel 52925ba42f Window and button backgrounds no participate in layout, using xpos,
xanchor, ypos, and yanchor.

There are now two new properties, xalign and yalign. Assigning to xalign
is equivalent to assigning the same value to xpos and xanchor, and
similarly for yalign. This means that it is now possible to write
xalign=0.5 to center a displayable, rather than having to write
xpos=0.5, xanchor=0.5. [doc]
2006-07-08 14:28:03 +00:00
Tom Rothamel e0da35a499 Doc updates, mostly. 2006-07-05 13:51:40 +00:00
Tom Rothamel 9f965f3e32 Y now dumps styles when config.developer is True... update keymap and doc. 2006-07-04 15:24:24 +00:00
Tom Rothamel df1db159ae Doc updates, make public Text. 2006-07-04 14:08:25 +00:00
Tom Rothamel fa46038dcc 2006-06-28 21:46:27 +00:00
Tom Rothamel 38150544c0 Interim release. 2006-06-27 23:15:30 +00:00
Tom Rothamel e097848384 2006-06-27 15:28:22 +00:00
Tom Rothamel eb35a4c75f Configurable text layout algorithm. [doc] 2006-06-27 02:50:13 +00:00
Tom Rothamel b3c0fd0f4f Cut release. 2006-06-10 16:56:30 +00:00
Tom Rothamel 509313f7a0 2006-06-01 20:43:15 +00:00
Tom Rothamel eaebc28c62 Finalizing 5.5.2. 2006-06-01 14:02:48 +00:00
Tom Rothamel 866924087e SFonts are now rendered in color. When a non-(255, 255, 255, 255)
color is supplied to a SFont, the supplied image is remapped so that
each channel has its value interpolated between 0 and the supplied
color. Most importantly, this means that white pixels will have the
supplied color. This functionality means that drop shadows are now
rendered correctly.
2006-06-01 13:20:44 +00:00
Tom Rothamel 059b7287a1 Fixed a bug that prevented Animations with long or no repeats from
functioning correctly.
2006-05-31 19:46:58 +00:00
Tom Rothamel 32e9a2cd1d 2006-05-30 03:30:17 +00:00
Tom Rothamel 59b90471a0 2006-05-29 15:15:37 +00:00
Tom Rothamel 097ab320ca DynamicDisplayable and hyperlinks and Displayable.visit have all been added. 2006-05-28 13:38:16 +00:00
Tom Rothamel e170e453d2 UTF-8 Title. 2006-05-22 16:44:28 +00:00
Tom Rothamel 11ee50cd3a Two small fixes. 2006-05-20 17:02:51 +00:00
Tom Rothamel 163f12a7e2 Fixed a longstanding bug in the DSE that prevented event.only and
event.solo from working.
2006-05-11 16:12:20 +00:00
Tom Rothamel c546662c2a Added im.Flip. 2006-05-05 03:58:38 +00:00
Tom Rothamel be213d0ed0 Fixed a bug with clipping rectangle computations, when faced with an
image larger then the screen.
2006-05-02 01:47:13 +00:00
Tom Rothamel 301203cd88 5.5.0 Feature Complete 2006-04-30 00:42:31 +00:00
Tom Rothamel 44067c771a 2006-04-28 22:10:30 +00:00
Tom Rothamel fc805a2231 2006-04-28 21:44:23 +00:00
Tom Rothamel fb7bb99486 Added config.sound. 2006-04-28 12:47:23 +00:00
Tom Rothamel 732311fccc A bug that prevented a fixed click-to-continue indicator from working
has been fixed.
2006-04-22 18:35:40 +00:00
Tom Rothamel 21ab52c33b The screenshots taken with the 's' key are now PNGs, rather than BMPs.
There is a new image operation, im.Recolor, that can be used to
recolor each channel of an image.
2006-04-19 20:18:45 +00:00
Tom Rothamel d513eca182 library.main_menu_music
Character(show_...=...)

And more.
2006-04-18 04:21:07 +00:00
Tom Rothamel c0773533e3 Renamed some styles. 2006-04-14 13:18:34 +00:00
Tom Rothamel bd1ef6d3e3 2006-04-14 03:01:16 +00:00
Tom Rothamel 7805095b96 2006-04-13 20:47:49 +00:00
Tom Rothamel 8cf2533d51 2006-04-13 20:47:19 +00:00
Tom Rothamel 8d72e223b7 All sorts of minor changes. 2006-04-10 19:13:54 +00:00
Tom Rothamel 63bdd908bd +++
config.with_callback has been changed. It now takes two arguments. The
first is the transition being performed. If this transition is a None
transition created as part of a scene, show, or hide statement, then
the second argument is the transition found in that
statement. Otherwise, it is None. config.with_callback is now requried
to return a transition, which replaces the specified
transition. Hopefully, this is enough to make with_callback useful, by
always giving the callback information specified by the user.
2006-04-09 18:36:09 +00:00
Tom Rothamel c2e4e655c6 The list of characters used by SFonts was wrong, so that has been
fixed. The documentation has also been improved to include a
convenient list of what those fonts should look like.
2006-04-09 17:21:41 +00:00
Tom Rothamel 5a0fcb1c1a 2006-04-07 00:07:39 +00:00
Tom Rothamel 07a032fa7c 2006-04-06 20:55:05 +00:00
Tom Rothamel 61b21817a8 2006-04-05 20:08:10 +00:00
Tom Rothamel eba101519f A new extra, translations.py, gives all of the translatable strings in
the Ren'Py common code.

There is now a variable, config.lint_hooks, that contains functions
that are called at lint time.
2006-04-03 15:45:34 +00:00
Tom Rothamel f38aeb3872 Added SFont support.
+++
Fixed a bug in renpy.music.set_music, in which the test was inverted
in the code. (But not in the documentation.) Flagged this as requiring
an update, as it could require script changes.
2006-03-31 16:00:18 +00:00
Tom Rothamel c2ac268e7d Slow text and skipping conflicted, in that when skipping one will see
the slow text effect. This may be a regression, but it's fixed now.

Ren'Py now takes some new command line options:

* --savedir allows the user to set the directory in which Ren'Py saves
data in. This allows Ren'Py games to be run from a non-writable
directory. 

* --version prints the version of Ren'Py.
2006-03-24 22:13:50 +00:00
Tom Rothamel ca3c6f8bc1 Finalizing 5.4.4. 2006-03-13 01:34:02 +00:00
Tom Rothamel 6989233cbc Clarified that the voice extra can take non-wave sound files, such as
OGG Vorbis and especially OGG Speex files. Also, made voice
automatically sustain through pauses.

Fixed a bug in Ren'Py that was causing the voice extra to
malfunction. The bug was caused by the contents of the config
namespace being copied at the wrong time, leading it to not be
restored properly to default values when Ren'Py was reset (as the Main
Menu choice.) 

Removed a leftover debugging statement that caused Ren'Py to spew out
all of the say statements in .rpy files it parsed.
2006-03-12 15:14:33 +00:00
Tom Rothamel 056bed0fc2 Updated the gallery extra to support showing arbitrary displayables,
rather than just images with filenames. It was also updated to support
tuples, corresponding to composing one image atop another, and lists,
which display things in sequence. To support this, the tuples used by
gallery take a third argument which gives a filename which is used,
somewhat indirectly, to compute the thumbnail.
2006-03-10 14:42:31 +00:00
Tom Rothamel 7b946a2369 Fixed a bug preventing dump_text.bat and archiver.bat from working. 2006-03-08 21:37:01 +00:00
Tom Rothamel f41aec238e RELEASING.txt has been updated and corrected.
Empty strings are now allowed in Say statements, although it's not
immediately obvious to me why they would be used, except in some
strange cases, or as placeholders.
2006-03-05 16:13:13 +00:00
Tom Rothamel 77423980a2 The format of archive files has been changed, to store each media file
contiguously on disk. This allows us to use disk access to retrieve
files from archives, whereas previously the files had to be
reassembled in memory before use. Eliminating this memory assembly can
drop the resident size of Ren'Py significantly. (When music was
playing, there was a memory overhead equal to double the size of the
playing file... this has been eliminated.) While Ren'Py remains
compatible with the older-format archives, regenerating the archives
for a game allows it to take advantage of the new format.
2006-03-05 06:57:46 +00:00
Tom Rothamel 47606637de The presence of tabs in a script causes a more appropriate error
message to be generated. Previously, they simply caused random parse
errors. 

Implemented a widescreen mode, but disabled it for lack of utility.
2006-03-01 20:49:58 +00:00
Tom Rothamel 3eacc751ce 2006-02-21 02:36:20 +00:00
Tom Rothamel 4fdae44700 Reading 5.4.2 for release. 2006-02-18 03:56:18 +00:00
Tom Rothamel 06119fbcd2 The sound module has been rewritten to play sound (or silence) all the
time, rather than pausing and restarting sound playback as
necessary. This eliminates popping and errors in some edge cases, like
playing a very short sound.
2006-02-18 03:25:18 +00:00
Tom Rothamel 282bdb5164 Cleaned up the initial import, by removing some files that really have
no part being there.
2006-02-17 18:07:53 +00:00
Tom Rothamel 64d7e55027 Imported Ren'Py into trac. 2006-02-17 18:00:52 +00:00
484 changed files with 77189 additions and 19923 deletions
+60
View File
@@ -0,0 +1,60 @@
build
dist
dists
renpy.app
**/*.rpyc
**/*.rpyb
**/*.rpymc
jedit
lint.txt
renpy.code
traceback.txt
doc/common.css
doc/images
doc/index.html
doc/monobook.css
doc/monobook2.css
doc/reference
doc/shared.css
doc/tutorials
doc/www.renpy.org
testing
translations.rpy
launchertrans.rpy
jcc
scite/scite.zip
screenshot*
.ropeproject
release_cardgame.sh
cardgame
dse.split
empty
empty-linux-x86.tar.bz2
empty-mac.zip
empty.zip
errors.txt
icons
iliad-icon.png
iliad-work
kuroi
lsprofcalltree.py
manifest.xml
mediatest
musicroom
nobmtest
renpy-iliad.sh
renpy.kcg
renpy.stats
renpygame-1.2.zip
speedtest
styles.txt
renpygame-demo/game/saves
./lib
Lucy Sprites.zip
translate
close_bugs.py
.logplayer
scite-6.10.zip
scite-renpy-20090803.zip
module/cython.sh
old_demo
BIN
View File
Binary file not shown.
+3598 -2
View File
File diff suppressed because it is too large Load Diff
+738 -29
View File
@@ -1,4 +1,5 @@
Copyright 2004-2005 PyTom <pytom@bishoujo.us>
Ren'Py itself is covered by the terms of the following (MIT) license:
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
@@ -20,33 +21,741 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please note that the above license only applies to Ren'Py
proper. A binary distribution of Ren'Py contains a number of other
packages, each with their own licenses, which you may be bound to
comply with when distributing a Ren'Py game.
These packages may include:
Python (Python License)
http://www.python.org
Pygame (GNU LGPL)
http://www.pygame.org
SDL (GNU LGPL)
http://www.libsdl.org
SDL_mixer (GNU LGPL)
http://www.libsdl.org/projects/SDL_mixer
SDL_ttf (GNU LGPL)
http://www.libsdl.org/projects/SDL_ttf
ctypes (MIT)
http://starship.python.net/crew/theller/ctypes/
Please see each individual source file for a list of copyright
holders. The artwork in the demo is released by various copyright
holders, under the same terms.
The character images in the demo game (game/9a_*.png) are under their
own copyright. I allow them to be used as part of the demo game, but
not as part of other games.
The Ren'Py module, the Ren'Py windows binaries, and the various Ren'Py
launchers may contain code taken from the following projects:
* Python (Python License)
* Pygame (LGPL)
* SDL (LGPL)
* SDL_image (LGPL)
* SDL_ttf (LGPL)
* SDL_mixer (LGPL)
* Freetype (LGPL)
* FFmpeg (LGPL)
* Fribidi (LGPL)
* jpeg (JPEG License)
* libpng (PNG license)
* zlib (Zlib License)
* bzip2 (Bzip2 License)
* pyobjc (MIT License)
The Linux build may also include code from:
* directfb (LGPL)
* svgalib (LGPL)
For the purpose of LGPL compliance, the source code to all LGPL
software we depend on is either in the Ren'Py package (available from
http://www.renpy.org/), or in the renpy-deps package
(http://www.renpy.org/dl/lgpl/). We believe compliance can be achieved
by including a copy of this license with every copy of Ren'Py you
distribute, and referring to it in your project's README file.
The default Ren'Py build distributes Ren'Py alongside jEdit, which is
licensed under the GNU GPL. The source code to jEdit is distributed as
part of the renpy-deps package (http://www.renpy.org/dl/lgpl/).
GNU Lesser General Public License
=================================
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations
below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it
becomes a de-facto standard. To achieve this, non-free programs must
be allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control
compilation and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at least
three years, to give the same user the materials specified in
Subsection 6a, above, for a charge no more than the cost of
performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply, and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License
may add an explicit geographical distribution limitation excluding those
countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms
of the ordinary General Public License).
To apply these terms, attach the following notices to the library.
It is safest to attach them to the start of each source file to most
effectively convey the exclusion of warranty; and each file should
have at least the "copyright" line and a pointer to where the full
notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or
your school, if any, to sign a "copyright disclaimer" for the library,
if necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James
Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!
Python License
==============
1. This LICENSE AGREEMENT is between the Python Software Foundation
("PSF"), and the Individual or Organization ("Licensee") accessing and
otherwise using Python 2.3 software in source or binary form and its
associated documentation.
2. Subject to the terms and conditions of this License Agreement, PSF
hereby grants Licensee a nonexclusive, royalty-free, world-wide
license to reproduce, analyze, test, perform and/or display publicly,
prepare derivative works, distribute, and otherwise use Python 2.3
alone or in any derivative version, provided, however, that PSF's
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
2001, 2002 Python Software Foundation; All Rights Reserved" are
retained in Python 2.3 alone or in any derivative version prepared by
Licensee.
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python 2.3 or any part thereof, and wants to make
the derivative work available to others as provided herein, then
Licensee hereby agrees to include in any such work a brief summary of
the changes made to Python 2.3.
4. PSF is making Python 2.3 available to Licensee on an "AS IS"
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.3 WILL NOT
INFRINGE ANY THIRD PARTY RIGHTS.
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3,
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
6. This License Agreement will automatically terminate upon a material
breach of its terms and conditions.
7. Nothing in this License Agreement shall be deemed to create any
relationship of agency, partnership, or joint venture between PSF and
Licensee. This License Agreement does not grant permission to use PSF
trademarks or trade name in a trademark sense to endorse or promote
products or services of Licensee, or any third party.
8. By copying, installing or otherwise using Python 2.3, Licensee
agrees to be bound by the terms and conditions of this License
Agreement.
Jpeg License
============
In plain English:
1. We don't promise that this software works. (But if you find any bugs,
please let us know!)
2. You can use this software for whatever you want. You don't have to pay us.
3. You may not pretend that you wrote this software. If you use it in a
program, you must acknowledge somewhere in your documentation that
you've used the IJG code.
In legalese:
The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose. This software is provided "AS IS", and you,
its user, assume the entire risk as to its quality and accuracy.
This software is copyright (C) 1991-1998, Thomas G. Lane.
All Rights Reserved except as specified below.
Permission is hereby granted to use, copy, modify, and distribute this
software (or portions thereof) for any purpose, without fee, subject to these
conditions:
(1) If any part of the source code for this software is distributed, then this
README file must be included, with this copyright and no-warranty notice
unaltered; and any additions, deletions, or changes to the original files
must be clearly indicated in accompanying documentation.
(2) If only executable code is distributed, then the accompanying
documentation must state that "this software is based in part on the work of
the Independent JPEG Group".
(3) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.
These conditions apply to any software derived from or based on the IJG code,
not just to the unmodified library. If you use our work, you ought to
acknowledge us.
Permission is NOT granted for the use of any IJG author's name or company name
in advertising or publicity relating to this software or products derived from
it. This software may be referred to only as "the Independent JPEG Group's
software".
We specifically permit and encourage the use of this software as the basis of
commercial products, provided that all warranty or liability claims are
assumed by the product vendor.
PNG License
===========
The PNG Reference Library is supplied "AS IS". The Contributing Authors
and Group 42, Inc. disclaim all warranties, expressed or implied,
including, without limitation, the warranties of merchantability and of
fitness for any purpose. The Contributing Authors and Group 42, Inc.
assume no liability for direct, indirect, incidental, special, exemplary,
or consequential damages, which may result from the use of the PNG
Reference Library, even if advised of the possibility of such damage.
Permission is hereby granted to use, copy, modify, and distribute this
source code, or portions hereof, for any purpose, without fee, subject
to the following restrictions:
1. The origin of this source code must not be misrepresented.
2. Altered versions must be plainly marked as such and must not
be misrepresented as being the original source.
3. This Copyright notice may not be removed or altered from any
source or altered source distribution.
The Contributing Authors and Group 42, Inc. specifically permit, without
fee, and encourage the use of this source code as a component to
supporting the PNG file format in commercial products. If you use this
source code in a product, acknowledgment is not required but would be
appreciated.
Zlib License
============
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Bzip2 License
=============
This program, "bzip2", the associated library "libbzip2", and all
documentation, are copyright (C) 1996-2005 Julian R Seward. All
rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-55
View File
@@ -1,55 +0,0 @@
This file contains boilerplate information about running Ren'Py that
can be included into the README for your game. It may be necessary to
change some of the filenames in this document, to make it specific to
your game.
Feel free to use this in your projects.
Running the Game
================
(Windows)
If this game was installed on Windows using an installer, then you can
run it by choosing the shortcut left by the installer. If this game
was installed on Windows using the cross-platform zip file, then it
can be run by executing the run_game.exe file.
(Macintosh)
For information about running Ren'Py games on Mac OS 10.3 or higher,
please go to http://www.bishoujo.us/renpy/mac.html .
(Linux/Unix)
For information about running Ren'Py games under Linux and Unix,
please go to http://www.bishoujo.us/renpy/linux.html . At the very
least, you will need to compile the _renpy module. Read
module/README.txt for details.
Playing the Game
================
By default, the game starts running in full screen mode. On some
computers, especially some virtual machines, this can lead to mouse
problems. To fix this, press 'f'.
Some of the more interesting game actions can be performed as follows:
- The left mouse button is used to advance to the next line of
dialogue, or to pick menu options.
- The right mouse button brings you into a menu screen where you can
save the game, load the game, change preferences, return to the main
menu, or quit entirely.
- Scrolling the mouse wheel up or pushing page up returns you to the
previous screen.
- Holding down the CTRL key skips dialogue. By default, it only
skips read dialogue, but this can be changed by a preference. Tab
toggles skip mode.
-4
View File
@@ -1,4 +0,0 @@
Have a new form of imagemap that uses a color image to distinguish
hotspots.
Keyd compiles.
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
if [ "x$1" = "x" ]; then
echo need version
exit
fi
mkdir ~/ab/website/renpy/dl/$1
cp dists/renpy-$1-* ~/ab/website/renpy/dl/$1
cp CHANGELOG.txt ~/ab/website/renpy/dl/$1
cd ~/ab/website
./upload.sh
-3
View File
@@ -1,3 +0,0 @@
cd game
..\archiver.exe images *.png *.jpg
pause
-96
View File
@@ -1,96 +0,0 @@
#!/usr/bin/env python
# The Ren'Py archiver. This builds a Ren'Py archive file, and the
# associated index file. These files are really easy to reverse-engineer,
# but are probably better than nothing.
import sys
import os
import encodings.zlib_codec
import random
import glob
from cPickle import loads, dumps, HIGHEST_PROTOCOL
# The most we will go without inserting some padding. 10k.
padding_every = 10240
# The amount of padding we will add.
padding_max = 32
def randpadding():
plen = random.randint(1, padding_max)
rv = ""
for i in range(0, plen):
rv += chr(random.randint(1, 255))
return rv
def main():
if len(sys.argv) < 3:
print "Usage: %s <file-prefix> <files ...>" % sys.argv[0]
return
prefix = sys.argv[1]
# Archive file.
archivef = file(prefix + ".rpa", "wb")
# Index file.
indexf = file(prefix + ".rpi", "wb")
index = { }
random.seed()
offset = 0
# Needed because windows sucks. It doesn't do globbing on the
# command line.
files = [ ]
for i in sys.argv[2:]:
files.extend(glob.glob(i))
for fn in files:
index[fn] = [ ]
print "Adding %s..." % fn
datafile = file(fn, "rb")
while True:
# Pad with junk.
padding = randpadding()
archivef.write(padding)
offset += len(padding)
# Pick a random block size.
block = random.randint(1, padding_every)
data = datafile.read(block)
if not data:
break
dlen = len(data)
archivef.write(data)
index[fn].append((offset, dlen))
offset += dlen
datafile.close()
archivef.close()
indexf.write(dumps(index, HIGHEST_PROTOCOL).encode("zlib"))
indexf.close()
if __name__ == "__main__":
main()
-1
View File
@@ -1 +0,0 @@
build_exe.py run_game
+69 -20
View File
@@ -3,29 +3,78 @@
from distutils.core import setup
import py2exe
import sys
import zipfile
import traceback
if len(sys.argv) != 2:
print "Usage: build_exe.py <prefix>"
print ""
print "Builds <prefix>.exe."
print "Expects icons in <prefix>.ico."
# The pythonpath on my system.
sys.path.insert(0, 'c:\\msys\\1.0\\newbuild25\\install\\bin')
sys.path.insert(0, 'c:\\msys\\1.0\\newbuild25\\install\\python')
sys.exit(-1)
def main():
def program(name):
return dict(script="run_game.py",
icon_resources=[ (0, name + ".ico"),
],
dest_base=name)
sys.argv[1:] = [ 'py2exe', '--bundle', '2', '-a', '--dll-excludes', 'w9xpopen.exe', ]
# sys.argv[1:] = [ 'py2exe', '-a', '--dll-excludes', 'w9xpopen.exe', ]
programs = [
program(sys.argv[1]),
]
setup(name="RenPy",
windows=[ dict(script="renpy.py",
dest_base="renpy",
icon_resources=[ (1, "newicon.ico") ],
),
],
sys.argv[1:] = [ 'py2exe' ]
console=[ dict(script="renpy.py", dest_base="console") ],
setup(name="RenPy",
windows=programs,
console=[ "archiver.py", "add_from.py", "console.py", "dump_text.py", "run_dse.py" ],
zipfile='lib/renpy.zip',
)
zipfile='renpy.code',
options={ 'py2exe' : { 'excludes' : [ 'doctest',
'pygame.macosx',
'pygame.surfarray',
'pygame.mixer',
'pygame.mixer_music',
'pygame.font',
'_ssl',
'_hashlib',
'win32con',
'win32api',
'Numeric',
'locale',
'gettext',
'os2emxpath',
'macpath',
'posixpath',
],
'optimize' : 2,
} },
)
zfold = zipfile.ZipFile("dist/renpy.code")
zfnew = zipfile.ZipFile("renpy.code", "w", zipfile.ZIP_STORED)
seen = { }
for fn in zfold.namelist():
if fn.startswith("renpy/"):
continue
if fn in seen:
continue
if fn == "SDL_mixer.dll":
continue
seen[fn] = True
zfnew.writestr(fn, zfold.read(fn))
zfold.close()
zfnew.close()
try:
main()
except:
traceback.print_exc()
print
print "Press return to quit."
raw_input()
+84
View File
@@ -0,0 +1,84 @@
1#!/usr/bin/env python
import collections
import glob
import re
import sys
import time
# A map from string to filename, line number where the string is found.
strings = collections.defaultdict(list)
def process(fn):
lineno = 0
for data in file(fn, "r"):
lineno += 1
matches = [ ]
matches += re.finditer(r'\bu\"(\\"|[^"])+\"', data)
matches += re.finditer(r"\bu\'(\\'|[^'])+\'", data)
for m in matches:
s = m.group(0)[2:-1]
if "\\u" in s:
continue
if len(s) == 1:
continue
strings[s].append("%s:%d" % (fn, lineno))
if __name__ == "__main__":
files = [ ]
files += glob.glob("launcher2/*.rpy")
files += glob.glob("common/*.rpy")
files += glob.glob("common/_layout/*.rpym")
files += glob.glob("common/_compat/*.rpym")
for fn in files:
process(fn)
converse = [ ]
for k, v in strings.iteritems():
v = " ".join(sorted(v))
converse.append((v, k))
converse.sort()
print """\
# Ren'Py Visual Novel Engine
# Copyright (C) 2009 PyTom <pytom@bishoujo.us>
# This file is distributed under the same license as the Ren'Py package.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mainline\\n"
"Report-Msgid-Bugs-To: PyTom <pytom@bishoujo.us>\\n"
"POT-Creation-Date: %s\\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n"
"Language-Team: LANGUAGE <LL@li.org>\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
""" % time.strftime("%Y-%m-%d %H:%M%z")
for v, k in converse:
print
print "#:", v
print "#, python-format"
print "msgid \"%s\"" % k
print "msgstr \"\""
+81
View File
@@ -0,0 +1,81 @@
#!/usr/bin/env python
import collections
import glob
import re
import sys
import time
import os
# A map from string to filename, line number where the string is found.
strings = collections.defaultdict(list)
def process(fn):
lineno = 0
for data in file(fn, "r"):
lineno += 1
matches = [ ]
matches += re.finditer(r'\bu\"(\\"|[^"])+\"', data)
matches += re.finditer(r"\bu\'(\\'|[^'])+\'", data)
for m in matches:
s = m.group(0)[2:-1]
if "\\u" in s:
continue
if len(s) == 1:
continue
strings[s].append("%s:%d" % (fn, lineno))
if __name__ == "__main__":
files = [ ]
files += glob.glob("launcher/*.rpy")
files += glob.glob("common/*.rpy")
files += glob.glob("common/*.rpym")
files += glob.glob("common/_layout/*.rpym")
files += glob.glob("common/_compat/*.rpym")
if "launcher/strings.rpy" in files:
files.remove("launcher/strings.rpy")
for fn in files:
process(fn)
converse = [ ]
for k, v in strings.iteritems():
v = " ".join(sorted(v))
converse.append((v, k))
converse.sort()
f = file("launcher/strings.rpy", "w")
files = set(i for i in os.listdir("launcher") if i.endswith(".rpy"))
print >>f, """\
init python:
LAUNCHER_RPYS = %r
TRANSLATION_STRINGS = [
""" % files
for v, k in converse:
# print
# print "#:", v
# print "#, python-format"
print >>f, " u\"%s\"," % unicode(k)
print >>f, """\
]
"""
+35
View File
@@ -0,0 +1,35 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This file contains warpers that are used by ATL. They need to be defined
# early, so Ren'Py knows about them when parsing other files.
python early hide:
# pause is defined internally, but would look like:
#
# @renpy.atl_warper
# def pause(t):
# if t >= 1.0:
# return 1.0
# else:
# return 0.0
@renpy.atl_warper
def linear(t):
return t
@renpy.atl_warper
def easeout(x):
import math
return 1.0 - math.cos(x * math.pi / 2.0)
@renpy.atl_warper
def easein(x):
import math
return math.cos((1.0 - x) * math.pi / 2.0)
@renpy.atl_warper
def ease(x):
import math
return .5 - math.cos(math.pi * x) / 2.0
+85
View File
@@ -0,0 +1,85 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1210 python:
# This is called when script_version is set, to immediately
# run code in response to a script_version change.
def _set_script_version(version):
if version is None:
return
if version <= (5, 6, 0):
config.check_properties = False
if version <= (6, 5, 0):
layout.compat()
if version <= (6, 9, 1):
store.library = store.config
if version <= (6, 9, 3):
# Before 6.10, these were positions, rather than transforms.
store.left = Position(xalign=0.0)
store.center = Position(xalign=0.5)
store.truecenter = Position(xalign=0.5, yalign=0.5)
store.right = Position(xalign=1.0)
store.offscreenleft = Position(xpos=0.0, xanchor=1.0)
store.offscreenright = Position(xpos=1.0, xanchor=0.0)
init 1210 python hide::
# This returns true if the script_version is <= the
# script_version supplied. Give it the last script version
# where an old version was used.
def compat(x, y, z):
return config.script_version and config.script_version <= (x, y, z)
# Compat for changes to with-callback.
if compat(5, 4, 5):
if config.with_callback:
def compat_with_function(trans, paired, old=config.with_callback):
old(trans)
return trans
config.with_callback = compat_with_function
if not config.sound:
config.has_sound = False
config.has_music = False
config.has_voice = False
# Compat for SFont recoloring.
if compat(5, 1, 1):
config.recolor_sfonts = False
if compat(5, 5, 4):
config.implicit_with_none = False
# Compat for changes to button look.
if compat(5, 5, 4):
style.button.setdefault(xpos=0.5, xanchor=0.5)
style.menu_button.clear()
style.menu_button_text.clear()
if compat(5, 6, 6):
config.reject_midi = False
if compat(6, 2, 0):
config.reject_backslash = False
if compat(6, 9, 0):
style.motion.clear()
if "Fullscreen" in config.translations:
fs = _("Fullscreen")
config.translations.setdefault("Fullscreen 4:3", fs + " 4:3")
config.translations.setdefault("Fullscreen 16:9", fs + " 16:9")
config.translations.setdefault("Fullscreen 16:10", fs + " 16:10")
for i in layout.compat_funcs:
i()
+181
View File
@@ -0,0 +1,181 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This file contains a number of definitions of standard
# locations and transitions. We've moved them into the common
# directory so that it's easy for an updated version of all of these
# definitions.
init -1110:
# These are positions that can be used inside at clauses. We set
# them up here so that they can be used throughout the program.
transform left:
xpos 0.0 xanchor 0.0 ypos 1.0 yanchor 1.0
transform right:
xpos 1.0 xanchor 1.0 ypos 1.0 yanchor 1.0
transform center:
xpos 0.5 xanchor 0.5 ypos 1.0 yanchor 1.0
transform truecenter:
xpos 0.5 xanchor 0.5 ypos 0.5 yanchor 0.5
# Offscreen positions for use with the move transition. Images at
# these positions are still shown (and consume
# resources)... remember to hide the image after the transition.
transform offscreenleft:
xpos 0.0 xanchor 1.0 ypos 1.0 yanchor 1.0
transform offscreenright:
xpos 1.0 xanchor 0.0 ypos 1.0 yanchor 1.0
init -1110 python:
_define = define = object()
# Positions ##############################################################
# Transitions ############################################################
# Simple transitions.
fade = Fade(.5, 0, .5) # Fade to black and back.
dissolve = Dissolve(0.5)
pixellate = Pixellate(1.0, 5)
# Various uses of CropMove.
wiperight = CropMove(1.0, "wiperight")
wipeleft = CropMove(1.0, "wipeleft")
wipeup = CropMove(1.0, "wipeup")
wipedown = CropMove(1.0, "wipedown")
slideright = CropMove(1.0, "slideright")
slideleft = CropMove(1.0, "slideleft")
slideup = CropMove(1.0, "slideup")
slidedown = CropMove(1.0, "slidedown")
slideawayright = CropMove(1.0, "slideawayright")
slideawayleft = CropMove(1.0, "slideawayleft")
slideawayup = CropMove(1.0, "slideawayup")
slideawaydown = CropMove(1.0, "slideawaydown")
irisout = CropMove(1.0, "irisout")
irisin = CropMove(1.0, "irisin")
# Ease images around. These are basically cosine-warped moves.
def _ease_out_time_warp(x):
import math
return 1.0 - math.cos(x * math.pi / 2.0)
def _ease_in_time_warp(x):
import math
return math.cos((1.0 - x) * math.pi / 2.0)
def _ease_time_warp(x):
import math
return .5 - math.cos(math.pi * x) / 2.0
# This defines a family of move transitions.
def move_transitions(prefix, delay, time_warp=None, in_time_warp=None, out_time_warp=None, old=False, layers=[ 'master' ], **kwargs):
moves = {
"" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs)),
"inright" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
enter_factory=MoveIn((1.0, None, 0.0, None), time_warp=in_time_warp, **kwargs)),
"inleft" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
enter_factory=MoveIn((0.0, None, 1.0, None), time_warp=in_time_warp, **kwargs)),
"intop" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
enter_factory=MoveIn((None, 0.0, None, 1.0), time_warp=in_time_warp, **kwargs)),
"inbottom" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
enter_factory=MoveIn((None, 1.0, None, 0.0), time_warp=in_time_warp, **kwargs)),
"outright" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
leave_factory=MoveOut((1.0, None, 0.0, None), time_warp=out_time_warp, **kwargs)),
"outleft" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
leave_factory=MoveOut((0.0, None, 1.0, None), time_warp=out_time_warp, **kwargs)),
"outtop" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
leave_factory=MoveOut((None, 0.0, None, 1.0), time_warp=out_time_warp, **kwargs)),
"outbottom" : MoveTransition(
delay,
old=old,
layers=layers,
factory=MoveFactory(time_warp=time_warp, **kwargs),
leave_factory=MoveOut((None, 1.0, None, 0.0), time_warp=time_warp, **kwargs)),
}
for k, v in moves.iteritems():
setattr(store, prefix + k, v)
define.move_transitions = move_transitions
del move_transitions
define.move_transitions("move", 0.5)
define.move_transitions("ease", 0.5, _ease_time_warp, _ease_in_time_warp, _ease_out_time_warp)
# Zoom-based transitions.
zoomin = MoveTransition(0.5, enter_factory=ZoomInOut(0.01, 1.0))
zoomout = MoveTransition(0.5, leave_factory=ZoomInOut(1.0, 0.01))
zoominout = MoveTransition(0.5, enter_factory=ZoomInOut(0.01, 1.0), leave_factory=ZoomInOut(1.0, 0.01))
# These shake the screen up and down for a quarter second.
# The delay needs to be an integer multiple of the period.
vpunch = Move((0, 10), (0, -10), .10, bounce=True, repeat=True, delay=.275)
hpunch = Move((15, 0), (-15, 0), .10, bounce=True, repeat=True, delay=.275)
# These use the ImageDissolve to do some nifty effects.
blinds = ImageDissolve(im.Tile("blindstile.png"), 1.0, 8)
squares = ImageDissolve(im.Tile("squarestile.png"), 1.0, 256)
init -1110:
image black = Solid("#000")
init 1110 python:
if not hasattr(store, 'narrator'):
narrator = Character(None, kind=adv, what_style='say_thought')
if not hasattr(store, 'name_only'):
name_only = adv
if not hasattr(store, 'centered'):
centered = Character(None, what_style="centered_text", window_style="centered_window")
+353
View File
@@ -0,0 +1,353 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1105 python:
class Layout():
def __call__(self, func):
setattr(self, func.func_name, func)
return func
layout = _layout = Layout()
del Layout
layout.compat_funcs = [ ]
layout.provided = set()
# This takes care of actually displaying button menus.
def _display_button_menu(menuitems):
narration = [ s for s, i in menuitems if i is None and s ]
menuitems = [ (s, i) for s, i in menuitems if i is not None or not s ]
if narration:
renpy.say(None, "\n".join(narration), interact=False)
return renpy.display_menu(menuitems)
init -1105 python hide:
# Called to indicate that the given kind of layout has been
# provided.
@layout
def provides(kind):
if kind in layout.provided:
raise Exception("%s has already been provided by another layout function." % kind)
layout.provided.add(kind)
# Called by registered themes to have the default versions of
# various kinds of layouts provided, if a more specific version
# has not been requested by the user.
@layout
def defaults():
# Do nothing, in compatibility mode.
if 'compat' in layout.provided:
return
defaults = dict(
main_menu=layout.classic_main_menu,
load_save=layout.classic_load_save,
navigation=layout.classic_navigation,
yesno_prompt=layout.classic_yesno_prompt,
preferences=layout.classic_preferences,
joystick_preferences=layout.classic_joystick_preferences,
)
for k, v in defaults.iteritems():
if k not in layout.provided:
v()
if store._game_menu_screen is None:
if renpy.has_label("save_screen"):
store._game_menu_screen = "save_screen"
elif renpy.has_label("preferences_screen"):
store._game_menu_screen = "preferences_screen"
##########################################################################
# These live on the layout object, and ease the construction of buttons,
# labels, and prompts. A sufficently aggressive layout might change
# these.
@layout
def button(label,
type=None,
selected=False,
enabled=True,
clicked=None,
hovered=None,
unhovered=None,
index=None,
**properties):
"""
label - The label of this button. Will be translated if necessary.
type - The type of this button. Used to generate the appropriate styles.
selected - Determines if this button should be selected.
enabled - Determines if this button should be enabled.
clicked - A function that is run when the button is clicked.
hovered - A function that is run when the button is hovered.
unhovered - A function that is run when the button is unhovered.
index - A style index. If None, label is used.
size_group - The size_group used by this button.
"""
if not enabled:
clicked = None
if selected and enabled:
role = "selected_"
else:
role = ""
if type:
button_style = type + "_button"
text_style = type + "_button_text"
else:
button_style = 'button'
text_style = 'button_text'
if index is None:
index = label
button_style = getattr(style, button_style)[index]
text_style = getattr(style, text_style)[index]
rv = ui.button(style=button_style, role=role, clicked=clicked, hovered=hovered, unhovered=unhovered, **properties)
ui.text(_(label), style=text_style)
return rv
@layout
def label(label, type, suffix="label", index=None, **properties):
if index is None:
index = label
if type:
label_style = getattr(style, type + "_" + suffix)[index]
text_style = getattr(style, type + "_" + suffix + "_text")[index]
else:
label_style = style.label[index]
text_style = style.label_text[index]
ui.window(style=label_style, **properties)
ui.text(_(label), style=text_style)
@layout
def prompt(label, type, index=None, **properties):
return layout.label(label, type, "prompt", index, **properties)
@layout
def list(entries, clicked=None, hovered=None, unhovered=None, selected=None, **properties):
ui.window(style=style.list, **properties)
ui.vbox(style=style.list_box)
size_group = str(id(entries))
for i, (spacers, content) in enumerate(entries):
if clicked is not None:
new_clicked = renpy.curry(clicked)(i)
else:
new_clicked = None
if hovered is not None:
new_hovered = renpy.curry(hovered)(i)
else:
new_hovered = None
if unhovered is not None:
new_unhovered = renpy.curry(unhovered)(i)
else:
new_unhovered = None
if selected == i:
role = "selected_"
else:
role = ""
ui.button(style=style.list_row[i%2],
clicked=new_clicked,
hovered=new_hovered,
unhovered=new_unhovered,
role=role,
size_group=size_group,
)
ui.hbox(style=style.list_row_box)
for j in range(0, spacers):
ui.window(style=style.list_spacer)
ui.null()
ui.text(content, style=style.list_text)
ui.close() # row
ui.close() # vbox
##########################################################################
# Misc.
@layout
def button_menu():
store.menu = _display_button_menu
style.menu.box_spacing = 2
style.menu_window.set_parent(style.default)
style.menu_window.xalign = 0.5
style.menu_window.yalign = 0.5
style.menu_choice.set_parent(style.button_text)
style.menu_choice.clear()
style.menu_choice_button.set_parent(style.button)
style.menu_choice_button.xminimum = int(config.screen_width * 0.75)
style.menu_choice_button.xmaximum = int(config.screen_width * 0.75)
store._button_menu = button_menu
###########################################################################
# Compat layout.
@layout
def compat():
layout.provides('compat')
renpy.load_module("_compat/styles")
renpy.load_module("_compat/library")
renpy.load_module("_compat/mainmenu")
renpy.load_module("_compat/gamemenu")
renpy.load_module("_compat/preferences")
renpy.load_module("_compat/themes")
###########################################################################
# Classic layout.
@layout
def classic_main_menu():
renpy.load_module("_layout/classic_main_menu")
@layout
def classic_navigation():
renpy.load_module('_layout/classic_navigation')
@layout
def classic_load_save():
renpy.load_module('_layout/classic_load_save')
@layout
def classic_yesno_prompt():
renpy.load_module('_layout/classic_yesno_prompt')
@layout
def classic_preferences(center=False):
renpy.load_module('_layout/classic_preferences')
if center:
style.prefs_button.xalign = 0.5
style.prefs_slider.xalign = 0.5
style.prefs_jump_button.xalign = 0.5
@layout
def classic_joystick_preferences():
renpy.load_module('_layout/classic_joystick_preferences')
@layout
def two_column_preferences():
renpy.load_module("_layout/two_column_preferences")
@layout
def one_column_preferences():
renpy.load_module("_layout/one_column_preferences")
@layout
def grouped_main_menu(per_group=2, equal_size=True):
renpy.load_module("_layout/grouped_main_menu")
config.main_menu_per_group = per_group
if equal_size:
style.mm_button.size_group = "main_menu"
@layout
def grouped_navigation(per_group=2, equal_size=True):
renpy.load_module("_layout/grouped_navigation")
config.navigation_per_group = per_group
if equal_size:
style.gm_nav_button.size_group = "navigation"
@layout
def scrolling_load_save():
renpy.load_module("_layout/scrolling_load_save")
@layout
def imagemap_main_menu(ground, selected, hotspots, idle=None, variant=None):
renpy.load_module("_layout/imagemap_main_menu")
config.main_menu_ground[variant] = ground
config.main_menu_selected[variant] = selected
config.main_menu_hotspots[variant] = hotspots
config.main_menu_idle[variant] = idle
@layout
def imagemap_navigation(ground, idle, hover, selected_idle, selected_hover,
hotspots):
renpy.load_module("_layout/imagemap_navigation")
config.navigation_ground = ground
config.navigation_idle = idle
config.navigation_hover = hover
config.navigation_selected_idle = selected_idle
config.navigation_selected_hover = selected_hover
config.navigation_hotspots = hotspots
@layout
def imagemap_preferences(ground, idle, hover, selected_idle, selected_hover,
hotspots):
renpy.load_module("_layout/imagemap_preferences")
config.preferences_ground = ground
config.preferences_idle = idle
config.preferences_hover = hover
config.preferences_selected_idle = selected_idle
config.preferences_selected_hover = selected_hover
config.preferences_hotspots = hotspots
@layout
def imagemap_yesno_prompt(ground, idle, hover, hotspots, prompt_images={ }):
renpy.load_module("_layout/imagemap_yesno_prompt")
config.yesno_prompt_ground = ground
config.yesno_prompt_idle = idle
config.yesno_prompt_hover = hover
config.yesno_prompt_hotspots = hotspots
config.yesno_prompt_message_images = prompt_images
@layout
def imagemap_load_save(ground, idle, hover, selected_idle, selected_hover,
hotspots, variant=None):
renpy.load_module("_layout/imagemap_load_save")
config.load_save_ground[variant] = ground
config.load_save_idle[variant] = idle
config.load_save_hover[variant] = hover
config.load_save_selected_idle[variant] = selected_idle
config.load_save_selected_hover[variant] = selected_hover
config.load_save_hotspots[variant] = hotspots
layout.ARE_YOU_SURE = u"Are you sure?"
layout.DELETE_SAVE = u"Are you sure you want to delete this save?"
layout.OVERWRITE_SAVE = u"Are you sure you want to overwrite your save?"
layout.LOADING = u"Loading will lose unsaved progress.\nAre you sure you want to do this?"
layout.QUIT = u"Are you sure you want to quit?"
layout.MAIN_MENU = u"Are you sure you want to return to the main menu?\nThis will lose unsaved progress."
+832
View File
@@ -0,0 +1,832 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This file consists of renpy functions that aren't expected to be
# touched by the user too much. We reserve the _ prefix for names
# defined in the library.
init -1180 python:
# These are settings that the user can tweak to control the
# look of the main menu and the load/save/escape screens.
# basics: The version of Ren'Py this script is intended for, or
# None if it's intended for the current version.
config.script_version = None
# The minimum version of the module we work with. Don't change
# this unless you know what you're doing.
config.module_version = 6007001
# Should we warn the user if the module is missing or has a bad
# version?
config.module_warning = False
# basics: A map from a string that's displayed by the interface to
# a translated value of that string.
config.translations = { }
# Used internally to maintain compatiblity with old
# translations of strings.
config.old_names = { }
# basics: True if the skip indicator should be shown.
config.skip_indicator = True
# basics: The width of a thumbnail.
config.thumbnail_width = 66
# basics: The height of a thumbnail.
config.thumbnail_height = 50
# basics: If not None, the default value of the fullscreen
# preference when the game is first run.
config.default_fullscreen = None
# basics: If not None, the default value of the text_cps
# preference when the game is first run.
config.default_text_cps = None
# Should we automatically define images?
config.automatic_images = None
# Prefixes to strip from automatic images.
config.automatic_images_strip = [ ]
# A save to automatically load, if it exists.
config.auto_load = None
# Layers to clear when entering the menus.
config.menu_clear_layers = [ ]
# This is updated to give the user an idea of where a save is
# taking place.
save_name = ''
# Should the window be shown during transitions?
_window_during_transitions = False
def _default_with_callback(trans, paired=None):
if (_window_during_transitions and not
renpy.context_nesting_level() and
not renpy.count_displayables_in_layer('transient')):
# narrator("", interact=False)
ui.window(style=style.say_window["empty"])
ui.null()
return trans
config.with_callback = _default_with_callback
def _default_empty_window():
store.narrator("", interact=False)
config.empty_window = _default_empty_window
style.skip_indicator = Style(style.default, heavy=True, help='The skip indicator.')
style.skip_indicator.xpos = 10
style.skip_indicator.ypos = 10
# This is used to jump to a label with a transition.
def _intra_jumps_core(label, transition):
renpy.transition(getattr(config, transition))
renpy.jump(label)
_intra_jumps = renpy.curry(_intra_jumps_core)
# The function that's used to translate strings in the game menu.
def _(s):
"""
Translates s into another language or something.
"""
if s in config.translations:
return config.translations[s]
if s in config.old_names and config.old_names[s] in config.translations:
return config.translations[config.old_names[s]]
return s
# Are the windows currently hidden?
_windows_hidden = False
init -1180 python:
def toggle_skipping():
if not config.skipping:
config.skipping = "slow"
else:
config.skipping = None
if renpy.context()._menu:
renpy.jump("_noisy_return")
else:
renpy.restart_interaction()
config.help = None
def _help():
if not config.help:
return
if renpy.has_label(config.help):
renpy.call_in_new_context(config.help)
return
_preferences.fullscreen = False
try:
import webbrowser
webbrowser.open_new("file:///" + config.basedir + "/" + config.help)
except:
pass
init -1180 python hide:
# Called to make a screenshot happen.
def screenshot():
import os.path
import os
import __main__
pattern = os.environ.get("RENPY_SCREENSHOT_PATTERN", "screenshot%04d.png")
# Pick the directory to save into.
dest = config.renpy_base.rstrip("/")
# Guess if we're an OSX App.
if dest.endswith("/Contents/Resources/autorun"):
# Go up 4 directories.
dest = os.path.dirname(dest)
dest = os.path.dirname(dest)
dest = os.path.dirname(dest)
dest = os.path.dirname(dest)
# Try to pick a filename.
i = 1
while True:
fn = dest + "/" + pattern % i
if not os.path.exists(fn):
break
i += 1
try:
renpy.screenshot(fn)
except:
import traceback
traceback.print_exc()
def dump_styles():
if config.developer:
renpy.style.write_text("styles.txt")
def invoke_game_menu():
if renpy.context()._menu:
renpy.jump("_noisy_return")
else:
renpy.call_in_new_context('_game_menu')
def keymap_toggle_skipping():
if renpy.context()._menu:
return
toggle_skipping()
def fast_skip():
if config.fast_skipping or config.developer:
config.skipping = "fast"
if renpy.context()._menu:
renpy.jump("_noisy_return")
def reload_game():
if not config.developer:
return
renpy.call_in_new_context("_save_reload_game")
def launch_editor():
if not config.developer:
return
filename, line = renpy.get_filename_line()
renpy.launch_editor([ filename ], line)
# The default keymap. We might also want to put some of this into
# the launcher.
km = renpy.Keymap(
rollback = renpy.rollback,
screenshot = screenshot,
toggle_fullscreen = renpy.toggle_fullscreen,
toggle_music = renpy.toggle_music,
toggle_skip = keymap_toggle_skipping,
fast_skip = fast_skip,
game_menu = invoke_game_menu,
hide_windows = renpy.curried_call_in_new_context("_hide_windows"),
launch_editor = launch_editor,
dump_styles = dump_styles,
reload_game = reload_game,
developer = renpy.curried_call_in_new_context("_developer"),
quit = renpy.quit_event,
iconify = renpy.iconify,
help = _help,
)
config.underlay = [ km ]
def skip_indicator():
### skip_indicator default
# (text) The style and placement of the skip indicator.
if config.skip_indicator is True:
if config.skipping == "slow" and config.skip_indicator:
ui.text(_(u"Skip Mode"), style='skip_indicator')
if config.skipping == "fast" and config.skip_indicator:
ui.text(_(u"Fast Skip Mode"), style='skip_indicator')
return
if not config.skip_indicator:
return
if not config.skipping:
return
ui.add(renpy.easy.displayable(config.skip_indicator))
config.overlay_functions.append(skip_indicator)
def hyperlink_styler(target):
return style.hyperlink_text
def hyperlink_function(target):
if target.startswith("http:"):
try:
import webbrowser
webbrowser.open(target)
except:
pass
else:
renpy.call_in_new_context(target)
config.hyperlink_styler = hyperlink_styler
config.hyperlink_callback = hyperlink_function
config.extend_interjection = "{fast}"
init -1180 python:
def extend(what, interact=True):
who = _last_say_who
if who is not None:
who = eval(who)
if who is None:
who = narrator
if isinstance(who, basestring):
who = unknown.copy(who)
# This ensures extend works even with NVL mode.
who.do_extend()
what = _last_say_what + config.extend_interjection + what
renpy.exports.say(who, what, interact=interact)
store._last_say_what = what
extend.record_say = False
label _hide_windows:
if renpy.context()._menu:
return
if _windows_hidden:
return
python:
_windows_hidden = True
ui.saybehavior(dismiss=['dismiss', 'hide_windows'])
ui.interact(suppress_overlay=True, suppress_window=True)
_windows_hidden = False
return
# This code here handles check for the correct version of the Ren'Py module.
label _save_reload_game:
python hide:
renpy.take_screenshot((config.thumbnail_width, config.thumbnail_height))
ui.add(Solid((0, 0, 0, 255)))
ui.text("Saving game...",
size=32, xalign=0.5, yalign=0.5, color=(255, 255, 255, 255))
renpy.pause(0)
renpy.save("reload", "reload save game")
renpy.music.stop()
persistent._reload_save = "reload"
ui.add(Solid((0, 0, 0, 255)))
ui.text("Reloading script...",
size=32, xalign=0.5, yalign=0.5, color=(255, 255, 255, 255))
renpy.pause(0)
renpy.utter_restart()
label _load_reload_game:
if not persistent._reload_save:
return
python hide:
save = persistent._reload_save
persistent._reload_save = 0
ui.add(Solid((0, 0, 0, 255)))
ui.text("Reloading game...",
size=32, xalign=0.5, yalign=0.5, color=(255, 255, 255, 255))
ui.pausebehavior(0)
ui.interact(suppress_underlay=True, suppress_overlay=True)
renpy.load(save)
return
init -1001:
image text = renpy.ParameterizedText(style="centered_text")
# Lock the library object.
$ config.locked = True
# Implement config.default_fullscreen and config.default_text_cps.
init 1180 python:
if not persistent._set_preferences:
persistent._set_preferences = True
if config.default_fullscreen is not None:
_preferences.fullscreen = config.default_fullscreen
if config.default_text_cps is not None:
_preferences.text_cps = config.default_text_cps
if config.developer:
def _inspector(l):
ui.add("#000")
ui.window(xmargin=20, ymargin=20, style='default')
ui.vbox()
ui.text("Style Inspector")
ui.text("")
if not l:
ui.text("Nothing to inspect.")
for depth, width, height, d in l:
s = d.style
while s:
if s.name:
break
if s.parent:
s = style.get(s.parent)
else:
break
name = s.name[0] + "".join([ "[%r]" % i for i in s.name[1:] ])
ui.text(" " * depth + u" \u2022 " + d.__class__.__name__ + " : " + name + " (%dx%d)" % (width, height))
ui.text("")
ui.text("(click to continue)")
ui.close()
ui.saybehavior()
ui.interact(suppress_overlay=True, suppress_underlay=True)
return
config.inspector = _inspector
##############################################################################
# Code that originated in 00gamemenu.rpy
init -1180 python:
######################################################################
# First up, we define a bunch of configuration variable, which the
# user can change.
# menus: Music to play when entering the game menu.
config.game_menu_music = None
# menus: Sound played when entering the library without clicking a
# button.
config.enter_sound = None
# menus: Sound played when leaving the library without clicking a
# button.
config.exit_sound = None
# menus: Transition that occurs when entering the game menu.
config.enter_transition = None
# menus: Transition that occurs when leaving the game menu.
config.exit_transition = None
# menus: Transition that's used when going from one screen to another.
config.intra_transition = None
# menus: Transition that's used when going from the main to the game
# menu.
config.main_game_transition = None
# menus: Transition that's used when going from the game to the main
# menu.
config.game_main_transition = None
# menus: Transition that's used at the end of the game, when returning
# to the main menu.
config.end_game_transition = None
# menus: Transition that's used at the end of the splash screen, when
# it is shown.
config.end_splash_transition = None
# Transition that's used after the game is loaded.
config.after_load_transition = None
# basics: True if autosave should be used.
config.has_autosave = True
# basics: True if quicksave has been enabled.
config.has_quicksave = False
# A list of layers to clear when entering the main and game menus.
config.clear_layers = [ ]
# The _window_subtitle used inside menus.
config.menu_window_subtitle = ''
# The screen that we go to when entering the game menu.
_game_menu_screen = None
style.error_root = Style(style.default)
style.error_title = Style(style.default)
style.error_body = Style(style.default)
def _show_exception(title, message):
ui.window(style='error_root')
ui.vbox()
ui.text(title, style='error_title')
ui.text("")
ui.text(message, style='error_body')
ui.text("")
ui.text(_(u"Please click to continue."), style='error_body')
ui.close()
ui.saybehavior()
ui.interact()
# Run at the end of init, to set up autosaving based on the user's
# choices.
init 1180 python:
if config.has_autosave:
config.autosave_slots = 10
else:
config.autosave_frequency = None
label _enter_menu:
python hide:
renpy.movie_stop(only_fullscreen=True)
renpy.take_screenshot((config.thumbnail_width, config.thumbnail_height))
for i in config.menu_clear_layers:
renpy.scene(layer=i)
renpy.context()._menu = True
# This may be changed, if we are already in the main menu.
renpy.context().main_menu = False
renpy.context_dynamic("main_menu")
renpy.context_dynamic("_window_subtitle")
renpy.context_dynamic("_window")
store.main_menu = False
store._window_subtitle = config.menu_window_subtitle
store._window = False
store.mouse_visible = True
store.suppress_overlay = True
ui.clear()
for i in config.clear_layers:
renpy.scene(layer=i)
return
# Factored this all into one place, to make our lives a bit easier.
label _enter_game_menu:
call _enter_menu from _call__enter_menu_2
$ renpy.transition(config.enter_transition)
if renpy.has_label("enter_game_menu"):
call expression "enter_game_menu" from _call_enter_game_menu_1
if config.game_menu_music:
$ renpy.music.play(config.game_menu_music, if_changed=True)
return
# Entry points from the game into menu-space.
label _game_menu(_game_menu_screen=_game_menu_screen):
if not _game_menu_screen:
return
$ renpy.play(config.enter_sound)
call _enter_game_menu from _call__enter_game_menu_0
if renpy.has_label("game_menu"):
jump expression "game_menu"
jump expression _game_menu_screen
label _game_menu_save:
call _enter_game_menu from _call__enter_game_menu_1
if renpy.has_label("_save_screen"):
jump expression "_save_screen"
else:
jump expression "save_screen"
label _game_menu_load:
call _enter_game_menu from _call__enter_game_menu_2
if renpy.has_label("_load_screen"):
jump expression "_load_screen"
else:
jump expression "load_screen"
label _game_menu_preferences:
call _enter_game_menu from _call__enter_game_menu_3
if renpy.has_label("_prefs_screen"):
jump expression "_prefs_screen"
else:
jump expression "preferences_screen"
label _quit:
$ renpy.quit()
label _return_skipping:
$ config.skipping = "slow"
jump _return
# Make some noise, then return.
label _noisy_return:
$ renpy.play(config.exit_sound)
# Return to the game.
label _return:
if renpy.context().main_menu:
$ renpy.transition(config.game_main_transition)
jump _main_menu_screen
$ renpy.transition(config.exit_transition)
return
label _confirm_quit:
call _enter_menu from _call__enter_menu_3
if renpy.has_label("confirm_quit"):
jump expression "confirm_quit"
elif renpy.has_label("_compat_confirm_quit"):
jump expression "_compat_confirm_quit"
else:
jump expression "_quit_prompt"
##############################################################################
# Code that originated in 00mainmenu.rpy
init -1180 python hide:
# menus: Music to play at the main menu.
config.main_menu_music = None
# advanced: Callbacks to run at start.
config.start_callbacks = [ ]
# This fixes up the context, if necessary, then calls the real
# after_load.
label _after_load:
$ renpy.context()._menu = False
if config.after_load_transition:
$ renpy.transition(config.after_load_transition, force=True)
if renpy.has_label("after_load"):
jump expression "after_load"
else:
return
# This is the true starting point of the program. Sssh... Don't
# tell anyone.
label _start:
python hide:
renpy.context()._menu = False
for i in config.start_callbacks:
i()
call _load_reload_game from _call__load_reload_game_1
if not _restart and config.auto_load and renpy.can_load(config.auto_load):
$ renpy.load(config.auto_load)
scene black
if not _restart:
$ ui.pausebehavior(0)
$ ui.interact(suppress_underlay=True, suppress_overlay=True)
$ renpy.block_rollback()
$ _old_game_menu_screen = _game_menu_screen
$ _game_menu_screen = None
if renpy.has_label("splashscreen") and not _restart:
call expression "splashscreen" from _call_splashscreen_1
$ _game_menu_screen = _old_game_menu_screen
$ del _old_game_menu_screen
$ renpy.block_rollback()
if config.main_menu_music:
$ renpy.music.play(config.main_menu_music, if_changed=True)
else:
$ renpy.music.stop()
# Clean out any residual scene from the splashscreen.
scene black
# This has to be python, to deal with a case where _restart may
# change across a shift-reload.
python:
if _restart is None:
renpy.transition(config.end_splash_transition)
else:
renpy.transition(_restart[0])
renpy.jump(_restart[1])
label _invoke_main_menu:
# Again, this has to be python.
python:
if _restart:
renpy.call_in_new_context(_restart[2])
else:
renpy.call_in_new_context("_main_menu")
# If the main menu returns, then start the game.
jump start
# At this point, we've been switched into a new context. So we
# initialize it.
label _main_menu(_main_menu_screen="_main_menu_screen"):
call _enter_menu from _call__enter_menu_1
python:
renpy.dynamic("_load_prompt")
_load_prompt = False
renpy.context().main_menu = True
store.main_menu = True
jump expression _main_menu_screen
# This is called to show the main menu to the user.
label _main_menu_screen:
# Let the user completely override the main menu. (But please note
# it still lives in the menu context, rather than the game context.)
if renpy.has_label("main_menu"):
jump expression "main_menu"
# New name.
if renpy.has_label("main_menu_screen"):
jump expression "main_menu_screen"
# Compatibility name.
if renpy.has_label("_library_main_menu"):
jump expression "_library_main_menu"
return
init 1180 python hide:
def create_automatic_images():
seps = config.automatic_images
if seps is True:
seps = [ ' ', '/', '_' ]
for dir, fn in renpy.loader.listdirfiles():
if fn.startswith("_"):
continue
# Only .png and .jpg
if not fn.lower().endswith(".png") and not fn.lower().endswith(".jpg"):
continue
# Strip the extension, replace slashes.
shortfn = fn[:-4].replace("\\", "/")
# Determine the name.
name = ( shortfn, )
for sep in seps:
name = tuple(j for i in name for j in i.split(sep))
# Strip name components.
while name:
for i in config.automatic_images_strip:
if name[0] == i:
name.pop(0)
break
else:
break
# Only names of 2 components or more.
if len(name) < 2:
continue
# Reject if it already exists.
if name in renpy.exports.images:
continue
renpy.image(name, fn)
if config.automatic_images:
create_automatic_images()
# Load the developer screen, if necessary.
init 1180 python hide:
if config.developer:
renpy.load_module("_developer")
# Entry point for the developer screen. The rest of it is loaded from
# _developer.rpym
label _developer:
if not config.developer:
return
call _enter_menu from _call__enter_menu_4
jump expression "_developer_screen"
+44
View File
@@ -0,0 +1,44 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# Common stuff that's used by the various Ren'Py menus. This includes
# the default definitions of config.main_menu and config.game_menu, as
# well as the default definitions of the various preferences (and the objects
# holding those preferences)
init -1150 python:
config.main_menu = [
(u"Start Game", "start", "True"),
(u"Load Game", _intra_jumps("load_screen", "main_game_transition"), "True"),
(u"Preferences", _intra_jumps("preferences_screen", "main_game_transition"), "True"),
(u"Help", _help, "True", "config.help"),
(u"Quit", ui.jumps("_quit"), "True"),
]
config.game_menu = [
( None, u"Return", ui.jumps("_return"), 'True'),
( "preferences", u"Preferences", _intra_jumps("preferences_screen", "intra_transition"), 'True' ),
( "save", u"Save Game", _intra_jumps("save_screen", "intra_transition"), 'not main_menu' ),
( "load", u"Load Game", _intra_jumps("load_screen", "intra_transition"), 'True'),
( None, u"Main Menu", ui.callsinnewcontext("_main_menu_prompt"), 'not main_menu' ),
( "help", u"Help", _help, "True", "config.help"),
( None, u"Quit", ui.callsinnewcontext("_quit_prompt"), 'True' ),
]
label _quit_prompt:
$ renpy.loadsave.force_autosave()
if layout.yesno_prompt(None, layout.QUIT):
jump _quit
else:
return
label _main_menu_prompt:
if layout.yesno_prompt(None, layout.MAIN_MENU):
$ renpy.full_restart(transition=config.game_main_transition)
else:
return
+63
View File
@@ -0,0 +1,63 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This file contains code that sets up the various mixers, based on how
# the user sets config.has_music, .has_sound, and .has_voice.
init -1130 python hide:
# Set to true in the very unlikely event you want to manually init
# the sound system.
config.force_sound = False
# basics: True if the game will have music.
config.has_music = True
# basics: True if the game will have sound effects.
config.has_sound = True
# Register 8 channels by default, for compatiblity with older version
# of Ren'Py.
for i in xrange(0, 8):
renpy.music.register_channel(i)
renpy.music.register_channel("movie", "music", False, stop_on_mute=False)
# Set up default names for some of the channels.
renpy.music.alias_channel(0, "sound")
renpy.music.alias_channel(7, "music")
renpy.music.alias_channel(2, "voice")
init 1130:
python hide:
if not config.has_music and not config.has_sound:
mixers = None
elif not config.has_music and config.has_sound:
mixers = [ 'sfx' ] * 8
elif config.has_music and not config.has_sound:
mixers = [ 'music' ] * 8
else:
mixers = [ 'sfx' ] * 3 + [ 'music' ] * 5
if config.has_voice:
if not mixers:
mixers = [ 'voice' ] * 8
else:
mixers[2] = 'voice'
if not mixers:
config.sound = config.force_sound
else:
for i, m in enumerate(mixers):
renpy.sound.set_mixer(i, m, default=True)
if m == 'music':
renpy.music.set_music(i, True, default=True)
else:
renpy.music.set_music(i, False, default=True)
+339
View File
@@ -0,0 +1,339 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This is an implementation of NVL-mode, which can be used to show
# dialogue in a fullscreen way, like NVL-style games. Multiple lines
# of dialogue are shown on the screen at once, whenever a line of
# dialogue is said by a NVLCharacter. Calling the nvl_clear function
# clears the screen, ensuring that the the next line will appear at
# the top of the screen.
#
# You can also have menus appear on the screen, by running:
#
# init:
# $ menu = nvl_menu
#
# It's also possible to make the narrator a NVLCharacter, using code like:
#
# init:
# $ narrator = NVLCharacter(None)
##############################################################################
# The implementation of NVL mode lives below this line.
init -1100 python:
# Styles that are used by nvl mode.
style.create('nvl_window', 'default', 'the window containing nvl-mode dialogue')
style.create('nvl_vbox', 'vbox', 'the vbox containing each box of nvl-mode dialogue')
style.create('nvl_label', 'say_label', 'an nvl-mode character\'s name')
style.create('nvl_dialogue', 'say_dialogue', 'nvl-mode character dialogue')
style.create('nvl_entry', 'default', 'a window containing each line of nvl-mode dialogue')
style.create('nvl_menu_window', 'default', 'a window containing an nvl-mode menu')
style.create('nvl_menu_choice', 'default', 'an nvl-mode menu choice')
style.create('nvl_menu_choice_chosen', 'nvl_menu_choice', 'an nvl-mode menu choice that has been chosen')
style.create('nvl_menu_choice_button', 'default', 'an nvl-mode choice button')
style.create('nvl_menu_choice_chosen_button', 'nvl_menu_choice_button', 'an nvl-mode choice button that\'s been chosen.')
# Set up nvl mode styles.
style.nvl_label.minwidth = 150
style.nvl_label.text_align = 1.0
style.nvl_window.background = "#0008"
style.nvl_window.yfill = True
style.nvl_window.xfill = True
style.nvl_window.xpadding = 20
style.nvl_window.ypadding = 30
style.nvl_vbox.box_spacing = 10
style.nvl_menu_choice.idle_color = "#0ff"
style.nvl_menu_choice.hover_color = "#ff0"
style.nvl_menu_choice_button.left_margin = 160
style.nvl_menu_choice_button.right_margin = 20
style.nvl_menu_choice_button.xfill = True
style.nvl_menu_choice_button.hover_background = "#F0F2"
# nvlmode: The CTC indicator to use when at the end of an NVL page.
config.nvl_page_ctc = None
# nvlmode: The position of the CTC indicator used at the end of an NVL page.
config.nvl_page_ctc_position = "nestled"
# Should we used paged rollback?
config.nvl_paged_rollback = False
# A hook that delta wanted, that is called instead of renpy.show_display_say
config.nvl_show_display_say = renpy.show_display_say
# A list of arguments that have been passed to nvl_record_show.
nvl_list = None
# If set, then all of the nvl-specific style get indexed with this.
nvl_variant = None
# Returns the appropriate variant style.
def __s(s):
if nvl_variant:
return s[nvl_variant]
else:
return s
def nvl_show_core():
if renpy.in_rollback():
nvl_window = __s(style.nvl_window)['rollback']
nvl_vbox = __s(style.nvl_vbox)['rollback']
else:
nvl_window = __s(style.nvl_window)
nvl_vbox = __s(style.nvl_vbox)
ui.window(style=nvl_window)
ui.vbox(style=nvl_vbox)
rv = None
for i in nvl_list:
if not i:
continue
who, what, kw = i
rv = config.nvl_show_display_say(who, what, variant=nvl_variant, **kw)
ui.close()
renpy.shown_window()
return rv
def nvl_window():
nvl_show_core()
def nvl_show(with_):
nvl_show_core()
renpy.with_statement(with_)
def nvl_hide(with_):
nvl_show_core()
renpy.with_statement(None)
renpy.with_statement(with_)
def nvl_erase():
if nvl_list:
nvl_list.pop()
# Check to see if one of the next statements is nvl clear.
def nvl_clear_next():
# The number of statements forward to look.
count = 10
scry = renpy.scry()
scry = scry.next()
while count and scry:
count -= 1
if scry.nvl_clear:
return True
if scry.interacts:
return False
scry = scry.next()
class NVLCharacter(ADVCharacter):
def __init__(self,
who=renpy.character.NotSet,
kind=None,
**properties):
if kind is None:
kind = store.nvl
if "clear" in properties:
self.clear = properties.pop("clear")
else:
self.clear = kind.clear
ADVCharacter.__init__(
self,
who,
kind=kind,
**properties)
def do_add(self, who, what):
if store.nvl_list is None:
store.nvl_list = [ ]
kwargs = self.show_args.copy()
kwargs["what_args"] = self.what_args
kwargs["who_args"] = self.who_args
kwargs["window_args"] = self.window_args
store.nvl_list.append((who, what, kwargs))
def do_display(self, who, what, **display_args):
page = self.clear or nvl_clear_next()
if config.nvl_page_ctc and page:
display_args["ctc"] = config.nvl_page_ctc
display_args["ctc_position"] = config.nvl_page_ctc_position
if config.nvl_paged_rollback:
if page:
checkpoint = True
else:
if renpy.in_rollback():
return
checkpoint = False
else:
checkpoint = True
renpy.display_say(nvl_show_core,
checkpoint=checkpoint,
**display_args)
def do_done(self, who, what):
if self.clear:
nvl_clear()
def do_extend(self):
store.nvl_list = store.nvl_list[:-1]
# The default NVLCharacter.
nvl = NVLCharacter(
show_say_vbox_properties={ 'box_layout' : 'horizontal' },
who_style='nvl_label',
what_style='nvl_dialogue',
window_style='nvl_entry',
type='nvl',
clear=False,
kind=adv)
def nvl_clear():
store.nvl_list = [ ]
# Run clear at the start of the game.
config.start_callbacks.append(nvl_clear)
def nvl_menu(items):
if nvl_list is None:
store.nvl_list = [ ]
ui.layer("transient")
ui.clear()
ui.close()
ui.window(style=__s(style.nvl_window))
ui.vbox(style=__s(style.nvl_vbox))
for i in nvl_list:
if not i:
continue
who, what, kw = i
rv = renpy.show_display_say(who, what, **kw)
renpy.display_menu(items, interact=False,
window_style=__s(style.nvl_menu_window),
choice_style=__s(style.nvl_menu_choice),
choice_chosen_style=__s(style.nvl_menu_choice_chosen),
choice_button_style=__s(style.nvl_menu_choice_button),
choice_chosen_button_style=__s(style.nvl_menu_choice_chosen_button),
)
ui.close()
roll_forward = renpy.roll_forward_info()
rv = ui.interact(roll_forward=roll_forward)
renpy.checkpoint(rv)
return rv
NVLSpeaker = NVLCharacter
config.nvl_adv_transition = None
config.adv_nvl_transition = None
init 1140 python:
if config.nvl_adv_transition or config.adv_nvl_transition:
def _nvl_adv_callback(event, interact, type, **kwargs):
if event != "begin" or not interact or renpy.get_transition():
return
old_type = renpy.last_interact_type()
if old_type == "say" and type == "nvl":
# We have an extra line in the nvl_list as we do this. So
# take it out for the duration of the nvl_show.
old_nvl_list = store.nvl_list
store.nvl_list = old_nvl_list[:-1]
nvl_show(config.adv_nvl_transition)
store.nvl_list = old_nvl_list
elif old_type == "nvl" and type == "say":
nvl_hide(config.nvl_adv_transition)
config.all_character_callbacks.insert(0, _nvl_adv_callback)
python early hide:
def parse_nvl_show_hide(l):
rv = l.simple_expression()
if rv is None:
renpy.error('expected simple expression')
if not l.eol():
renpy.error('expected end of line')
return rv
def lint_nvl_show_hide(trans):
_try_eval(trans, 'transition')
def execute_nvl_show(trans):
nvl_show(eval(trans))
def execute_nvl_hide(trans):
nvl_hide(eval(trans))
renpy.statements.register("nvl show",
parse=parse_nvl_show_hide,
execute=execute_nvl_show,
lint=lint_nvl_show_hide)
renpy.statements.register("nvl hide",
parse=parse_nvl_show_hide,
execute=execute_nvl_hide,
lint=lint_nvl_show_hide)
def parse_nvl_clear(l):
if not l.eol():
renpy.error('expected end of line')
return None
def execute_nvl_clear(parse):
nvl_clear()
def scry_nvl_clear(parse, scry):
scry.nvl_clear = True
renpy.statements.register('nvl clear',
parse=parse_nvl_clear,
execute=execute_nvl_clear,
scry=scry_nvl_clear)
+135
View File
@@ -0,0 +1,135 @@
# This file contains the spline motion code contributed by Aenakume, at
# http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=3977
init -1080 python:
class _SplineInterpolator(object):
ANCHORS = {
'top' : 0.0,
'center' : 0.5,
'bottom' : 1.0,
'left' : 0.0,
'right' : 1.0,
}
def __init__(self, points, anchors=(0.5, 0.5)):
assert len(points) >= 2, "Need at least a start and end point."
def setup_coordinate_(c):
if len(c) == 2:
c += anchors
return [ self.ANCHORS.get(i, i) for i in c ]
self.points = []
for p in points:
length = len(p)
if isinstance(p[-1], float):
length = len(p) - 1
point = [ p[-1] ]
else:
length = len(p)
point = [ -1 ]
self.points.append(point + [ setup_coordinate_(p[i]) for i in range(length) ])
# Make sure start and end times are set, if not already set
if self.points[0][0] == -1:
self.points[0][0] = 0.0
if self.points[-1][0] == -1:
self.points[-1][0] = 1.0
# Now we gotta calculate the step times that need calculating
for start in range(1, len(self.points) - 1):
if self.points[start][0] != -1:
continue
end = start + 1
while end < (len(self.points) - 1) and self.points[end][0] == -1:
end += 1
step = (self.points[end][0] - self.points[start - 1][0]) / float(end - start + 1)
for i in range(start, end):
self.points[i][0] = self.points[i - 1][0] + step
# And finally, sort the list of points by increasing time
self.points.sort(key=lambda a : a[0])
self.initialized = None
def init_values(self, sizes):
def to_abs_(value, size):
if type(value) == float:
return value * size
else:
return value
def coord_(c):
if len(c) == 2:
c = c + (0, 0)
return ( to_abs_(c[0], sizes[0]) - to_abs_(c[2], sizes[2]),
to_abs_(c[1], sizes[1]) - to_abs_(c[3], sizes[3]) )
for p in self.points:
for i in range(1, len(p)):
p[i] = coord_(p[i])
self.initialized = sizes
def __call__(self, t, sizes):
# Initialize if necessary
if not self.initialized == sizes:
self.init_values(sizes)
# Now we must determine which segment we are in
for segment in range(len(self.points)):
if self.points[segment][0] > t:
break
# If this is the zeroth segment, just start at the start point
if segment == 0:
result = self.points[0][1]
# If this is past the last segment, just leave it at the end point
elif segment == len(self.points) - 1 and t > self.points[-1][0]:
result = self.points[-1][1]
else:
# Scale t
t = (t - self.points[segment - 1][0]) / (self.points[segment][0] - self.points[segment - 1][0])
# Get start and end points
start = self.points[segment - 1][1]
end = self.points[segment][1]
# Now what kind of interpolation is it?
if len(self.points[segment]) == 2: # Straight line
t_p = 1.0 - t
result = [ t_p * start[i] + t * end[i] for i in 0,1 ]
elif len(self.points[segment]) == 3: # Quadratic Bezier
t_pp = (1.0 - t)**2
t_p = 2 * t * (1.0 - t)
t2 = t**2
result = [ t_pp * start[i] + t_p * self.points[segment][2][i] + t2 * end[i] for i in 0,1 ]
elif len(self.points[segment]) == 4: # Cubic Bezier
t_ppp = (1.0 - t)**3
t_pp = 3 * t * (1.0 - t)**2
t_p = 3 * t**2 * (1.0 - t)
t3 = t**3
result = [ t_ppp * start[i] + t_pp * self.points[segment][2][i] + t_p * self.points[segment][3][i] + t3 * end[i] for i in 0,1 ]
return ( absolute(result[0]), absolute(result[1]), 0, 0 )
def SplineMotion(points, time, child=None, anchors=(0.5, 0.5), repeat=False, bounce=False, anim_timebase=False, style='default', time_warp=None, **properties):
return Motion(_SplineInterpolator(points, anchors), time, child, repeat=repeat, bounce=bounce, anim_timebase=anim_timebase, style=style, time_warp=time_warp, add_sizes=True, **properties)
+455
View File
@@ -0,0 +1,455 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This file contains code that creates a few new statements. We'll
# also describe here the API for defining your own statements.
#
# Statements can be defined by calling renpy.statements.register. This
# function takes a string giving the keywords at the start of the
# statement, and then up to 4 functions defining the behavior of the
# statement: parse, execute, predict, and lint
#
# The parse function takes a lexer object as an argument, and is
# expected to return some parser data. The lexer has the following
# methods.
#
# l.eol() - True if we are at the end of the line.
# l.match(re) - Matches an arbitrary regexp string.
# l.keyword(s) - Matches s.
# l.name() - Matches any non-keyword name. Note that this only
# counts built-in keywords.
# l.word() - Matches any word, period.
# l.string() - Matches a renpy string.
# l.integer() - Matches an integer, returns a string containing the
# integer.
# l.float() - Matches a floating point number.
# l.simple_expression() - Matches a simple python expression, returns
# it as a string.
# l.rest() - Skips whitespace, then returns the rest of the line.
# l.checkpoint() - Returns an opaque object representing the current
# point in the parse.
# l.revert(o) - Given the object returned by l.checkpoint(), returns
# there.
#
# The parse function is expected to return an object, which is passed
# to the other functions. Parse should call renpy.error with the error
# message to report an error.
#
# The execute function is passed the object returned from parse, and
# is expected to execute the statement.
#
# The predict function is passed the object returned from parse, and
# is expected to return a list of images that are used by the
# statement.
#
# The lint function is called at lint time, after the init code is
# run. It should check the statement for errors, and report them by
# calling renpy.error with the appropriate error message.
#
# The scry function is called with a scry object. It may mutate that
# object, but it is then expected to return it. See 00nvlmode.rpy for
# details.
#
# The next function is expected to return a string giving the label of
# the next statement to execute, or None to indicate that next
# statement in the block should be executed. The next function is
# called during predict, scry, and execute, and should always return
# the same value. (Or scrying may be incorrect.)
python early hide:
# Music play - The example of a full statement.
def parse_play_music(l):
file = l.simple_expression()
if not file:
renpy.error("play requires a file")
fadeout = "None"
fadein = "0"
channel = None
loop = None
if_changed = False
while True:
if l.eol():
break
if l.keyword('fadeout'):
fadeout = l.simple_expression()
if fadeout is None:
renpy.error('expected simple expression')
continue
if l.keyword('fadein'):
fadein = l.simple_expression()
if fadein is None:
renpy.error('expected simple expression')
continue
if l.keyword('channel'):
channel = l.simple_expression()
if channel is None:
renpy.error('expected simple expression')
continue
if l.keyword('loop'):
loop = True
continue
if l.keyword('noloop'):
loop = False
continue
if l.keyword('if_changed'):
if_changed = True
continue
renpy.error('could not parse statement.')
return dict(file=file,
fadeout=fadeout,
fadein=fadein,
channel=channel,
loop=loop,
if_changed=if_changed)
def execute_play_music(p):
if p["channel"] is not None:
channel = eval(p["channel"])
else:
channel = 7
renpy.music.play(eval(p["file"]),
fadeout=eval(p["fadeout"]),
fadein=eval(p["fadein"]),
channel=channel,
loop=p.get("loop", None),
if_changed=p.get("if_changed", False))
def predict_play_music(p):
return [ ]
def lint_play_music(p):
file = _try_eval(p["file"], 'filename')
if p["channel"] is not None:
_try_eval(p["channel"], 'channel')
if not isinstance(file, list):
file = [ file ]
for fn in file:
if isinstance(fn, basestring) and not renpy.loadable(fn):
renpy.error("%r is not loadable" % fn)
renpy.statements.register('play music',
parse=parse_play_music,
execute=execute_play_music,
predict=predict_play_music,
lint=lint_play_music)
# From here on, we'll steal bits of other statements when defining other
# statements.
def parse_queue_music(l):
file = l.simple_expression()
if not file:
renpy.error("queue requires a file")
channel = None
loop = None
while not l.eol():
if l.keyword('channel'):
channel = l.simple_expression()
if channel is None:
renpy.error('expected simple expression')
if l.keyword('loop'):
loop = True
continue
if l.keyword('noloop'):
loop = False
continue
renpy.error('expected end of line')
return dict(file=file, channel=channel, loop=loop)
def execute_queue_music(p):
if p["channel"] is not None:
channel = eval(p["channel"])
else:
channel = 7
renpy.music.queue(
eval(p["file"]),
channel=channel,
loop=p.get("loop", None))
renpy.statements.register('queue music',
parse=parse_queue_music,
execute=execute_queue_music,
lint=lint_play_music)
def parse_stop_music(l):
fadeout = "None"
if l.keyword("fadeout"):
fadeout = l.simple_expression()
channel = None
if l.keyword('channel'):
channel = l.simple_expression()
if channel is None:
renpy.error('expected simple expression')
if not l.eol():
renpy.error('expected end of line')
if fadeout is None:
renpy.error('expected simple expression')
return dict(fadeout=fadeout, channel=channel)
def execute_stop_music(p):
if p["channel"] is not None:
channel = eval(p["channel"])
else:
channel = 7
renpy.music.stop(fadeout=eval(p["fadeout"]), channel=channel)
renpy.statements.register('stop music',
parse=parse_stop_music,
execute=execute_stop_music)
# Sound statements. They share alot with the equivalent music
# statements.
def execute_play_sound(p):
if p["channel"] is not None:
channel = eval(p["channel"])
else:
channel = 0
fadeout = eval(p["fadeout"]) or 0
renpy.sound.play(eval(p["file"]),
fadeout=fadeout,
fadein=eval(p["fadein"]),
channel=channel)
renpy.statements.register('play sound',
parse=parse_play_music,
execute=execute_play_sound,
lint=lint_play_music)
def execute_queue_sound(p):
if p["channel"] is not None:
channel = eval(p["channel"])
else:
channel = 0
renpy.sound.queue(eval(p["file"]), channel=channel)
renpy.statements.register('queue sound',
parse=parse_queue_music,
execute=execute_queue_sound,
lint=lint_play_music)
def execute_stop_sound(p):
if p["channel"] is not None:
channel = eval(p["channel"])
else:
channel = 0
fadeout = eval(p["fadeout"]) or 0
renpy.sound.stop(fadeout=fadeout, channel=channel)
renpy.statements.register('stop sound',
parse=parse_stop_music,
execute=execute_stop_sound)
# Generic play/queue/stop statements. These take a channel name as
# the second thing.
def parse_play_generic(l, parse_play_music=parse_play_music):
channel = l.name()
if channel is None:
renpy.error('play requires a channel')
rv = parse_play_music(l)
if rv["channel"] is None:
rv["channel"] = repr(channel)
return rv
def parse_queue_generic(l, parse_queue_music=parse_queue_music):
channel = l.name()
if channel is None:
renpy.error('queue requires a channel')
rv = parse_queue_music(l)
if rv["channel"] is None:
rv["channel"] = repr(channel)
return rv
def parse_stop_generic(l, parse_stop_music=parse_stop_music):
channel = l.name()
if channel is None:
renpy.error('stop requires a channel')
rv = parse_stop_music(l)
if rv["channel"] is None:
rv["channel"] = repr(channel)
return rv
def lint_play_generic(p, lint_play_music=lint_play_music):
channel = eval(p["channel"])
if not renpy.music.channel_defined(channel):
renpy.error("channel %r is not defined" % channel)
lint_play_music(p)
def lint_stop_generic(p):
channel = eval(p["channel"])
if not renpy.music.channel_defined(channel):
renpy.error("channel %r is not defined" % channel)
renpy.statements.register('play',
parse=parse_play_generic,
execute=execute_play_music,
predict=predict_play_music,
lint=lint_play_generic)
renpy.statements.register('queue',
parse=parse_queue_generic,
execute=execute_queue_music,
lint=lint_play_generic)
renpy.statements.register('stop',
parse=parse_stop_generic,
execute=execute_stop_music,
lint=lint_stop_generic)
##########################################################################
# "window show" and "window hide" statements.
def parse_window(l):
p = l.simple_expression()
if not l.eol():
renpy.error('expected end of line')
return p
def lint_window(p):
if p is not None:
_try_eval(p, 'window transition')
def execute_window_show(p):
if store._window:
return
if p is not None:
trans = eval(p)
else:
trans = config.window_show_transition
renpy.with_statement(None)
store._window = True
renpy.with_statement(trans)
def execute_window_hide(p):
if not _window:
return
if p is not None:
trans = eval(p)
else:
trans = config.window_hide_transition
renpy.with_statement(None)
store._window = False
renpy.with_statement(trans)
renpy.statements.register('window show',
parse=parse_window,
execute=execute_window_show,
lint=lint_window)
renpy.statements.register('window hide',
parse=parse_window,
execute=execute_window_hide,
lint=lint_window)
##########################################################################
# Pause statement.
def parse_pause(l):
delay = l.simple_expression()
if not l.eol():
renpy.error("expected end of line.")
return { "delay" : delay }
def lint_pause(p):
if p["delay"]:
_try_eval(p["delay"], 'pause statement')
def execute_pause(p):
if p["delay"]:
delay = eval(p["delay"])
renpy.with_statement(Pause(delay))
else:
renpy.pause()
renpy.statements.register('pause',
parse=parse_pause,
lint=lint_pause,
execute=execute_pause)
init -1200 python:
config.window_show_transition = None
config.window_hide_transition = None
def _try_eval(e, what):
try:
return eval(e)
except:
renpy.error('unable to evaluate %s %r' % (what, e))
+311
View File
@@ -0,0 +1,311 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This file is responsible for creating and defining the default styles
# used by the system.
# This file should be considered part of the Ren'Py library, and not
# something that needs to be modified by the user. Instead, just update
# the appropriate style property in an init: block in your script.
#
# For example, to change the default window backgrounds to a
# transparent dark red, add:
#
# init:
# $ style.window.background = "#8008"
#
# to your script. No need to mess around here, it will just make your
# life harder when a new version of Ren'Py is released.
init -1200 python hide:
# Style Declarations #################################################
style.default = Style(None, help='root of style hierarchy')
style.hbox = Style(style.default, help='horizontal boxes')
style.vbox = Style(style.default, help='vertical boxes')
style.window = Style(style.default, help='windows created with ui.window')
style.image_placement = Style(style.default, help='default placement of images on the screen')
style.image = Style(style.default, help="default style of images")
style.motion = Style(style.default, help="default style of motions and zooms.")
style.animation = Style(style.default, help="default style of animations.")
style.say_label = Style(style.default, help='the name of the character speaking dialogue.')
style.say_dialogue = Style(style.default, help='used for dialogue text')
style.say_thought = Style(style.default, help='used by the default narrator')
style.say_window = Style(style.window, help='windows containing dialogue and thoughts')
style.say_who_window = Style(style.window, help='window containing the label in two-window-say mode')
style.say_two_window_vbox = Style(style.vbox, help='vbox containing the two windows in two-window-say mode')
style.say_vbox = Style(style.vbox, help='contains the label (if present) and the body of dialogue')
style.menu = Style(style.default, help='the vbox containing an in-game menu')
style.menu_caption = Style(style.default, help='in-game menu caption text')
style.menu_choice = Style(style.default, help='text of an in-game menu choice')
style.menu_choice_button = Style(style.default, help='buttons containing in-game menu choices')
style.menu_choice_chosen = Style(style.menu_choice, help='text of an in-game menu choice that has been chosen')
style.menu_choice_chosen_button = Style(style.menu_choice_button, help='buttons containing chosen in-game menu choices')
style.menu_window = Style(style.window, help='a window containing a menu')
style.input_text = Style(style.default, help='text of an input box')
style.input_prompt = Style(style.default, help='prompt of an input box')
style.input_window = Style(style.window, help='window of an input box')
style.centered_window = Style(style.default, help='window containing centered text')
style.centered_text = Style(style.default, help='centered text')
style.imagemap = Style(style.image_placement, help='default style of imagemaps')
style.imagemap_button = Style(style.default, help='default style of buttons inside imagemaps')
style.image_button = Style(style.default, help='default style of image buttons')
style.image_button_image = Style(style.default, help='default style of images inside image buttons')
style.hyperlink = Style(style.default, help=None) # ignored
style.hyperlink_text = Style(style.default, help='hyperlinked text')
style.viewport = Style(style.default, help='default style of viewports')
style.transform = Style(style.motion, help='default style of transforms')
style.list = Style(style.default)
style.list_box = Style(style.vbox)
style.list_row = Style(style.default)
style.list_row_box = Style(style.hbox)
style.list_spacer = Style(style.default)
style.list_text = Style(style.default)
# The base styles that can be customized by themes.
style.frame = Style(style.default, help='base style for frames.')
style.menu_frame = Style(style.frame, help='base style for frames used in the game and main menus.')
style.button = Style(style.default, help='base style for buttons.')
style.button_text = Style(style.default, help='base style for button text')
style.small_button = Style(style.button, help="base style for small buttons")
style.small_button_text = Style(style.button_text, help="base style for small button text")
style.radio_button = Style(style.button, help="base style for radio buttons")
style.radio_button_text = Style(style.button_text, help="base style for radio button text")
style.check_button = Style(style.button, help="base style for check buttons")
style.check_button_text = Style(style.button_text, help="base style for check button text")
style.large_button = Style(style.default, help="base style for large buttons")
style.large_button_text = Style(style.default, help="base style for large button text")
style.label = Style(style.default, help="base style for windows surrounding labels")
style.label_text = Style(style.default, help="base style for label text")
style.prompt = Style(style.default, help="base style for windows surrounding prompts")
style.prompt_text = Style(style.default, help="base style for prompt text")
style.bar = Style(style.default, help='base style for horizontal bars')
style.vbar = Style(style.default, help='base style for vertical bars')
style.slider = Style(style.default, help='base style for horizontal sliders')
style.vslider = Style(style.default, help='base style for vertical sliders')
style.scrollbar = Style(style.default, help='base style for horizontal scrollbars')
style.vscrollbar = Style(style.default, help='base style for vertical scollbars')
style.mm_root = Style(style.default, help="main menu root window")
style.gm_root = Style(style.default, help="game menu root window")
init -1090 python:
# Colors #############################################################
# The Default Style ###################################################
# Text properties.
style.default.font = "DejaVuSans.ttf"
style.default.language = "western"
style.default.antialias = True
style.default.size = 22
style.default.color = (255, 255, 255, 255)
style.default.black_color = (0, 0, 0, 255)
style.default.bold = False
style.default.italic = False
style.default.underline = False
style.default.strikethrough = False
style.default.drop_shadow = None
style.default.drop_shadow_color = (0, 0, 0, 255)
style.default.outlines = [ ]
style.default.minwidth = 0
style.default.text_align = 0
style.default.justify = False
style.default.text_y_fudge = 0
style.default.first_indent = 0
style.default.rest_indent = 0
style.default.line_spacing = 0
style.default.layout = "greedy"
style.default.subtitle_width = 0.9
style.default.slow_cps = None
style.default.slow_cps_multiplier = 1.0
style.default.slow_abortable = False
# Window properties.
style.default.background = None
style.default.xpadding = 0
style.default.ypadding = 0
style.default.xmargin = 0
style.default.ymargin = 0
style.default.xfill = False
style.default.yfill = False
style.default.xminimum = 0 # Includes margins and padding.
style.default.yminimum = 0 # Includes margins and padding.
# Placement properties.
style.default.xpos = None # 0
style.default.ypos = None # 0
style.default.xanchor = None # 0
style.default.yanchor = None # 0
style.default.xmaximum = None
style.default.ymaximum = None
style.default.xoffset = 0
style.default.yoffset = 0
style.default.subpixel = False
# Sound properties.
style.default.sound = None
# Box properties.
style.default.spacing = 0
style.default.first_spacing = None
style.default.box_layout = None
# Focus properties.
style.default.focus_mask = None
style.default.focus_rect = None
# Bar properties.
style.default.fore_bar = Null()
style.default.aft_bar = Null()
style.default.thumb = None
style.default.thumb_shadow = None
style.default.left_gutter = 0
style.default.right_gutter = 0
style.default.thumb_offset = 0
style.default.unscrollable = None
# Misc.
style.default.activate_sound = None
style.default.clipping = False
# Boxes.
style.hbox.box_layout = 'horizontal'
style.vbox.box_layout = 'vertical'
# Motions, zooms, rotozooms, and transforms.
style.motion.xanchor = 0
style.motion.yanchor = 0
style.motion.xpos = 0
style.motion.ypos = 0
# Windows.
style.window.background = Solid((0, 0, 0, 192))
style.window.xpadding = 6
style.window.ypadding = 6
style.window.xmargin = 0
style.window.ymargin = 0
style.window.xfill = True
style.window.yfill = False
style.window.yminimum = 150 # Includes margins and padding.
style.window.xalign = 0.5
style.window.yalign = 1.0
# Image placement.
style.image_placement.xpos = 0.5
style.image_placement.ypos = 1.0
style.image_placement.xanchor = 0.5
style.image_placement.yanchor = 1.0
# Dialogue
style.say_label.bold = True
style.say_vbox.spacing = 8
# Two window styles.
style.say_who_window.xminimum = 200
style.say_who_window.yminimum = 34
style.say_who_window.xfill = False
style.say_who_window.xalign = 0
style.say_two_window_vbox.yalign = 1.0
# Menus.
style.menu_choice.idle_color = "#0ff"
style.menu_choice.hover_color = "#ff0"
style.input_text.color = "#ff0"
# Styles used by centered.
style.centered_window.xalign = 0.5
style.centered_window.xfill = False
style.centered_window.yalign = 0.5
style.centered_window.yfill = False
style.centered_window.xpadding = 10
style.centered_text.textalign = 0.5
style.centered_text.xalign = 0.5
style.centered_text.yalign = 0.5
style.centered_text.layout = "subtitle"
# Hyperlinks.
style.hyperlink_text.underline = True
style.hyperlink_text.hover_color = "#0ff"
style.hyperlink_text.idle_color = "#08f"
# Bars.
style.default.bar_invert = False
style.default.bar_resizing = False
style.default.bar_vertical = False
style.vbar.bar_vertical = True
style.vslider.bar_vertical = True
style.vscrollbar.bar_vertical = True
style.vscrollbar.bar_invert = True
# Viewport
style.viewport.clipping = True
# Transform
style.transform.subpixel = True
# Menu windows.
style.mm_root.background = "#000"
style.mm_root.xfill = True
style.mm_root.yfill = True
style.gm_root.background = "#000"
style.gm_root.xfill = True
style.gm_root.yfill = True
# Lists.
style.list_row.xfill = True
style.list_row.ymargin = 0
style.list_row.background = "#eee"
style.list_row[1].background = "#ddd"
style.list_row.hover_background = "#fff"
style.list_row[1].hover_background = "#fff"
style.list_row.selected_background = "#cce"
style.list_row[1].selected_background = "#cce"
style.list_text.color = "#000"
style.list_text.size = 14
style.list_spacer.xminimum = 15
######################################################################
# Error messages.
style.error_root.background = Solid((220, 220, 255, 255))
style.error_root.xfill = True
style.error_root.yfill = True
style.error_root.xpadding = 20
style.error_root.ypadding = 20
style.error_title.color = (255, 128, 128, 255)
style.error_body.color = (128, 128, 255, 255)
+710
View File
@@ -0,0 +1,710 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1110 python:
class _Theme(object):
# Using theme as a decorator is what we do to create a new theme.
def __call__(self, func):
setattr(self, func.func_name, func)
return func
_theme = theme = _Theme()
del _Theme
# Public only for compatiblity purposes.
def RoundRect(color, small=False):
if small:
size = 6
else:
if config.screen_width <= 640:
size = 6
else:
size = 12
return Frame(theme.OneOrTwoColor("_roundrect/rr%dg.png" % size, color), size, size)
init -1110 python hide:
@theme
def clear_frames():
style.frame.clear()
@theme
def clear_buttons():
style.button.clear()
style.button_text.clear()
style.radio_button.clear()
style.radio_button_text.clear()
style.check_button.clear()
style.check_button_text.clear()
style.small_button.clear()
style.small_button_text.clear()
@theme
def clear_large_buttons():
style.large_button.clear()
style.large_button_text.clear()
@theme
def clear_labels():
style.label.clear()
style.label_text.clear()
@theme
def clear_prompts():
style.prompt.clear()
style.prompt_text.clear()
@theme
def clear_bars():
style.bar.clear()
style.vbar.clear()
style.scrollbar.clear()
style.vscrollbar.clear()
style.slider.clear()
style.vslider.clear()
style.vbar.bar_vertical = True
style.vslider.bar_vertical = True
style.vscrollbar.bar_vertical = True
style.vscrollbar.bar_invert = True
# This recolors the given image using one or two colors.
@theme
def OneOrTwoColor(image, color):
if len(color) == 2:
return im.Twocolor(image, color[0], color[1])
else:
return im.Twocolor(image, color, color)
@theme
def roundrect_frames(
less_rounded,
frame):
theme.clear_frames()
style.frame.background = RoundRect(frame, less_rounded)
style.frame.xpadding = 6
style.frame.ypadding = 6
@theme
def roundrect_buttons(text_size,
less_rounded,
widget,
widget_hover,
widget_text,
widget_selected,
disabled,
disabled_text):
theme.clear_buttons()
style.button.background = RoundRect(widget, less_rounded)
style.button.hover_background = RoundRect(widget_hover, less_rounded)
style.button.insensitive_background = RoundRect(disabled, less_rounded)
style.button_text.size = text_size
style.button_text.color = widget_text
style.button_text.selected_color = widget_selected
style.button_text.insensitive_color = disabled_text
if less_rounded:
style.button.xpadding = 6
else:
style.button.xpadding = 12
style.button.ypadding = 1
style.button.xmargin = 1
style.button.ymargin = 1
style.button_text.xalign = 0.5
style.button_text.yalign = 0.5
style.button_text.text_align = 0.5
@theme
def roundrect_large_buttons(
text_size,
less_rounded,
widget,
widget_hover,
widget_text,
widget_selected,
disabled,
disabled_text):
theme.clear_large_buttons()
if less_rounded:
style.large_button.xpadding = 6
else:
style.large_button.xpadding = 12
style.large_button.ypadding = 1
style.large_button.xmargin = 1
style.large_button.ymargin = 1
style.large_button.background = RoundRect(widget, less_rounded)
style.large_button.hover_background = RoundRect(widget_hover, less_rounded)
style.large_button.insensitive_background = RoundRect(disabled, less_rounded)
style.large_button_text.size = text_size
style.large_button_text.color = widget_text
style.large_button_text.selected_color = widget_selected
style.large_button_text.insensitive_color = disabled_text
style.large_button_text.xalign = 0
style.large_button_text.yalign = 0
@theme
def roundrect_labels(
text_size,
label):
theme.clear_labels()
style.label_text.size = text_size
style.label_text.color = label
@theme
def roundrect_prompts(
text_size,
label):
theme.clear_prompts()
style.prompt_text.size = text_size
style.prompt_text.color = label
style.prompt.xalign = 0.5
style.prompt_text.text_align = 0.5
style.prompt_text.layout = "subtitle"
@theme
def roundrect_bars(
widget,
widget_hover):
theme.clear_bars()
def img(name, color, x, y):
rv = theme.OneOrTwoColor("_roundrect/" + name + ".png", color)
if x is not None:
rv = Frame(rv, x, y)
return rv
# Bars.
style.bar.ymaximum = 24
style.bar.left_gutter = 6
style.bar.right_gutter = 6
style.bar.thumb_offset = 6
style.bar.left_bar = img("rrslider_full", widget, 12, 0)
style.bar.right_bar = img("rrslider_empty", widget, 12, 0)
style.bar.thumb = img("rrslider_thumb", widget, None, None)
style.bar.hover_left_bar = img("rrslider_full", widget_hover, 12, 0)
style.bar.hover_right_bar = img("rrslider_empty", widget_hover, 12, 0)
style.bar.hover_thumb = img("rrslider_thumb", widget_hover, None, None)
style.vbar.xmaximum = 24
style.vbar.top_gutter = 6
style.vbar.bottom_gutter = 6
style.vbar.thumb_offset = 6
style.vbar.bottom_bar = img("rrvslider_full", widget, 0, 12)
style.vbar.top_bar = img("rrvslider_empty", widget, 0, 12)
style.vbar.thumb = img("rrvslider_thumb", widget, None, None)
style.vbar.hover_bottom_bar = img("rrvslider_full", widget_hover, 0, 12)
style.vbar.hover_top_bar = img("rrvslider_empty", widget_hover, 0, 12)
style.vbar.hover_thumb = img("rrvslider_thumb", widget_hover, None, None)
# Sliders.
style.slider.ymaximum = 24
style.slider.left_gutter = 6
style.slider.right_gutter = 6
style.slider.thumb_offset = 6
style.slider.left_bar = img("rrslider_full", widget, 12, 0)
style.slider.right_bar = img("rrslider_empty", widget, 12, 0)
style.slider.thumb = img("rrslider_thumb", widget, None, None)
style.slider.hover_left_bar = img("rrslider_full", widget_hover, 12, 0)
style.slider.hover_right_bar = img("rrslider_empty", widget_hover, 12, 0)
style.slider.hover_thumb = img("rrslider_thumb", widget_hover, None, None)
style.vslider.xmaximum = 24
style.vslider.top_gutter = 6
style.vslider.bottom_gutter = 6
style.vslider.thumb_offset = 6
style.vslider.bottom_bar = img("rrvslider_full", widget, 0, 12)
style.vslider.top_bar = img("rrvslider_empty", widget, 0, 12)
style.vslider.thumb = img("rrvslider_thumb", widget, None, None)
style.vslider.hover_bottom_bar = img("rrvslider_full", widget_hover, 0, 12)
style.vslider.hover_top_bar = img("rrvslider_empty", widget_hover, 0, 12)
style.vslider.hover_thumb = img("rrvslider_thumb", widget_hover, None, None)
# Scrollbars.
style.scrollbar.left_gutter = 6
style.scrollbar.right_gutter = 6
style.scrollbar.thumb_offset = 6
style.scrollbar.ymaximum = 12
style.scrollbar.left_bar = img("rrscrollbar", widget, 12, 0)
style.scrollbar.right_bar = img("rrscrollbar", widget, 12, 0)
style.scrollbar.thumb = img("rrscrollbar_thumb", widget, None, None)
style.scrollbar.hover_left_bar = img("rrscrollbar", widget_hover, 12, 0)
style.scrollbar.hover_right_bar = img("rrscrollbar", widget_hover, 12, 0)
style.scrollbar.hover_thumb = img("rrscrollbar_thumb", widget_hover, None, None)
style.vscrollbar.top_gutter = 6
style.vscrollbar.bottom_gutter = 6
style.vscrollbar.thumb_offset = 6
style.vscrollbar.xmaximum = 12
style.vscrollbar.left_bar = img("rrvscrollbar", widget, 0, 12)
style.vscrollbar.right_bar = img("rrvscrollbar", widget, 0, 12)
style.vscrollbar.thumb = img("rrvscrollbar_thumb", widget, None, None)
style.vscrollbar.hover_left_bar = img("rrvscrollbar", widget_hover, 0, 12)
style.vscrollbar.hover_right_bar = img("rrvscrollbar", widget_hover, 0, 12)
style.vscrollbar.hover_thumb = img("rrvscrollbar_thumb", widget_hover, None, None)
@theme
def roundrect(
widget = (0, 60, 120, 255),
widget_hover = (0, 80, 160, 255),
widget_text = (200, 225, 255, 255),
widget_selected = (255, 255, 200, 255),
disabled = (64, 64, 64, 255),
disabled_text = (200, 200, 200, 255),
label = (255, 255, 255, 255),
frame = (100, 150, 200, 255),
window = (0, 0, 0, 192),
mm_root = Solid((220, 235, 255, 255)),
gm_root = Solid((220, 235, 255, 255)),
text_size=None,
small_text_size=None,
less_rounded = False,
# Compat for the old roundrect theme.
window = None,
button_menu = None,
rounded_window = True,
outline_bars = False,
mm_root = None,
gm_root = None):
if button_menu is None:
if (config.script_version is not None) and (config.script_version < (6, 9, 0)):
button_menu = True
else:
button_menu = False
layout.defaults()
if config.screen_width <= 640:
text_size = text_size or 18
small_text_size = small_text_size or 12
less_rounded = True
else:
text_size = text_size or 22
small_text_size = small_text_size or 16
radius = 12
theme.roundrect_frames(
less_rounded,
frame)
theme.roundrect_buttons(
text_size,
less_rounded,
widget,
widget_hover,
widget_text,
widget_selected,
disabled,
disabled_text)
theme.roundrect_large_buttons(
small_text_size,
less_rounded,
widget,
widget_hover,
widget_text,
widget_selected,
disabled,
disabled_text)
theme.roundrect_labels(
text_size,
label)
theme.roundrect_prompts(
text_size,
label)
theme.roundrect_bars(
widget,
widget_hover)
if mm_root is not None:
style.mm_root.background = mm_root
if gm_root is not None:
style.gm_root.background = gm_root
if window is not None:
if rounded_window:
style.window.background = RoundRect(window, less_rounded)
style.window.xpadding = 6
style.window.xmargin = 6
style.window.ypadding = 6
style.window.ymargin = 6
else:
style.window.background = Solid(window)
style.window.xpadding = 6
style.window.xmargin = 0
style.window.ypadding = 6
style.window.ymargin = 0
if button_menu:
layout.button_menu()
@theme
def ancient():
layout.defaults()
style.frame.background = Solid((0, 0, 128, 128))
style.frame.xpadding = 10
style.frame.ypadding = 10
style.frame.xmargin = 10
style.frame.ymargin = 5
style.menu_frame.set_parent(style.default)
dark_cyan = (0, 192, 255, 255)
bright_cyan = (0, 255, 255, 255)
dark_red = (255, 128, 128, 255)
bright_red = (255, 64, 64, 255)
green = (0, 128, 0, 255)
style.button_text.color = dark_cyan
style.button_text.hover_color = bright_cyan
style.button_text.insensitive_color = (192, 192, 192, 255)
style.button_text.size = 24
style.button_text.drop_shadow = (2, 2)
style.button_text.drop_shadow_color = "#000"
style.button_text.selected_color = dark_red
style.button_text.selected_hover_color = bright_red
style.button_text.xalign = 0.5
style.button_text.text_align = 0.5
style.bar.ymaximum = 22
style.bar.left_bar = Solid(bright_cyan)
style.bar.right_bar = Solid((0, 0, 0, 128))
style.bar.thumb = None
style.bar.thumb_offset = 0
style.bar.thumb_shadow = None
style.vbar.xmaximum = 22
style.vbar.bottom_bar = Solid(bright_cyan)
style.vbar.top_bar = Solid((0, 0, 0, 128))
style.vbar.thumb = None
style.vbar.thumb_offset = 0
style.vbar.thumb_shadow = None
style.slider.ymaximum = 22
style.slider.left_bar = Solid(bright_cyan)
style.slider.right_bar = Solid((0, 0, 0, 128))
style.slider.thumb = None
style.slider.thumb_offset = 0
style.slider.thumb_shadow = None
style.vslider.xmaximum = 22
style.vslider.bottom_bar = Solid(bright_cyan)
style.vslider.top_bar = Solid((0, 0, 0, 128))
style.vslider.thumb = None
style.vslider.thumb_offset = 0
style.vslider.thumb_shadow = None
style.scrollbar.ymaximum = 22
style.scrollbar.left_bar = Solid("#0008")
style.scrollbar.right_bar = Solid("#0008")
style.scrollbar.thumb = Solid(bright_cyan)
style.scrollbar.thumb_offset = 0
style.scrollbar.thumb_shadow = None
style.vscrollbar.xmaximum = 22
style.vscrollbar.top_bar = Solid("#0008")
style.vscrollbar.bottom_bar = Solid("#0008")
style.vscrollbar.thumb = Solid(bright_cyan)
style.vscrollbar.thumb_offset = 0
style.vscrollbar.thumb_shadow = None
style.large_button.xpadding = 5
style.large_button.ypadding = 2
style.large_button.xmargin = 5
style.large_button.ymargin = 2
style.large_button.background = "#fff"
style.large_button.hover_background = "#ffc"
style.large_button_text.size = 16
style.large_button_text.drop_shadow = (1, 1)
style.large_button_text.xalign = 0
style.large_button_text.text_align = 0
style.label_text.size = 24
style.label_text.color = green
style.label_text.drop_shadow = (1, 1)
style.label_text.drop_shadow_color = "#000"
style.prompt_text.size = 24
style.prompt_text.color = green
style.prompt_text.layout = "subtitle"
style.prompt_text.text_align = 0.5
style.prompt_text.drop_shadow = (1, 1)
style.prompt_text.drop_shadow_color = "#000"
style.mm_root.background = "#e9d8bc"
style.gm_root.background = "#e9d8bc"
@theme
def outline_frames():
theme.clear_frames()
@theme
def outline_buttons(
inside,
idle,
hover,
selected,
insensitive,
text_size):
theme.clear_buttons()
style.button.xmargin = 4
style.button_text.size = text_size
style.button_text.color = inside
style.button_text.outlines = [ (2, idle) ]
style.button_text.hover_outlines = [ (2, hover) ]
style.button_text.selected_outlines = [ (2, selected) ]
style.button_text.selected_hover_outlines = [ (2, hover) ]
style.button_text.insensitive_outlines = [ (2, insensitive) ]
@theme
def outline_large_buttons(
inside,
idle,
hover,
selected,
insensitive,
text_size,
large_button):
theme.clear_large_buttons()
style.large_button.xmargin = 4
style.large_button.ymargin = 2
style.large_button.background = large_button
style.large_button_text.size = text_size
style.large_button_text.color = inside
style.large_button_text.outlines = [ (2, idle) ]
style.large_button_text.hover_outlines = [ (2, hover) ]
style.large_button_text.selected_outlines = [ (2, selected) ]
style.large_button_text.selected_hover_outlines = [ (2, hover) ]
style.large_button_text.insensitive_outlines = [ (2, insensitive) ]
@theme
def outline_prompts(
inside,
prompt,
text_size):
theme.clear_prompts()
style.prompt_text.color = inside
style.prompt_text.outlines = [ (2, prompt) ]
style.prompt_text.size = text_size
@theme
def outline_labels(
inside,
label,
text_size):
theme.clear_labels()
style.label_text.color = inside
style.label_text.outlines = [ (2, label) ]
style.label_text.size = text_size
@theme
def outline_bars(
inside,
idle,
hover):
theme.clear_bars()
def color(fn, c):
return im.Twocolor("_outline/" + fn + ".png", inside, c)
style.bar.ymaximum = 16
style.bar.left_bar = Frame(color("circle", idle), 7, 0)
style.bar.right_bar = Frame(color("bar", idle), 0, 0)
style.bar.left_gutter = 16
style.bar.bar_resizing = True
style.slider.ymaximum = 16
style.slider.left_bar = Frame(color("bar", idle), 0, 0)
style.slider.right_bar = Frame(color("bar", idle), 0, 0)
style.slider.thumb = color("circle", idle)
style.slider.hover_left_bar = Frame(color("bar", hover), 0, 0)
style.slider.hover_right_bar = Frame(color("bar", hover), 0, 0)
style.slider.hover_thumb = color("circle", hover)
style.scrollbar.ymaximum = 16
style.scrollbar.left_bar = Frame(color("bar", idle), 0, 0)
style.scrollbar.right_bar = Frame(color("bar", idle), 0, 0)
style.scrollbar.thumb = Frame(color("circle", idle), 7, 0)
style.scrollbar.hover_left_bar = Frame(color("bar", hover), 0, 0)
style.scrollbar.hover_right_bar = Frame(color("bar", hover), 0, 0)
style.scrollbar.hover_thumb = Frame(color("circle", hover), 7, 0)
style.vbar.xmaximum = 16
style.vbar.bottom_bar = Frame(color("circle", idle), 0, 7)
style.vbar.top_bar = Frame(color("vbar", idle), 0, 0)
style.vbar.bottom_gutter = 16
style.vbar.bar_resizing = True
style.vslider.xmaximum = 16
style.vslider.top_bar = Frame(color("vbar", idle), 0, 0)
style.vslider.bottom_bar = Frame(color("vbar", idle), 0, 0)
style.vslider.thumb = color("circle", idle)
style.vslider.hover_top_bar = Frame(color("vbar", hover), 0, 0)
style.vslider.hover_bottom_bar = Frame(color("vbar", hover), 0, 0)
style.vslider.hover_thumb = color("circle", hover)
style.vscrollbar.xmaximum = 16
style.vscrollbar.top_bar = Frame(color("vbar", idle), 0, 0)
style.vscrollbar.bottom_bar = Frame(color("vbar", idle), 0, 0)
style.vscrollbar.thumb = Frame(color("circle", idle), 0, 7)
style.vscrollbar.hover_top_bar = Frame(color("vbar", hover), 0, 0)
style.vscrollbar.hover_bottom_bar = Frame(color("vbar", hover), 0, 0)
style.vscrollbar.hover_thumb = Frame(color("circle", hover), 0, 7)
@theme
def outline(
inside="#fff",
idle="#e66",
hover="#48f",
selected="#84f",
insensitive="#ccc",
label="#484",
prompt="#484",
background="#fee",
large_button="#fff8f8",
text_size=22,
small_text_size=16,
):
layout.defaults()
theme.outline_frames()
theme.outline_buttons(
inside,
idle,
hover,
selected,
insensitive,
text_size)
theme.outline_large_buttons(
inside,
idle,
hover,
selected,
insensitive,
small_text_size,
large_button)
theme.outline_prompts(
inside,
prompt,
text_size)
theme.outline_labels(
inside,
label,
text_size)
theme.outline_bars(
inside,
idle,
hover)
style.mm_root.background = background
style.gm_root.background = background
@theme
def image_buttons(d):
for k, (idle, hover, selected_idle, selected_hover, insensitive) in d.iteritems():
s = style.button[k]
s.xpadding = 0
s.ypadding = 0
s.background = None
s.foreground = None
s.idle_child = idle
s.hover_child = hover
s.selected_idle_child = selected_idle
s.selected_hover_child = selected_hover
s.insensitive_child = insensitive
s.focus_mask = True
@theme
def image_labels(d):
for k, l in d.iteritems():
s = style.label[k]
s.xpadding = 0
s.ypadding = 0
s.background = None
s.foreground = None
s.child = k
config.image_buttons = { }
config.image_labels = { }
init 1110 python:
if not "compat" in _layout.provided:
theme.image_buttons(config.image_buttons)
theme.image_labels(config.image_labels)
+119
View File
@@ -0,0 +1,119 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# This extra contains a basic implementation of voice support. Right
# now, voice is given its own toggle, and can either be turned on or
# turned off. In the future, we'll probably provide some way of
# toggling it on or off for individual characters.
#
# To use it, place a voice "<sndfile>" line before each voiced line of
# dialogue.
#
# voice "e_1001.ogg"
# e "Voice support lets you add the spoken word to your games."
#
# Normally, a voice is cancelled at the start of the next
# interaction. If you want a voice to span interactions, call
# voice_sustain.
#
# voice "e_1002.ogg"
# e "Voice sustain is a technique that allows the same voice file.."
#
# $ voice_sustain()
# e "...to play for two lines of dialogue."
init -1120:
python:
_voice = object()
_voice.play = None
_voice.sustain = False
_voice.seen_in_lint = False
# Call this to specify the voice file that will be played for
# the user.
def voice(file, **kwargs):
if not config.has_voice:
return
_voice.play = file
# Call this to specify that the currently playing voice file
# should be sustained through the current interaction.
def voice_sustain(ignored="", **kwargs):
if not config.has_voice:
return
_voice.sustain = True
python hide:
# basics: True if the game will have voice.
config.has_voice = True
# This is called on each interaction, to ensure that the
# appropriate voice file is played for the user.
def voice_interact():
if not config.has_voice:
return
if _voice.play and not config.skipping:
renpy.sound.play(_voice.play, channel=2)
elif not _voice.sustain:
renpy.sound.stop(channel=2)
_voice.play = None
_voice.sustain = False
config.start_interact_callbacks.append(voice_interact)
config.say_sustain_callbacks.append(voice_sustain)
def voice_afm_callback():
return not renpy.sound.is_playing(channel=2)
config.afm_callback = voice_afm_callback
python early hide:
def parse_voice(l):
fn = l.simple_expression()
if fn is None:
renpy.error('expected simple expression (string)')
if not l.eol():
renpy.error('expected end of line')
return fn
def execute_voice(fn):
fn = eval(fn)
voice(fn)
def lint_voice(fn):
_voice.seen_in_lint = True
fn = _try_eval(fn, 'voice filename')
if isinstance(fn, basestring) and not renpy.loadable(fn):
renpy.error('voice file %r is not loadable' % fn)
renpy.statements.register('voice',
parse=parse_voice,
execute=execute_voice,
lint=lint_voice)
def parse_voice_sustain(l):
if not l.eol():
renpy.error('expected end of line')
return None
def execute_voice_sustain(parsed):
voice_sustain()
renpy.statements.register('voice sustain',
parse=parse_voice_sustain,
execute=execute_voice_sustain)
Binary file not shown.
+99
View File
@@ -0,0 +1,99 @@
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below)
Bitstream Vera Fonts Copyright
------------------------------
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of the fonts accompanying this license ("Fonts") and associated
documentation files (the "Font Software"), to reproduce and distribute the
Font Software, including without limitation the rights to use, copy, merge,
publish, distribute, and/or sell copies of the Font Software, and to permit
persons to whom the Font Software is furnished to do so, subject to the
following conditions:
The above copyright and trademark notices and this permission notice shall
be included in all copies of one or more of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular
the designs of glyphs or characters in the Fonts may be modified and
additional glyphs or characters may be added to the Fonts, only if the fonts
are renamed to names not containing either the words "Bitstream" or the word
"Vera".
This License becomes null and void to the extent applicable to Fonts or Font
Software that has been modified and is distributed under the "Bitstream
Vera" names.
The Font Software may be sold as part of a larger software package but no
copy of one or more of the Font Software typefaces may be sold by itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome
Foundation, and Bitstream Inc., shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Font Software
without prior written authorization from the Gnome Foundation or Bitstream
Inc., respectively. For further information, contact: fonts at gnome dot
org.
Arev Fonts Copyright
------------------------------
Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining
a copy of the fonts accompanying this license ("Fonts") and
associated documentation files (the "Font Software"), to reproduce
and distribute the modifications to the Bitstream Vera Font Software,
including without limitation the rights to use, copy, merge, publish,
distribute, and/or sell copies of the Font Software, and to permit
persons to whom the Font Software is furnished to do so, subject to
the following conditions:
The above copyright and trademark notices and this permission notice
shall be included in all copies of one or more of the Font Software
typefaces.
The Font Software may be modified, altered, or added to, and in
particular the designs of glyphs or characters in the Fonts may be
modified and additional glyphs or characters may be added to the
Fonts, only if the fonts are renamed to names not containing either
the words "Tavmjong Bah" or the word "Arev".
This License becomes null and void to the extent applicable to Fonts
or Font Software that has been modified and is distributed under the
"Tavmjong Bah Arev" names.
The Font Software may be sold as part of a larger software package but
no copy of one or more of the Font Software typefaces may be sold by
itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the name of Tavmjong Bah shall not
be used in advertising or otherwise to promote the sale, use or other
dealings in this Font Software without prior written authorization
from Tavmjong Bah. For further information, contact: tavmjong @ free
. fr.
$Id: LICENSE 2133 2007-11-28 02:46:28Z lechimp $
BIN
View File
Binary file not shown.
-55
View File
@@ -1,55 +0,0 @@
This package was debianized by Michael Fedrowitz <michaelf@debian.org>
on Sun, 23 Feb 2003.
It was downloaded from
'http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/'.
Upstream Author: Bitstream, Inc.
Copyright:
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream
Vera is a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining
a copy of the fonts accompanying this license ("Fonts") and associated
documentation files (the "Font Software"), to reproduce and distribute
the Font Software, including without limitation the rights to use,
copy, merge, publish, distribute, and/or sell copies of the Font
Software, and to permit persons to whom the Font Software is furnished
to do so, subject to the following conditions:
The above copyright and trademark notices and this permission notice
shall be included in all copies of one or more of the Font Software
typefaces.
The Font Software may be modified, altered, or added to, and in
particular the designs of glyphs or characters in the Fonts may be
modified and additional glyphs or characters may be added to the
Fonts, only if the fonts are renamed to names not containing either
the words "Bitstream" or the word "Vera".
This License becomes null and void to the extent applicable to Fonts
or Font Software that has been modified and is distributed under the
"Bitstream Vera" names.
The Font Software may be sold as part of a larger software package but
no copy of one or more of the Font Software typefaces may be sold by
itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,
OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT
SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome
Foundation, and Bitstream Inc., shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Font
Software without prior written authorization from the Gnome Foundation
or Bitstream Inc., respectively. For further information, contact:
fonts at gnome dot org.
+504
View File
@@ -0,0 +1,504 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
######################################################################
# First up, we define a bunch of configuration variable, which the
# user can change.
# The contents of the game menu choices.
config.game_menu = [
( "return", u"Return", ui.jumps("_return"), 'True'),
( "skipping", u"Begin Skipping", ui.jumps("_return_skipping"), 'config.allow_skipping and not renpy.context().main_menu'),
( "prefs", u"Preferences", _intra_jumps("_prefs_screen", "intra_transition"), 'True' ),
( "save", u"Save Game", _intra_jumps("_save_screen", "intra_transition"), 'not renpy.context().main_menu' ),
( "load", u"Load Game", _intra_jumps("_load_screen", "intra_transition"), 'True'),
( "mainmenu", u"Main Menu", lambda : _mainmenu_prompt(), 'not renpy.context().main_menu' ),
( "quit", u"Quit", lambda : _quit_prompt("quit"), 'True' ),
]
# If not None, a map from the names of the game menu
# navigation buttons to new fixed positions for them on
# the screen.
config.game_menu_positions = None
# The number of columns of files to show at once.
config.file_page_cols = 2
# The number of rows of files to show at once.
config.file_page_rows = 5
# The number of pages to add quick access buttons for.
config.file_quick_access_pages = 5
# The positions of file picker components.
config.file_picker_positions = None
# This lets us disable the file pager. (So we only have one
# page of files.)
config.disable_file_pager = False
# This lets us disable the thumbnails in the file pager.
config.disable_thumbnails = False
# How we format time.
config.time_format = "%b %d, %H:%M"
# How we format loade_save slot formats.
config.file_entry_format = "%(time)s\n%(save_name)s"
# If True, we will be prompted before loading a game. (This can
# be changed from inside the game code, so that one can load from
# the first few screens but not after that.)
_load_prompt = True
_game_menu_screen = "_save_screen"
######################################################################
# Next, support code.
# This is used to store scratch data that's used by the
# library, but shouldn't be saved out as part of the savegame.
_scratch = object()
# This returns a window containing the game menu navigation
# buttons, set up to jump to the appropriate screen sections.
#
# This can be overridden by user code. It's called with the
# name of the selected screen... one of "mainmenu", "prefs",
# "save", "load", or "quit", at least for the default game
# menu. If None, then it's an indication that none of the
# nav buttons should be shown.
def _game_nav(screen, buttons=True):
global _screen
_screen = screen
ui.add(renpy.Keymap(toggle_fullscreen = renpy.toggle_fullscreen))
ui.add(renpy.Keymap(game_menu=ui.jumps("_noisy_return")))
ui.window(style=style.gm_root[screen])
ui.null()
if not screen:
return
if not config.game_menu_positions:
ui.window(style='gm_nav_frame')
ui.vbox(focus='gm_nav', style='gm_nav_vbox')
for i, (key, label, clicked, enabled) in enumerate(config.game_menu):
disabled = False
if not eval(enabled):
disabled = True
clicked = None
if config.game_menu_positions:
kwargs = config.game_menu_positions.get(label, { })
else:
kwargs = { }
_button_factory(label, "gm_nav",
selected=(key==screen),
disabled=disabled,
clicked=clicked,
properties=kwargs)
if not config.game_menu_positions:
ui.close()
# This is called from the game menu to interact with the
# user. It suppresses all of the underlays and overlays.
def _game_interact():
return ui.interact(suppress_underlay=True,
suppress_overlay=True,
mouse="gamemenu")
# This renders a slot with a file in it, in the file picker.
def _render_savefile(index, name, filename, extra_info, screenshot, mtime, newest, clickable, **positions):
if clickable:
clicked = ui.returns(("return", (filename, True)))
else:
clicked = None
ui.button(style=style.file_picker_entry[index],
clicked=clicked,
**positions)
ui.hbox(style=style.file_picker_entry_box[index])
if not config.disable_thumbnails:
ui.add(screenshot)
if newest:
ui.text(name + ". ", style=style.file_picker_new[index])
else:
ui.text(name + ". ", style=style.file_picker_old[index])
s = config.file_entry_format % dict(
time=renpy.time.strftime(config.time_format,
renpy.time.localtime(mtime)),
save_name=extra_info)
ui.text(s, style=style.file_picker_extra_info[index])
ui.close()
# This renders an empty slot in the file picker.
def _render_new_slot(index, name, filename, clickable, **positions):
if clickable:
clicked=ui.returns(("return", (filename, False)))
enable_hover = True
else:
clicked = None
enable_hover = True
ui.button(style=style.file_picker_entry[index],
clicked=clicked,
enable_hover=enable_hover,
**positions)
ui.hbox(style=style.file_picker_entry_box[index])
if not config.disable_thumbnails:
ui.null(width=config.thumbnail_width,
height=config.thumbnail_height)
ui.text(name + ". ", style=style.file_picker_old[index])
ui.text(_(u"Empty Slot."), style=style.file_picker_empty_slot[index])
ui.close()
_scratch.file_picker_page = None
# The names of the various pages that the file picker knows
# about.
def _file_picker_pages():
rv = [ ]
if config.has_autosave:
rv.append("Auto")
if config.has_quicksave:
rv.append("Quick")
for i in range(1, config.file_quick_access_pages + 1):
rv.append(str(i))
return rv
# This function is given a page, and should map it to the names
# of the files on that page.
def _file_picker_page_files(page):
per_page = config.file_page_cols * config.file_page_rows
rv = [ ]
if config.has_autosave:
if page == 0:
for i in range(1, per_page + 1):
rv.append(("auto-" + str(i), "a" + str(i), True))
return rv
else:
page -= 1
if config.has_quicksave:
if page == 0:
for i in range(1, per_page + 1):
rv.append(("quick-" + str(i), "q" + str(i), True))
return rv
else:
page -= 1
for i in range(per_page * page + 1, per_page * page + 1 + per_page):
rv.append(("%d" % i, "%d" % i, False))
return rv
# Given a filename, returns the page that filename is on.
def _file_picker_file_page(filename):
per_page = config.file_page_cols * config.file_page_rows
base = 0
if config.has_autosave:
if filename.startswith("auto-"):
return base
else:
base += 1
if config.has_quicksave:
if filename.startswith("quick-"):
return base
else:
base += 1
return base + int((int(filename) - 1) / per_page)
def _file_picker_process_screenshot(s):
return s
# This displays a file picker that can chose a save file from
# the list of save files.
def _file_picker(selected, save):
# The number of slots in a page.
file_page_length = config.file_page_cols * config.file_page_rows
saved_games = renpy.list_saved_games(regexp=r'(auto-|quick-)?[0-9]+')
newest = None
newest_mtime = None
save_info = { }
for fn, extra_info, screenshot, mtime in saved_games:
screenshot = _file_picker_process_screenshot(screenshot)
save_info[fn] = (extra_info, screenshot, mtime)
if not fn.startswith("auto-") and mtime > newest_mtime:
newest = fn
newest_mtime = mtime
if config.file_picker_positions:
positions = config.file_picker_positions
else:
positions = { }
# The index of the first entry in the page.
fpp = _scratch.file_picker_page
if fpp is None:
if newest:
fpp = _file_picker_file_page(newest)
else:
fpp = _file_picker_file_page("1")
while True:
if fpp < 0:
fpp = 0
_scratch.file_picker_page = fpp
# Show navigation
_game_nav(selected)
if not config.file_picker_positions:
ui.window(style='file_picker_frame')
ui.vbox(style='file_picker_frame_vbox') # whole thing.
if not config.disable_file_pager:
### file_picker_navbox thick_hbox
# (box) The box containing the naviation (next/previous)
# buttons in the file picker.
### file_picker_nav_button menu_button
# (window, hover) The style that is used for enabled file
# picker navigation buttons.
### file_picker_nav_button_text menu_button_text
# (text) The style that is used for the label of enabled
# file picker navigation buttons.
# Draw the navigation.
if not config.file_picker_positions:
ui.hbox(style='file_picker_navbox') # nav buttons.
def tb(cond, label, clicked, selected):
_button_factory(label,
"file_picker_nav",
disabled=not cond,
clicked=clicked,
selected=selected,
properties=positions.get("nav_" + label, { }))
# Previous
tb(fpp > 0, _(u'Previous'), ui.returns(("fppdelta", -1)), selected=False)
# Quick Access
for i, name in enumerate(_file_picker_pages()):
tb(True, name, ui.returns(("fppset", i)), fpp == i)
# Next
tb(True, _(u'Next'), ui.returns(("fppdelta", +1)), False)
# Done with nav buttons.
if not config.file_picker_positions:
ui.close()
# This draws a single slot.
def entry(name, filename, offset, ro):
place = positions.get("entry_" + str(offset + 1), { })
if filename not in save_info:
clickable = save and not ro
_render_new_slot(offset, name, filename, clickable, **place)
else:
clickable = not save or not ro
extra_info, screenshot, mtime = save_info[filename]
_render_savefile(offset, name, filename, extra_info, screenshot,
mtime, newest == filename, clickable, **place)
if not config.file_picker_positions:
ui.grid(config.file_page_cols,
config.file_page_rows,
style='file_picker_grid',
transpose=True) # slots
for i, (filename, name, ro) in enumerate(_file_picker_page_files(fpp)):
entry(name, filename, i, ro)
if not config.file_picker_positions:
ui.close() # slots
ui.close() # whole thing
result = _game_interact()
type, value = result
if type == "return":
return value
if type == "fppdelta":
fpp += value
if type == "fppset":
fpp = value
# This renders a yes/no prompt, as part of the game menu. If
# screen is None, then it omits the game menu navigation.
def _yesno_prompt(screen, message):
"""
@param screen: The screen button that should be highlighted when this prompt is shown. If None, then no game menu navigation is shown.
@param message: The message that is shown to the user to prompt them to answer yes or no.
This function returns True if the user clicks Yes, or False if the user clicks No.
"""
renpy.transition(config.intra_transition)
_game_nav(screen)
ui.window(style='yesno_frame')
ui.vbox(style='yesno_frame_vbox')
_label_factory(message, "yesno")
ui.hbox(style='yesno_button_hbox')
# The extra nulls are because we want equal whitespace surrounding
# the two buttons. It should work as long as we have xfill=True
_button_factory(u"Yes", 'yesno', clicked=ui.returns(True))
_button_factory(u"No", 'yesno', clicked=ui.returns(False))
ui.close()
ui.close()
rv = _game_interact()
renpy.transition(config.intra_transition)
return rv
config.old_names["Are you sure you want to quit?"] = "Are you sure you want to quit the game?"
def _quit_prompt(screen="quit"):
def prompt():
return _yesno_prompt(screen, u"Are you sure you want to quit?")
if renpy.invoke_in_new_context(prompt):
renpy.quit()
else:
return
config.old_names["Are you sure you want to return to the main menu?\nThis will lose unsaved progress."] = "Are you sure you want to return to the main menu?\nThis will end your game."
def _mainmenu_prompt(screen="mainmenu"):
def prompt():
return _yesno_prompt(screen, u"Are you sure you want to return to the main menu?\nThis will lose unsaved progress.")
if renpy.invoke_in_new_context(prompt):
renpy.full_restart(transition=config.game_main_transition)
else:
return
label _compat_confirm_quit:
$ _quit_prompt(None)
return
init -1160:
$ config.old_names["Loading will lose unsaved progress.\nAre you sure you want to do this?"] = "Loading a new game will end your current game.\nAre you sure you want to do this?"
label _load_screen:
if renpy.has_label("_load_screen_hook"):
call expression "_load_screen_hook" from _call__load_screen_hook
python hide:
fn, exists = _file_picker("load", False )
if not renpy.context().main_menu and _load_prompt:
if _yesno_prompt("load", u"Loading will lose unsaved progress.\nAre you sure you want to do this?"):
renpy.load(fn)
else:
renpy.load(fn)
jump _load_screen
label _save_screen:
if renpy.has_label("_save_screen_hook"):
call expression "_save_screen_hook" from _call__save_screen_hook
$ _fn, _exists = _file_picker("save", True)
if not _exists or _yesno_prompt("save", u"Are you sure you want to overwrite your save?"):
python hide:
if save_name:
full_save_name = save_name
else:
full_save_name = ""
try:
renpy.save(_fn, full_save_name)
except Exception, e:
if config.debug:
raise
message = ( _(u"The error message was:") + "\n\n" +
e.__class__.__name__ + ": " + unicode(e) + "\n\n" +
_(u"You may want to try saving in a different slot, or playing for a while and trying again later.") )
_show_exception(_(u"Save Failed."), message)
jump _save_screen
+112
View File
@@ -0,0 +1,112 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init:
python:
# A dict of 5-tuples mapping button labels to image buttons.
config.image_buttons = { }
# A dict mapping label to image.
config.image_labels = { }
# Maps from button or label to additional properties.
config.button_properties = { }
config.button_text_properties = { }
config.label_properties = { }
def _button_factory(label,
type=None,
selected=None,
disabled=False,
clicked=None,
properties={},
index=None,
**props):
"""
This function is called to create the various buttons used
in the game menu. By overriding this function, one can
(for example) replace the default textbuttons with image buttons.
When it is called, it's expected to add a button to the screen.
@param label: The label of this button, before translation.
@param type: The type of the button. One of "mm" (main menu),
"gm_nav" (game menu), "file_picker_nav", "yesno", or "prefs".
@param selected: True if the button is selected, False if not,
or None if it doesn't matter.
@param disabled: True if the button is disabled, False if not.
@param clicked: A function that should be executed when the
button is clicked.
@param properties: Addtional layout properties.
"""
props.update(properties)
props.update(config.button_properties.get(label, { }))
if disabled:
clicked = None
if selected and not disabled:
role = "selected_"
else:
role = ""
if label in config.image_buttons:
(idle, hover, sel_idle, sel_hover, disabled) = config.image_buttons[label]
ui.imagebutton(idle,
hover,
disabled,
hover,
sel_idle,
sel_hover,
disabled,
sel_hover,
clicked=clicked,
style=style.image_button[label],
role=role,
**props)
return
button_style = type + "_button"
text_style = type + "_button_text"
if index is None:
index = label
button_style = getattr(style, button_style)[index]
text_style = getattr(style, text_style)[index]
ui.button(style=button_style, clicked=clicked, role=role, **props)
ui.text(_(label), style=text_style, **config.button_text_properties.get(label, { }))
def _label_factory(label, type, properties={}, **props):
"""
This function is called to create a new label. It can be
overridden by the user to change how these labels are created.
@param label: The label of the box.
@param type: "prefs" or "yesno". (perhaps more by now.)
@param properties: This may contain position properties.
"""
props.update(properties)
props.update(config.label_properties.get(label, { }))
if label in config.image_labels:
ui.image(config.image_labels[label], **props)
return
style = getattr(store.style, type + "_label")[label]
ui.text(_(label), style=style, **props)
+62
View File
@@ -0,0 +1,62 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1170 python hide:
config.old_names['Quit'] = 'Quit Game'
# The contents of the main menu.
config.main_menu = [
( u"Start Game", "start", 'True'),
( u"Continue Game", _intra_jumps("_load_screen", "main_game_transition"), 'True' ),
( u"Preferences", _intra_jumps("_prefs_screen", "main_game_transition"), 'True' ),
( u"Quit", ui.jumps("_quit"), 'True' ),
]
# If not None, this is used to fix the positions of the
# things in the main menu.
config.main_menu_positions = None
# Styles used in this file.
# This is the default main menu, which we get if the user hasn't
# defined his own, or if that function calls this explicitly.
label _library_main_menu:
python hide:
ui.add(renpy.Keymap(toggle_fullscreen = renpy.toggle_fullscreen))
ui.window(style='mm_root')
ui.null()
if not config.main_menu_positions:
ui.window(style='mm_menu_frame')
ui.vbox(style='mm_menu_frame_vbox')
for i, (text, clicked, enabled) in enumerate(config.main_menu):
if isinstance(clicked, basestring):
clicked = ui.jumpsoutofcontext(clicked)
if config.main_menu_positions:
kwargs = config.main_menu_positions.get(text, { })
else:
kwargs = { }
if not eval(enabled):
clicked = None
disabled = True
else:
disabled = False
_button_factory(text, "mm", clicked=clicked, disabled=disabled, properties=kwargs)
if not config.main_menu_positions:
ui.close()
store._result = ui.interact(suppress_overlay=True,
suppress_underlay=True,
mouse="mainmenu")
jump _main_menu
+607
View File
@@ -0,0 +1,607 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# Copyright 2004-2006 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
# This file contains the code to implement the Ren'Py preferences
# screen.
init python:
# This is a map from the name of the style that is applied to
# a list of preferences that should be placed into a vbox
# with that style.
config.preferences = { }
# Ditto, for joystick preferences.
config.joystick_preferences = { }
# Positions for preferences... overrides the above.
config.preference_positions = None
config.joystick_preference_positions = None
# This is a map from preference name to that preference
# object, that can be used in rearranging preferences.
config.all_preferences = { }
# If true, the preference choices will be arranged in an
# hbox.
config.hbox_pref_choices = False
# A list of (readable name, synthetic key) tuples
# corresponding to joystick events.
config.joystick_keys = [
(u'Left', 'joy_left'),
(u'Right', 'joy_right'),
(u'Up', 'joy_up'),
(u'Down', 'joy_down'),
(u'Select/Dismiss', 'joy_dismiss'),
(u'Rollback', 'joy_rollback'),
(u'Hold to Skip', 'joy_holdskip'),
(u'Toggle Skip', 'joy_toggleskip'),
(u'Hide Text', 'joy_hide'),
(u'Menu', 'joy_menu'),
]
# If True, then we can always get into the joystick
# preferences.
config.always_has_joystick = False
def _prefs_screen_run(prefs_map, positions):
_game_nav("prefs")
if positions is not None:
for name, pos in positions.iteritems():
ui.vbox(**pos)
config.all_preferences[name].render_preference()
ui.close()
else:
### prefs_frame default
# (window) A window containing all preferences.
ui.window(style='prefs_frame')
ui.fixed()
for style, prefs in prefs_map.iteritems():
ui.vbox(style=style)
for i in prefs:
i.render_preference()
ui.close()
ui.close()
_game_interact()
class _Preference(object):
"""
This is a class that's used to represent a multiple-choice
preference.
"""
def __init__(self, name, field, values, base=_preferences):
"""
@param name: The name of this preference. It will be
displayed to the user.
@param variable: The field on the base object
that will be assigned the selected value. This field
must exist.
@param values: A list of value name, value, condition
triples. The value name is the name of this value that
will be shown to the user. The value is the literal
python value that will be assigned if this value is
selected. The condition is a condition that will be
evaluated to determine if this is a legal value. If no
conditions are true, this preference will not be
displayed to the user. A condition of None is always
considered to be True.
@param base: The base object on which the variable is
read from and set. This defaults to _preferences,
the user preferences object.
"""
self.name = name
self.field = field
self.values = values
self.base = base
config.all_preferences[name] = self
def render_preference(self):
values = [ (name, val) for name, val, cond in self.values
if cond is None or renpy.eval(cond) ]
if not values:
return
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_vbox[self.name])
_label_factory(self.name, "prefs")
cur = getattr(self.base, self.field)
### prefs_hbox default
# If config.hbox_pref_choices is True, the style
# of the hbox containing the choices.
if config.hbox_pref_choices:
ui.hbox(style=style.prefs_hbox[self.name])
for name, value in values:
### prefs_button menu_button
# (window, hover) The style of an unselected preferences
# button.
### prefs_button_text menu_button_text
# (text, hover) The style of the text of an unselected
# preferences button.
def clicked(value=value):
setattr(self.base, self.field, value)
return True
_button_factory(name, "prefs",
selected=cur==value,
clicked=clicked)
if config.hbox_pref_choices:
ui.close()
ui.close()
class _VolumePreference(object):
"""
This represents a preference that controls one of the
volumes in the system. It is represented as a slider bar,
and a button that can be pushed to play a sample sound on
a channel.
"""
def __init__(self, name, mixer, enable='True', sound='None', channel=0):
"""
@param name: The name of this preference, as shown to the user.
@param mixer: The mixer this preference controls.
@param enable: A string giving a python expression. If
the expression is evaluates to false, this preference
is not shown.
@param sound: A string that is evaluated to yield
another string. The yielded string is expected to give
a sound file, which is played as the sample sound. (We
apologize for the convolution of this.)
@param channel: The number of the channel the sample
sound is played on.
"""
self.name = name
self.mixer = mixer
self.enable = enable
self.sound = sound
self.channel = channel
config.all_preferences[name] = self
def render_preference(self):
if not eval(self.enable):
return
sound = eval(self.sound)
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_vbox[self.name])
_label_factory(self.name, "prefs")
def changed(v):
_preferences.set_volume(self.mixer, v / 128.0)
ui.bar(128,
int(_preferences.get_volume(self.mixer) * 128),
changed=changed,
style=style.prefs_volume_slider[self.name])
if sound:
def clicked():
renpy.sound.play(sound, channel=self.channel)
_button_factory(u"Test", "soundtest", clicked=clicked, index=self.name)
ui.close()
class _SliderPreference(object):
"""
A class that represents a preference that is controlled by a
slider.
"""
def __init__(self, name, range, get, set, enable='True'):
"""
@param set: The name of this preference, that is shown to the user.
@param range: An integer giving the maximum value of
this slider. The slider goes from 0 to range.
@param get: A function that's called to get the
initial value of the slider. It's called with no
arguments, and should return an integet between 0 and
range, inclusive.
@param set: A function that's called when the value of
the slider is set by the user. It is called with a
single integer, in the range 0 to range, inclusive.
@param enable: A string giving a python expression. If
the expression is evaluates to false, this preference
is not shown.
"""
self.name = name
self.range = range
self.get = get
self.set = set
self.enable = enable
config.all_preferences[name] = self
def render_preference(self):
if not eval(self.enable):
return
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_vbox[self.name])
_label_factory(self.name, "prefs")
def changed(v):
self.set(v)
### prefs_slider bar
# (bar) The style that is applied to preference
# sliders.
ui.bar(self.range,
self.get(),
changed=changed,
style=style.prefs_slider[self.name])
ui.close()
class _PreferenceSpinner(object):
"""
This is a class that's used to represent a preference
spinner, which is a preference that can be incremented
and decremented, when shown to the user.
"""
def __init__(self, name, field, minimum, maximum, delta,
cond = "True", render = lambda x : str(x),
base=_preferences):
"""
@param name: The name of this preference, that is presented
to the user.
@param field: The name of the field on the base object
that is updated by this spinner.
@param minimum: The minimum value that this spinner can set
the value to.
@param maximum: The maximum value that this spinner can set
the value to.
@param delta: The delta by which this spinner is
incremented or decremented.
@param cond: If this condition is not true, this spinner is
not shown.
@param render: This function is called with the value of
the field, and is expected to render that value to a
string.
@param base: The base object that this spinner updates
the field on. It defaults to _preferences, the preferences
object.
"""
self.name = name
self.field = field
self.minimum = minimum
self.maximum = maximum
self.delta = delta
self.cond = cond
self.render = render
self.base = base
config.all_preferences[name] = self
def render_preference(self):
if not renpy.eval(self.cond):
return
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_vbox[self.name])
_label_factory(self.name, "prefs")
cur = getattr(self.base, self.field)
def minus_clicked():
value = cur - self.delta
value = max(self.minimum, value)
setattr(self.base, self.field, value)
return True
def plus_clicked():
value = cur + self.delta
value = min(self.maximum, value)
setattr(self.base, self.field, value)
return True
ui.hbox(style=style.prefs_spinner[self.name])
_button_factory("-", "prefs_spinner", clicked=minus_clicked)
_label_factory(self.render(cur), "prefs_spinner")
_button_factory("+", "prefs_spinner", clicked=plus_clicked)
ui.close()
ui.close()
def _joystick_select_binding():
for label, key in config.joystick_keys:
def my_clicked(label=label, key=key):
return (label, key)
_button_factory(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "prefs_js", clicked=my_clicked, index=label)
def _joystick_get_binding():
ui.add(renpy.display.joystick.JoyBehavior())
ui.saybehavior()
def _joystick_take_binding(binding, key):
if not isinstance(binding, basestring):
if key in _preferences.joymap:
del _preferences.joymap[key]
else:
_preferences.joymap[key] = binding
class _JoystickPreference(object):
def __init__(self, name):
self.name = name
config.all_preferences[name] = self
def render_preference(self):
def set_binding(label, key):
_game_nav(None)
ui.window(style='js_frame')
ui.vbox(style='js_frame_vbox')
_label_factory(_(u"Joystick Mapping") + " - " + _(label), "js_function")
_label_factory(u'Move the joystick or press a joystick button to create the mapping. Click the mouse to remove the mapping.', 'js_prompt')
ui.close()
_joystick_get_binding()
binding = _game_interact()
_joystick_take_binding(binding, key)
return True
ui.window(style='prefs_js_frame')
ui.vbox(style='prefs_js_vbox')
_label_factory(self.name, 'prefs')
for label, key in config.joystick_keys:
def clicked(label=label, key=key):
return renpy.invoke_in_new_context(set_binding, label, key)
_button_factory(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "prefs_js", clicked=clicked, index=label)
ui.close()
class _JumpPreference(object):
def __init__(self, name, target, condition="True"):
self.name = name
self.target = target
self.condition = condition
config.all_preferences[name] = self
def render_preference(self):
ui.window(style=style.prefs_jump[self.name])
if eval(self.condition):
clicked=ui.jumps(self.target)
else:
clicked=None
_button_factory(self.name, 'prefs_jump', clicked=clicked)
def _remove_preference(name):
"""
Removes the preference with the given name from the
preferences menu.
"""
pref = config.all_preferences.get(name, None)
if not pref:
return
for k, v in config.preferences.iteritems():
if pref in v:
v.remove(pref)
init python hide:
# Enablers for some preferences.
config.has_music = True
config.has_sound = True
config.sample_sound = None
config.has_transitions = True
config.has_cps = True
config.has_afm = True
config.has_skipping = True
config.has_skip_after_choice = True
# Left
pl1 = _Preference(u'Display', 'fullscreen', [
(u'Window', False, None),
(u'Fullscreen', True, None),
])
pl2 = _Preference(u'Transitions', 'transitions', [
(u'All', 2, 'config.has_transitions'),
(u'Some', 1, 'config.has_transitions and default_transition'),
(u'None', 0, 'config.has_transitions'),
])
# Center
pc1 = _Preference(u'Skip', 'skip_unseen', [
(u'Seen Messages', False, 'config.allow_skipping and config.has_skipping'),
(u'All Messages', True, 'config.allow_skipping and config.has_skipping'),
])
config.old_names['Skip'] = 'TAB and CTRL Skip'
config.all_preferences['TAB and CTRL Skip'] = pc1
pc2= _Preference(u'After Choices', 'skip_after_choices', [
(u'Stop Skipping', False, 'config.allow_skipping and config.has_skip_after_choice'),
(u'Keep Skipping', True, 'config.allow_skipping and config.has_skip_after_choice'),
])
config.old_names['Keep Skipping'] = 'Continue Skipping'
def cps_get():
cps = _preferences.text_cps
if cps == 0:
cps = 150
else:
cps -= 1
return cps
def cps_set(cps):
cps += 1
if cps == 151:
cps = 0
_preferences.text_cps = cps
pc3 = _SliderPreference(u'Text Speed', 150, cps_get, cps_set,
'config.has_cps')
def afm_get():
afm = _preferences.afm_time
if afm == 0:
afm = 40
else:
afm -= 1
return afm
def afm_set(afm):
afm += 1
if afm == 41:
afm = 0
_preferences.afm_time = afm
pc4 = _SliderPreference(u'Auto-Forward Time', 40, afm_get, afm_set,
'config.has_afm')
# Right
pr1 = _VolumePreference(u"Music Volume", 'music', 'config.has_music')
pr2 = _VolumePreference(u"Sound Volume", 'sfx', 'config.has_sound', 'config.sample_sound')
_JumpPreference(u'Joystick...', '_joystick_screen', 'renpy.display.joystick.enabled or config.always_has_joystick')
_JoystickPreference(u'Joystick Configuration')
config.preferences['prefs_left'] = [
config.all_preferences[u'Display'],
config.all_preferences[u'Transitions'],
config.all_preferences[u'Joystick...'],
]
config.preferences['prefs_center'] = [
config.all_preferences[u'Skip'],
config.all_preferences[u'After Choices'],
config.all_preferences[u'Text Speed'],
config.all_preferences[u'Auto-Forward Time'],
]
config.preferences['prefs_right'] = [
config.all_preferences[u'Music Volume'],
config.all_preferences[u'Sound Volume'],
]
config.joystick_preferences['prefs_joystick'] = [
config.all_preferences[u'Joystick Configuration'],
]
config.sample_voice = None
vp = _VolumePreference(u'Voice Volume',
'voice',
'config.has_voice',
'config.sample_voice',
2)
config.preferences['prefs_right'].insert(1, vp)
label _prefs_screen:
$ _prefs_screen_run(config.preferences, config.preference_positions)
jump _prefs_screen
label _joystick_screen:
$ _prefs_screen_run(config.joystick_preferences, config.joystick_preference_positions)
jump _joystick_screen
+357
View File
@@ -0,0 +1,357 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python hide:
style.menu_button = Style(style.button, heavy=True, help='Buttons that are part of the main or game menus.')
style.menu_button_text = Style(style.button_text, heavy=True, help='The label of buttons that are part of the main or game menus.')
style.thin_hbox = Style(style.hbox, heavy=True, help='A hbox with a small amount of spacing.')
style.thick_hbox = Style(style.hbox, heavy=True, help='A hbox with a large amount of spacing.')
style.thin_vbox = Style(style.vbox, heavy=True, help='A vbox with a small amount of spacing.')
style.thick_vbox = Style(style.vbox, heavy=True, help='A vbox with a large amount of spacing.')
style.mm_menu_frame = Style(style.default, heavy=True, help='The frame containing the main menu.')
style.mm_menu_frame_vbox = Style(style.thin_vbox, heavy=True, help='The vbox containing the main menu.')
style.mm_button = Style(style.menu_button, heavy=True, help='A main menu button.')
style.mm_button_text = Style(style.menu_button_text, heavy=True, help='A main menu button label.')
style.default.drop_shadow = (1, 1)
style.gm_nav_frame = Style(style.default, heavy=True, help='The frame containing the navigation buttons.')
style.gm_nav_vbox = Style(style.thin_vbox, heavy=True, help='The vbox containing the navigation buttons.')
style.gm_nav_button = Style(style.menu_button, heavy=True, help='A navigation button.')
style.gm_nav_button_text = Style(style.menu_button_text, heavy=True, help='A navigation button label.')
style.file_picker_entry = Style(style.menu_button, heavy=True, help='A button you click to save or load a file.')
style.file_picker_entry_box = Style(style.thin_hbox, heavy=True, help='The box inside that button.')
style.file_picker_text = Style(style.default, heavy=True, help='Base style for text inside a file picker entry.')
style.file_picker_new = Style(style.file_picker_text, heavy=True, help='The number of the newest file.')
style.file_picker_old = Style(style.file_picker_text, heavy=True, help='The number of non-newest files.')
style.file_picker_extra_info = Style(style.file_picker_text, heavy=True, help='Extra text (the date and save info) of a file.')
style.file_picker_empty_slot = Style(style.file_picker_text, heavy=True, help='The style of "Empty Slot" text.')
style.file_picker_frame = Style(style.default, heavy=True, help='The frame containing the file picker.')
style.file_picker_frame_vbox = Style(style.thin_vbox, heavy=True, help='The box containing file picker navigation and the file picker grid.')
style.file_picker_navbox = Style(style.thick_hbox, heavy=True, help='The box containing the file picker navigation buttons.')
style.file_picker_nav_button = Style(style.menu_button, heavy=True, help='A file picker navigation button.')
style.file_picker_nav_button_text = Style(style.menu_button_text, heavy=True, help='A file picker navigation button label.')
style.file_picker_grid = Style(style.default, heavy=True, help='The grid containing the entries in the file picker.')
style.yesno_frame = Style(style.default, heavy=True, help='The frame containing the yes/no dialog.')
style.yesno_frame_vbox = Style(style.thick_vbox, heavy=True, help='Separates the label from the buttons in a yes/no dialog.')
style.yesno_label = Style(style.default, heavy=True, help='The label of a yes/no dialog.')
style.yesno_button_hbox = Style(style.thick_hbox, heavy=True, help="The box containing the Yes and No buttons.")
style.yesno_button = Style(style.menu_button, heavy=True, help='A Yes/No button.')
style.yesno_button_text = Style(style.menu_button_text, heavy=True, help='A Yes/No button label.')
style.prefs_frame = Style(style.default, heavy=True, help='')
style.prefs_pref_frame = Style(style.default, heavy=True, help='')
style.prefs_pref_vbox = Style(style.thin_vbox, heavy=True, help='')
style.prefs_label = Style(style.default, heavy=True, help='')
style.prefs_hbox = Style(style.default, heavy=True, help='')
style.prefs_button = Style(style.menu_button, heavy=True, help='')
style.prefs_button_text = Style(style.menu_button_text, heavy=True, help='')
style.soundtest_button = Style(style.prefs_button, heavy=True, help='')
style.soundtest_button_text = Style(style.prefs_button_text, heavy=True, help='')
style.prefs_slider = Style(style.bar, heavy=True, help='')
style.prefs_volume_slider = Style(style.prefs_slider, heavy=True, help='')
style.prefs_spinner = Style(style.default, heavy=True, help='')
style.prefs_spinner_label = Style(style.prefs_label, heavy=True, help='')
style.prefs_spinner_button = Style(style.prefs_button, heavy=True, help='')
style.prefs_spinner_button_text = Style(style.prefs_button_text, heavy=True, help='')
style.prefs_js_frame = Style(style.prefs_pref_frame, heavy=True, help='')
style.prefs_js_vbox = Style(style.prefs_pref_vbox, heavy=True, help='')
style.prefs_js_button = Style(style.prefs_button, heavy=True, help='')
style.prefs_js_button_text = Style(style.prefs_button_text, heavy=True, help='')
style.js_frame = Style(style.prefs_frame, heavy=True, help='')
style.js_frame_vbox = Style(style.thick_vbox, heavy=True, help='')
style.js_function_label = Style(style.prefs_label, heavy=True, help='')
style.js_prompt_label = Style(style.prefs_label, heavy=True, help='')
style.prefs_jump = Style(style.prefs_pref_frame, heavy=True, help='')
style.prefs_jump_button = Style(style.prefs_button, heavy=True, help='')
style.prefs_jump_button_text = Style(style.prefs_button_text, heavy=True, help='')
style.prefs_column = Style(style.default, heavy=True, help='')
style.prefs_left = Style(style.prefs_column, heavy=True, help='')
style.prefs_center = Style(style.prefs_column, heavy=True, help='')
style.prefs_right = Style(style.prefs_column, heavy=True, help='')
style.prefs_joystick = Style(style.prefs_center, heavy=True, help='')
style.thin_hbox.spacing = 3
style.thick_hbox.spacing = 30
style.thin_vbox.spacing = 0
style.thick_vbox.spacing = 30
dark_cyan = (0, 192, 255, 255)
bright_cyan = (0, 255, 255, 255)
dark_red = (255, 128, 128, 255)
bright_red = (255, 64, 64, 255)
green = (0, 128, 0, 255)
# Frames.
style.frame.background = Solid((0, 0, 128, 128))
style.frame.xpadding = 10
style.frame.ypadding = 5
style.frame.xmargin = 10
style.frame.ymargin = 5
######################################################################
# Buttons.
style.button_text.color = dark_cyan
style.button_text.hover_color = bright_cyan
style.button_text.insensitive_color = (192, 192, 192, 255)
style.button_text.size = 24
style.button_text.drop_shadow = (2, 2)
style.button_text.selected_color = dark_red
style.button_text.selected_hover_color = bright_red
style.button_text.xpos = 0.5
style.button_text.xanchor = 0.5
style.menu_button.xpos = 0.5
style.menu_button.xanchor = 0.5
######################################################################
# Bar.
style.bar.ymaximum = 22
style.bar.left_bar = Solid(bright_cyan)
style.bar.right_bar = Solid((0, 0, 0, 128))
style.bar.bottom_bar = Solid(bright_cyan)
style.bar.top_bar = Solid((0, 0, 0, 128))
style.bar.left_gutter = 0
style.bar.right_gutter = 0
style.bar.thumb = None
style.bar.thumb_offset = 0
style.bar.thumb_shadow = None
style.vbar.xmaximum = 22
style.vbar.left_bar = Solid(bright_cyan)
style.vbar.right_bar = Solid((0, 0, 0, 128))
style.vbar.bottom_bar = Solid(bright_cyan)
style.vbar.top_bar = Solid((0, 0, 0, 128))
style.vbar.left_gutter = 0
style.vbar.right_gutter = 0
style.vbar.bottom_gutter = 0
style.vbar.top_gutter = 0
style.vbar.thumb = None
style.vbar.thumb_offset = 0
style.vbar.thumb_shadow = None
style.vscrollbar.set_parent(style.vbar)
style.scrollbar.set_parent(style.bar)
style.vscrollbar.bottom_bar = Solid((0, 0, 0, 128))
style.vscrollbar.top_bar = Solid(bright_cyan)
style.slider.ymaximum = 1
style.vslider.xmaximum = 1
######################################################################
# Main menu.
style.mm_menu_frame.xpos = 0.9
style.mm_menu_frame.xanchor = 1.0
style.mm_menu_frame.ypos = 0.9
style.mm_menu_frame.yanchor = 1.0
######################################################################
# Game menu common.
style.gm_nav_frame.xpos = 0.95
style.gm_nav_frame.xanchor = 1.0
style.gm_nav_frame.ypos = 0.95
style.gm_nav_frame.yanchor = 1.0
##############################################################################
# File picker.
style.file_picker_frame.xpos = 0
style.file_picker_frame.xanchor = 0.0
style.file_picker_frame.ypos = 0
style.file_picker_frame.yanchor = 0.0
style.file_picker_frame.xpadding = 5
style.file_picker_navbox.xpos = 10
style.file_picker_grid.xfill = True
style.file_picker_entry.xpadding = 5
style.file_picker_entry.ypadding = 2
style.file_picker_entry.xmargin = 5
style.file_picker_entry.xfill = True
style.file_picker_entry.ymargin = 2
style.file_picker_entry.background = Solid((255, 255, 255, 255))
style.file_picker_entry.hover_background = Solid((255, 255, 192, 255))
style.file_picker_text.size = 16
style.file_picker_text.color = dark_cyan
style.file_picker_text.hover_color = bright_cyan
style.file_picker_new.hover_color = bright_red
style.file_picker_new.idle_color = dark_red
style.file_picker_new.minwidth = 40
style.file_picker_old.minwidth = 40
style.file_picker_new.text_align = 1.0
style.file_picker_old.text_align = 1.0
######################################################################
# Yes/No Dialog
style.yesno_label.color = green
style.yesno_label.textalign = 0.5
style.yesno_label.xpos = 0.5
style.yesno_label.xanchor = 0.5
style.yesno_frame.xfill = True
style.yesno_frame.yminimum = 0.5
style.yesno_frame.xmargin = .1
style.yesno_frame_vbox.xpos = 0.5
style.yesno_frame_vbox.xanchor = 0.5
style.yesno_frame_vbox.ypos = 0.5
style.yesno_frame_vbox.yanchor = 0.5
style.yesno_button_hbox.xalign = 0.5
style.yesno_button_hbox.spacing = 100
##############################################################################
# Preferences.
style.prefs_pref_frame.xpos = 0.5
style.prefs_pref_frame.xanchor = 0.5
style.prefs_pref_frame.bottom_margin = 10
style.prefs_label.xpos = 0.5
style.prefs_label.xanchor = 0.5
style.prefs_label.color = green
style.prefs_slider.xmaximum=200
style.prefs_slider.ymaximum=22
style.prefs_slider.xpos = 0.5
style.prefs_slider.xanchor = 0.5
style.prefs_hbox.xpos = 0.5
style.prefs_hbox.xanchor = 0.5
style.prefs_button.xpos = 0.5
style.prefs_button.xanchor = 0.5
style.prefs_button.selected_xpos = 0.5
style.prefs_button.selected_xanchor = 0.5
style.prefs_frame.xfill=True
style.prefs_frame.ypadding = 0.05
style.prefs_column.spacing = 6
style.prefs_left.xanchor = 0.5
style.prefs_left.xpos = 1.0 / 6.0
style.prefs_center.xanchor = 0.5
style.prefs_center.xpos = 3.0 / 6.0
style.prefs_right.xanchor = 0.5
style.prefs_right.xpos = 5.0 / 6.0
style.prefs_spinner.xpos = 0.5
style.prefs_spinner.xanchor = 0.5
style.prefs_spinner_label.minwidth = 100
style.prefs_spinner_label.textalign = 0.5
style.prefs_js_button_text.size = 18
style.prefs_js_button_text.drop_shadow = (1, 1)
style.js_function_label.textalign = 0.5
style.js_prompt_label.textalign = 0.5
style.js_frame.xfill = True
style.js_frame.yminimum = 0.5
style.js_frame.xmargin = .1
style.js_frame_vbox.xpos = 0.5
style.js_frame_vbox.xanchor = 0.5
style.js_frame_vbox.ypos = 0.5
style.js_frame_vbox.yanchor = 0.5
style.soundtest_button.activate_sound = None
style.window.background = Solid((0, 0, 128, 128))
style.window.xpadding = 10
style.window.ypadding = 5
style.window.xmargin = 10
style.window.ymargin = 5
style.window.xfill = True
style.window.yfill = False
style.window.xminimum = 0 # Includes margins and padding.
style.window.yminimum = 150 # Includes margins and padding.
######################################################################
# Compatibility names for renamed styles.
style.file_picker_window_vbox = style.file_picker_frame_vbox
style.prefs_window = style.prefs_frame
style.mm_root_window = style.mm_root
style.file_picker_window = style.file_picker_frame
style.prefs_pref = style.prefs_pref_frame
style.gm_root_window = style.gm_root
style.yesno_window_vbox = style.yesno_frame_vbox
style.joyprompt_label = style.js_prompt_label
style.gm_nav_window = style.gm_nav_frame
style.joy_window = style.js_frame
style.mm_menu_window = style.mm_menu_frame
style.error_window = style.error_root
style.joyfunc_label = style.js_function_label
style.joy_vbox = style.js_frame_vbox
style.yesno_window = style.yesno_frame
style.mm_menu_window_vbox = style.mm_menu_frame_vbox
style.menu_choice_button_text = style.menu_choice
style.menu_choice_chosen_button_text = style.menu_choice_chosen
store._selected_compat = [ ]
class _SelectedCompat(object):
def __init__(self, target):
self.__dict__["target"] = target
self.__dict__["property_updates"] = [ ]
store._selected_compat.append(self)
def __setattr__(self, k, v):
self.property_updates.append((k, v))
def apply(self):
target = getattr(style, self.target)
for k, v in self.property_updates:
setattr(target, "selected_" + k, v)
def clear(self):
self.__dict__["property_updates"] = [ ]
style.selected_button = _SelectedCompat('button')
style.selected_button_text = _SelectedCompat('button_text')
style.gm_nav_selected_button = _SelectedCompat('gm_nav_button')
style.gm_nav_selected_button_text = _SelectedCompat('gm_nav_button_text')
style.prefs_selected_button = _SelectedCompat('prefs_button')
style.prefs_selected_button_text = _SelectedCompat('prefs_button_text')
def apply_selected_compat():
for scs in _selected_compat:
scs.apply()
layout.compat_funcs.append(apply_selected_compat)
+503
View File
@@ -0,0 +1,503 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
# Copyright 2004-2007 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
init -1100:
python:
theme = object()
def RoundRect(color, small=False):
"""
Creates a roundrect displayable. Size should be one of
6 or 12, while color is the color of the roundrect.
"""
if small:
size = 6
else:
if config.screen_width <= 640:
size = 6
else:
size = 12
return Frame(theme.OneOrTwoColor("_roundrect/rr%dg.png" % size, color), size, size)
def _display_button_menu(menuitems):
narration = [ s for s, i in menuitems if i is None and s ]
menuitems = [ (s, i) for s, i in menuitems if i is not None or not s ]
if narration:
renpy.say(None, "\n".join(narration), interact=False)
return renpy.display_menu(menuitems)
def _button_menu():
store.menu = _display_button_menu
style.menu.clear()
style.menu.box_spacing = 2
style.menu_window.clear()
style.menu_window.take(style.default)
style.menu_window.xpos = 0.5
style.menu_window.xanchor = 0.5
style.menu_window.ypos = 0.5
style.menu_window.yanchor = 0.5
style.menu_choice.clear()
style.menu_choice.take(style.button_text)
style.menu_choice_button.clear()
style.menu_choice_button.take(style.button)
style.menu_choice_chosen.clear()
style.menu_choice_chosen_button.clear()
style.menu_choice_button.xminimum = int(config.screen_width * 0.75)
style.menu_choice_button.xmaximum = int(config.screen_width * 0.75)
theme.button_menu = _button_menu
python hide:
def OneOrTwoColor(image, color):
if len(color) == 2:
return im.Twocolor(image, color[0], color[1])
else:
return im.Twocolor(image, color, color)
theme.OneOrTwoColor = OneOrTwoColor
def theme_roundrect(
widget = (0, 60, 120, 255),
widget_hover = (0, 80, 160, 255),
widget_text = (200, 225, 255, 255),
widget_selected = (255, 255, 200, 255),
disabled = (64, 64, 64, 255),
disabled_text = (200, 200, 200, 255),
label = (255, 255, 255, 255),
frame = (100, 150, 200, 255),
window = (0, 0, 0, 192),
mm_root = Solid((220, 235, 255, 255)),
gm_root = Solid((220, 235, 255, 255)),
centered = False,
button_menu = True,
launcher = False,
rounded_window = True,
less_rounded = False,
):
"""This enables the use of the roundrect theme. By
default, this theme styles the game in a blue color
scheme. However, by supplying one or more of the
parameters given below, the color scheme can be
changed.
@param widget: The background color of non-focued
buttons and sliders.
@param widget_hover: The background color of focused
buttons and sliders.
@param widget_text: The text color of non-selected buttons.
@param widget_selected: The text color of selected buttons.
@param disabled: The background color of disabled buttons.
@param disabled_text: The text color of disabled buttons.
@param label: The text color of non-selected labels.
@param frame: The background color of frames.
@param mm_root: A displayable (such as
an Image or Solid) that will be used as
the background for the main menu.
@param gm_root: A displayable (such as
an Image or Solid) that will be used as
the background for the game menu.
@param centered: If True, the buttons and sliders will
be centered in the frames or windows that contain
them. If False, the default, they will be pushed to the
right side.
"""
if config.screen_width <= 640:
size = 18
small = 12
big = False
spacing = 0
pref_spacing = 5
title_spacing = 6
frame_width = 200
widget_width = 160
config.thumbnail_width = 60
config.thumbnail_height = 45
config.file_page_cols = 2
config.file_page_rows = 4
# style.file_picker_frame.xmaximum = 450
prefcols = [ 110, 320, 530 ]
nav_xpos = 530
else:
size = 22
small = 16
big = True
spacing = 0
pref_spacing = 10
title_spacing = 12
frame_width = 250
widget_width = 200
prefcols = [ 137, 400, 663 ]
nav_xpos = 663
rrslider_empty = "_roundrect/rrslider_empty.png"
rrslider_full = "_roundrect/rrslider_full.png"
rrslider_thumb = "_roundrect/rrslider_thumb.png"
rrslider_radius = 6
rrslider_height = 24
rrvslider_empty = "_roundrect/rrvslider_empty.png"
rrvslider_full = "_roundrect/rrvslider_full.png"
rrvslider_thumb = "_roundrect/rrvslider_thumb.png"
rrscrollbar = "_roundrect/rrscrollbar.png"
rrscrollbar_thumb = "_roundrect/rrscrollbar_thumb.png"
rrvscrollbar = "_roundrect/rrvscrollbar.png"
rrvscrollbar_thumb = "_roundrect/rrvscrollbar_thumb.png"
rrvslider_radius = 6
rrvslider_width = 24
def rrframe(sty):
sty.background = RoundRect(frame, less_rounded)
sty.xpadding = 6
sty.ypadding = 6
if big and not less_rounded:
store._roundrect_radius = 12
else:
store._roundrect_radius = 6
style.button.clear()
style.button.background = RoundRect(widget, less_rounded)
style.button.hover_background = RoundRect(widget_hover, less_rounded)
style.button.xminimum = widget_width
style.button.ypadding = 1
style.button.xpadding = _roundrect_radius
style.button.xmargin = 1
style.button.ymargin = 1
style.button_text.clear()
style.button_text.drop_shadow = None
style.button_text.color = widget_text
style.button_text.size = size
style.button_text.xpos = 0.5
style.button_text.xanchor = 0.5
style.button_text.ypos = 0.5
style.button_text.yanchor = 0.5
style.button_text.textalign = 0.5
style.button.insensitive_background = RoundRect(disabled, less_rounded)
style.button_text.insensitive_color = disabled_text
style.button_text.selected_color = widget_selected
style.menu_button.clear()
style.mm_root.background = mm_root
style.gm_root.background = gm_root
style.mm_menu_frame_vbox.box_spacing = spacing
rrframe(style.mm_menu_frame)
style.mm_menu_frame.xpos = nav_xpos
style.mm_menu_frame.xanchor = 0.5
style.gm_nav_vbox.box_spacing = spacing
rrframe(style.gm_nav_frame)
style.gm_nav_frame.xpos = nav_xpos
style.gm_nav_frame.xanchor = 0.5
rrframe(style.prefs_pref_frame)
del style.prefs_pref_frame.bottom_margin
style.prefs_pref_frame.xfill = True
style.prefs_pref_vbox.box_spacing = spacing
style.prefs_pref_vbox.box_first_spacing = title_spacing
style.prefs_pref_vbox.xfill = True
style.prefs_frame.ypadding = pref_spacing
rrframe(style.prefs_column)
style.prefs_column.box_spacing = pref_spacing
style.prefs_column.xmaximum = frame_width
style.prefs_left.xpos = prefcols[0]
style.prefs_center.xpos = prefcols[1]
style.prefs_right.xpos = prefcols[2]
style.prefs_label.color = label
style.prefs_label.size = size
style.prefs_label.drop_shadow = None
style.prefs_label.xpos = 0
style.prefs_label.xanchor = 0
if centered:
style.prefs_button.xpos = 0.5
style.prefs_button.xanchor = 0.5
else:
style.prefs_button.xpos = 1.0
style.prefs_button.xanchor = 1.0
style.bar.ymaximum = rrslider_height
style.bar.left_gutter = rrslider_radius
style.bar.right_gutter = rrslider_radius
style.bar.thumb_offset = -rrslider_radius
style.bar.left_bar = Frame(theme.OneOrTwoColor(rrslider_full, widget), rrslider_radius * 2, 0)
style.bar.right_bar = Frame(theme.OneOrTwoColor(rrslider_empty, widget), rrslider_radius * 2, 0)
style.bar.thumb = theme.OneOrTwoColor(rrslider_thumb, widget)
style.bar.hover_left_bar = Frame(theme.OneOrTwoColor(rrslider_full, widget_hover), rrslider_radius * 2, 0)
style.bar.hover_right_bar = Frame(theme.OneOrTwoColor(rrslider_empty, widget_hover), rrslider_radius * 2, 0)
style.bar.hover_thumb = theme.OneOrTwoColor(rrslider_thumb, widget_hover)
style.scrollbar.clear()
style.scrollbar.left_bar = Frame(theme.OneOrTwoColor(rrscrollbar, widget), 6, 0)
style.scrollbar.right_bar = Frame(theme.OneOrTwoColor(rrscrollbar, widget), 6, 0)
style.scrollbar.hover_left_bar = Frame(theme.OneOrTwoColor(rrscrollbar, widget_hover), 6, 0)
style.scrollbar.hover_right_bar = Frame(theme.OneOrTwoColor(rrscrollbar, widget_hover), 6, 0)
style.scrollbar.thumb = Frame(theme.OneOrTwoColor(rrscrollbar_thumb, widget), 6, 0)
style.scrollbar.hover_thumb = Frame(theme.OneOrTwoColor(rrscrollbar_thumb, widget_hover), 6, 0)
style.scrollbar.left_gutter = 6
style.scrollbar.right_gutter = 6
style.scrollbar.ymaximum = 12
style.scrollbar.thumb_offset = 6
style.vbar.xmaximum = rrvslider_width
style.vbar.top_gutter = rrvslider_radius
style.vbar.bottom_gutter = rrvslider_radius
style.vbar.thumb_offset = -rrvslider_radius
style.vbar.bottom_bar = Frame(theme.OneOrTwoColor(rrvslider_full, widget), 0, rrvslider_radius * 2)
style.vbar.top_bar = Frame(theme.OneOrTwoColor(rrvslider_empty, widget), 0, rrvslider_radius * 2)
style.vbar.thumb = theme.OneOrTwoColor(rrvslider_thumb, widget)
style.vbar.hover_bottom_bar = Frame(theme.OneOrTwoColor(rrvslider_full, widget_hover), 0, rrvslider_radius * 2)
style.vbar.hover_top_bar = Frame(theme.OneOrTwoColor(rrvslider_empty, widget_hover), 0, rrvslider_radius * 2)
style.vbar.hover_thumb = theme.OneOrTwoColor(rrvslider_thumb, widget_hover)
style.vscrollbar.clear()
style.vscrollbar.bar_invert = True
style.vscrollbar.top_bar = Frame(theme.OneOrTwoColor(rrvscrollbar, widget), 0, 6)
style.vscrollbar.bottom_bar = Frame(theme.OneOrTwoColor(rrvscrollbar, widget), 0, 6)
style.vscrollbar.hover_top_bar = Frame(theme.OneOrTwoColor(rrvscrollbar, widget_hover), 0, 6)
style.vscrollbar.hover_bottom_bar = Frame(theme.OneOrTwoColor(rrvscrollbar, widget_hover), 0, 6)
style.vscrollbar.thumb = Frame(theme.OneOrTwoColor(rrvscrollbar_thumb, widget), 0, 6)
style.vscrollbar.hover_thumb = Frame(theme.OneOrTwoColor(rrvscrollbar_thumb, widget_hover), 0, 6)
style.vscrollbar.top_gutter = 6
style.vscrollbar.bottom_gutter = 6
style.vscrollbar.xmaximum = 12
style.vscrollbar.thumb_offset = 6
style.prefs_slider.xmaximum=widget_width
del style.prefs_slider.ymaximum
if centered:
style.prefs_slider.xpos = 0.5
style.prefs_slider.xanchor = 0.5
else:
style.prefs_slider.xpos = 1.0
style.prefs_slider.xanchor = 1.0
style.soundtest_button.xminimum = 0
# Joystick
style.prefs_joystick.xmaximum = 600
style.prefs_joystick.xpos = 0.5
style.prefs_joystick.xanchor = 0.5
style.prefs_js_button.background = RoundRect(widget, True)
style.prefs_js_button.hover_background = RoundRect(widget_hover, True)
style.prefs_js_button_text.drop_shadow = None
style.prefs_js_button_text.size = small
style.prefs_js_button.xminimum = 450
rrframe(style.js_frame)
del style.js_frame.yminimum
style.js_frame.ypadding = .05
style.js_frame.xpadding = rrslider_radius
style.js_frame.xmargin = .05
style.js_frame.ypos = .1
style.js_frame.yanchor = 0
style.js_function_label.xpos = 0.5
style.js_function_label.xanchor = 0.5
style.js_prompt_label.xpos = 0.5
style.js_prompt_label.xanchor = 0.5
# Yes/No
rrframe(style.yesno_frame)
del style.yesno_frame.yminimum
style.yesno_frame.ypadding = .05
style.yesno_frame.xpadding = rrslider_radius
style.yesno_frame.xmargin = .05
style.yesno_frame.ypos = .1
style.yesno_frame.yanchor = 0
style.yesno_label.color = label
style.yesno_label.drop_shadow = None
# File Picker
rrframe(style.file_picker_frame)
style.file_picker_frame.xmargin = 6
style.file_picker_frame.ymargin = 6
style.file_picker_frame_vbox.box_spacing = 4
style.file_picker_nav_button.xminimum = 0
style.file_picker_navbox.box_spacing = spacing
del style.file_picker_navbox.xpos
style.file_picker_entry.background = RoundRect(widget, less_rounded)
style.file_picker_entry.hover_background = RoundRect(widget_hover, less_rounded)
style.file_picker_entry.xpadding = _roundrect_radius
style.file_picker_entry.xmargin = 2
style.file_picker_text.size = small
style.file_picker_text.drop_shadow = None
style.file_picker_text.color = widget_text
style.file_picker_new.color = widget_selected
style.file_picker_old.minwidth = 40
style.file_picker_new.minwidth = 40
style.file_picker_old.text_align = 1.0
style.file_picker_new.text_align = 1.0
if config.script_version is None or config.script_version > (6, 0, 0):
style.file_picker_text.insensitive_color = disabled_text
style.file_picker_entry.insensitive_background = RoundRect(disabled, less_rounded)
config.file_quick_access_pages = 8
# In-game.
if rounded_window:
style.window.background = RoundRect(window, less_rounded)
style.window.xpadding = 6
style.window.ypadding = 6
style.window.xmargin = 6
style.window.ymargin = 6
else:
style.window.background = Solid(window)
style.window.xpadding = 6
style.window.ypadding = 6
style.window.xmargin = 0
style.window.ymargin = 0
style.default.size = size
style.default.drop_shadow = None
rrframe(style.frame)
style.frame.xpadding = 6
style.frame.ypadding = 6
style.frame.xmargin = 6
style.frame.ymargin = 6
if button_menu:
_button_menu()
if launcher:
style.launcher_mid_vbox.xpos = 80
style.launcher_mid_vbox.ypos = 50
style.launcher_bottom_vbox.xpos = 80
style.launcher_bottom_vbox.ypos = 360
style.launcher_bottom_vbox.yanchor = 1.0
style.launcher_button.xpos = 20
style.launcher_button.xminimum = 240
style.launcher_title_label.color = label
style.launcher_title_label.size = 28
style.launcher_text.xpos = 140
style.launcher_text.xanchor = 0.5
style.launcher_text.xmaximum = 240
style.launcher_text.color = label
style.launcher_text.text_align = 0.5
style.launcher_label.xpos = 140
style.launcher_label.xanchor = 0.5
style.launcher_label.xmaximum = 240
style.launcher_label.color = label
style.launcher_label.text_align = 0.5
style.launcher_input.xpos = 140
style.launcher_input.xanchor = 0.5
style.launcher_input.xmaximum = 240
style.launcher_input.color = widget
style.launcher_input.text_align = 0.5
store._launcher_per_page = 9
theme.roundrect = theme_roundrect
def theme_roundrect_red(**params):
"""
This sets up a red/pink variant of the roundrect theme.
"""
args = dict(widget=(150, 50, 50, 255),
widget_hover=(200, 50, 50, 255),
widget_text=(255, 225, 225, 255),
frame=(225, 115, 115, 192),
mm_root=Solid((255, 225, 225, 255)),
gm_root=Solid((255, 225, 225, 255)),
)
args.update(params)
theme.roundrect(**args)
theme.roundrect_red = theme_roundrect_red
+469
View File
@@ -0,0 +1,469 @@
# This file contains the developer screen, which contains tools that might
# be of interest to people making Ren'Py games.
label _developer_screen:
python hide:
ui.window(style=style.gm_root)
ui.null()
ui.frame(xpos=10, ypos=10, style=style.menu_frame)
ui.vbox(box_first_spacing=10)
layout.label(u"Developer Menu", None)
sg = "developer_menu"
layout.button(u"Return", None, clicked=ui.returns(True), size_group=sg)
layout.button(u"Reload Game (Shift+R)", None, clicked=ui.callsinnewcontext("_save_reload_game"), size_group=sg)
layout.button(u"Variable Viewer", None, clicked=ui.jumps("_debugger_screen"), size_group=sg)
layout.button(u"Theme Test", None, clicked=ui.jumps("_theme_test"), size_group=sg)
layout.button(u"Style Hierarchy", None, clicked=ui.jumps("_style_hierarchy"), size_group=sg)
layout.button(u"FPS Meter", None, clicked=ui.jumps("_fps_meter"), size_group=sg)
layout.button(u"Image Location Picker", None, clicked=ui.jumps("_image_location_picker"), size_group=sg)
ui.close()
ui.interact()
return
label _debugger_screen:
python hide:
ui.window(style=style.gm_root)
ui.null()
ui.frame(ymargin=10, xmargin=10, style=style.menu_frame)
ui.side(['t', 'c', 'r', 'b'])
layout.label("Variable Viewer", None)
entries = [ ]
ebc = renpy.game.log.ever_been_changed
ebc = list(ebc)
ebc.sort()
ebc.remove("nvl_list")
import repr
aRepr = repr.Repr()
aRepr.maxstring = 40
for var in ebc:
if not hasattr(store, var):
continue
if var.startswith("__00"):
continue
if var.startswith("_") and not var.startswith("__"):
continue
val = aRepr.repr(getattr(store, var))
entries.append((0, (var + " = " + val).replace("{", "{{")))
if entries:
vp = ui.viewport(mousewheel=True)
layout.list(entries)
ui.bar(adjustment=vp.yadjustment, style='vscrollbar')
else:
layout.prompt("No variables have changed since the game started.", None)
ui.null()
layout.button(u"Return to the developer menu", None, clicked=ui.returns(True))
ui.close()
ui.interact()
jump _developer_screen
label _theme_test:
python hide:
# Never gets pickled
def role(b):
if b:
return "selected_"
else:
return ""
toggle_var = True
adj = ui.adjustment(100, 25, page=25)
while True:
ui.window(style=style.gm_root)
ui.null()
# Buttons
ui.hbox(box_spacing=10, xpos=10, ypos=10)
ui.vbox(box_spacing=10)
sg = "theme_test"
ui.frame(style='menu_frame')
ui.vbox()
layout.label("Button", None)
ui.textbutton("Button", size_group=sg, clicked=ui.returns("gndn"))
ui.textbutton("Button (Selected)", size_group=sg, clicked=ui.returns("gndn"), role=role(True))
ui.textbutton("Small", clicked=ui.returns("gndn"), style='small_button')
ui.close()
ui.frame(style='menu_frame')
ui.vbox()
layout.label("Radio Button", None)
ui.textbutton("True", size_group=sg, clicked=ui.returns("set"), role=role(toggle_var), style='radio_button')
ui.textbutton("False", size_group=sg, clicked=ui.returns("unset"), role=role(not toggle_var), style='radio_button')
ui.close()
ui.frame(style='menu_frame')
ui.vbox()
layout.label("Check Button", None)
ui.textbutton("Check Button", size_group=sg, clicked=ui.returns("toggle"), role=role(toggle_var), style='check_button')
ui.close()
ui.frame(style='menu_frame')
ui.vbox(box_spacing=2)
ui.bar(adjustment=adj, style='bar', xmaximum=200)
ui.bar(adjustment=adj, style='slider', xmaximum=200)
ui.bar(adjustment=adj, style='scrollbar', xmaximum=200)
ui.close()
ui.close() # vbox
ui.frame(style='menu_frame')
ui.hbox(box_spacing=2)
ui.bar(adjustment=adj, style='vbar', ymaximum=200)
ui.bar(adjustment=adj, style='vslider', ymaximum=200)
ui.bar(adjustment=adj, style='vscrollbar', ymaximum=200)
ui.close()
ui.frame(style='menu_frame', xmaximum=0.95)
ui.vbox(box_spacing=20)
layout.prompt("This a prompt. Hopefully, we've made this long enough to wrap around at least once.", None)
ui.close()
ui.close() # hbox
ui.frame(style='menu_frame', xalign=.01, yalign=.99)
ui.textbutton("Return to the developer menu", clicked=ui.returns("return"))
rv = ui.interact()
if rv == "return":
renpy.jump("_developer_screen")
elif rv == "set":
toggle_var = True
elif rv == "unset":
toggle_var = False
elif rv == "toggle":
toggle_var = not toggle_var
label _style_hierarchy:
python hide:
ui.window(style=style.gm_root)
ui.null()
ui.frame(ymargin=10, xmargin=10, style=style.menu_frame)
ui.side(['t', 'c', 'r', 'b'], spacing=2)
layout.label("Style Hierarchy", None)
hier = renpy.style.style_hierarchy()
entries = [ (i[0], i[1] + " - " + str(i[2])) for i in hier if i[2] ]
vp = ui.viewport(mousewheel=True)
layout.list(entries)
ui.bar(adjustment=vp.yadjustment, style='vscrollbar')
layout.button(u"Return to the developer menu", None, clicked=ui.returns(True))
ui.close()
ui.interact()
jump _developer_screen
init -1050 python:
config.missing_background = "black"
init 1050 python:
if renpy.game.options.remote:
config.window_title = "Preview: " + config.window_title
class Remote(renpy.Displayable):
def render(self, width, height, st, at):
return renpy.Render(0, 0)
def event(self, ev, x, y, st):
renpy.remote.remote()
renpy.timeout(.05)
config.underlay.append(Remote())
del Remote
if config.developer:
# This is used to indicate that a scene has just occured,
# and so if the next thing is a missing_show, we should
# blank the screen.
__missing_scene = False
# This returns the __missing dictionary from the current
# context object.
def __missing():
try:
return renpy.context().__missing
except AttributeError:
rv = dict()
renpy.context().__missing = rv
return rv
def __missing_show_callback(name, what, layer):
if layer != 'master':
return False
global __missing_scene
if __missing_scene:
renpy.show(name, what=config.missing_background)
__missing_scene = False
what = " ".join(what).replace("{", "{{")
__missing()[name[0]] = what
return True
def __missing_hide_callback(name, layer):
if layer != 'master':
return False
global __missing_scene
__missing_scene = False
__missing().pop(name[0], None)
return True
def __missing_scene_callback(layer):
if layer != 'master':
return False
global __missing_scene
__missing_scene = True
__missing().clear()
return True
def __missing_overlay():
missing = __missing()
if not missing:
return
ui.vbox(xalign=0.5, yalign=0.0)
ui.text(_("Undefined Images"), xalign=0.5)
for what in sorted(missing.values()):
ui.text(what, xalign=0.5)
ui.close()
config.missing_scene = __missing_scene_callback
config.missing_show = __missing_show_callback
config.missing_hide = __missing_hide_callback
config.overlay_functions.append(__missing_overlay)
init -1050 python:
class __FPSMeter(object):
def __init__(self):
self.last_frames = None
self.last_time = None
def __call__(self, st, at):
if self.last_time is not None:
frames = config.frames - self.last_frames
time = st - self.last_time
text = "FPS: %.1f" % (frames / time)
else:
text = "FPS: --.-"
self.last_frames = config.frames
self.last_time = st
return Text(text, xalign=1.0), .5
label _fps_meter:
python hide:
def fps_overlay():
ui.add(DynamicDisplayable(__FPSMeter()))
# We normally don't want to change this at runtime... but here
# it's okay, because we don't want to save the FPS meter anyway.
#
# Do as I say, not as I do.
config.overlay_functions.append(fps_overlay)
return
init python:
# This is a displayable that can keep track of the mouse coordinates,
# and show them to the user.
class __ImageLocationPicker(renpy.Displayable):
def __init__(self, fn, **kwargs):
super(__ImageLocationPicker, self).__init__(**kwargs)
self.child = Image(fn)
self.mouse = None
self.point1 = None
self.point2 = None
def render(self, width, height, st, at):
rv = renpy.Render(width, height)
cr = renpy.render(self.child, width, height, st, at)
rv.blit(cr, (0, 0))
text = [ ]
if self.point1 and self.point2 and not self.point1 == self.point2:
x1, y1 = self.point1
x2, y2 = self.point2
x1 = min(x1, cr.width)
x2 = min(x2, cr.width)
y1 = min(y1, cr.height)
y2 = min(y2, cr.height)
minx = min(x1, x2)
miny = min(y1, y2)
maxx = max(x1, x2)
maxy = max(y1, y2)
w = maxx - minx
h = maxy - miny
if w and h:
sr = renpy.render(Solid("#0ff4"), w, h, st, at)
rv.blit(sr, (minx, miny))
text.append("Imagemap rectangle: %r" % ((minx, miny, maxx, maxy),))
text.append("Cropping rectangle: %r" % ((minx, miny, w, h),))
if self.mouse:
mx, my = self.mouse
if mx < cr.width and my < cr.height:
text.append(_("Mouse position: %r") % (self.mouse,))
text.append(_("Right-click or escape to quit."))
td = Text("\n".join(text), size=14, color="#fff", outlines=[ (1, "#000", 0, 0 ) ])
tr = renpy.render(td, width, height, st, at)
rv.blit(tr, (0, height - tr.height))
return rv
def event(self, ev, x, y, st):
import pygame
self.mouse = (x, y)
renpy.redraw(self, 0)
if ev.type == pygame.MOUSEBUTTONDOWN and ev.button == 1:
self.point1 = (x, y)
self.point2 = (x, y)
elif ev.type == pygame.MOUSEMOTION and ev.buttons[0]:
self.point2 = (x, y)
elif ev.type == pygame.MOUSEBUTTONUP and ev.button == 1:
self.point2 = (x, y)
label _image_location_picker:
scene black
python hide:
image_files = [
fn
for dir, fn in renpy.loader.listdirfiles()
if fn.lower().endswith(".jpg") or fn.lower().endswith(".png")
if not fn[0] == "_"
]
image_files.sort()
xadjustment = ui.adjustment()
yadjustment = ui.adjustment()
while True:
ui.frame()
ui.vbox()
layout.label(u"Image Location Picker", None)
ui.textbutton(_(u"Done"), clicked=ui.returns(False), size_group="files")
ui.side(['c', 'b', 'r'], spacing=5)
vp = ui.viewport(xadjustment=xadjustment, yadjustment=yadjustment, mousewheel=True)
ui.vbox()
for fn in image_files:
ui.button(clicked=ui.returns(fn), size_group="files", xminimum=1.0)
ui.text(fn, style="button_text", xalign=0.0)
ui.close()
ui.bar(adjustment=xadjustment, style='scrollbar')
ui.bar(adjustment=yadjustment, style='vscrollbar')
ui.close()
ui.close()
rv = ui.interact()
if rv is False:
renpy.jump("_developer_screen")
# Now, allow the user to pick the image.
ui.keymap(game_menu=ui.returns(True))
ui.add(__ImageLocationPicker(rv))
ui.interact()
# ...
renpy.jump("_image_location_picker")
@@ -0,0 +1,109 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('joystick_preferences')
style.js_frame = Style(style.menu_frame, help="frame used for changing a joystick binding")
style.js_frame_box = Style(style.vbox, help="vbox used for changing a joystick binding")
style.js_function_prompt = Style(style.prompt, help="the name of the joystick binding to change (window)")
style.js_function_prompt_text = Style(style.prompt_text, help="the name of the joystick binding to change (text)")
style.js_action_prompt = Style(style.prompt, help="prompting the user how to change a joystick binding (window)")
style.js_action_prompt_text = Style(style.prompt_text, help="prompting the user how to change a joystick binding (text)")
style.js_prefs_frame = Style(style.menu_frame, help="frame containing all joystick bindings")
style.js_prefs_box = Style(style.vbox, help="box containing all joystick bindings")
style.js_prefs_button = Style(style.button, help="button containing a joystick binding")
style.js_prefs_button_text = Style(style.button_text, help="button containing a joystick binding (text)")
style.js_prefs_label = Style(style.label, help="joystick preferences label (window)")
style.js_prefs_label_text = Style(style.label_text, help="joystick preferences label (text)")
style.js_frame.ypos = .1
style.js_frame.ypadding = .05
style.js_frame.xmargin = .1
style.js_frame_box.box_spacing = 30
style.js_prefs_frame.xpos = 10
style.js_prefs_frame.ypos = 10
style.js_prefs_button.xminimum = 0.5
style.js_prefs_box.box_first_spacing = 10
config.joystick_keys = [
(u'Left', 'joy_left'),
(u'Right', 'joy_right'),
(u'Up', 'joy_up'),
(u'Down', 'joy_down'),
(u'Select/Dismiss', 'joy_dismiss'),
(u'Rollback', 'joy_rollback'),
(u'Hold to Skip', 'joy_holdskip'),
(u'Toggle Skip', 'joy_toggleskip'),
(u'Hide Text', 'joy_hide'),
(u'Menu', 'joy_menu'),
]
def _joystick_select_binding():
for label, key in config.joystick_keys:
def my_clicked(label=label, key=key):
return (label, key)
layout.button(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "prefs_js", clicked=my_clicked, index=label)
def _joystick_get_binding():
ui.saybehavior()
ui.add(renpy.display.joystick.JoyBehavior())
def _joystick_take_binding(binding, key):
if not isinstance(binding, basestring):
if key in _preferences.joymap:
del _preferences.joymap[key]
else:
_preferences.joymap[key] = binding
def _joystick_preferences():
def set_binding(label, key):
layout.navigation(None)
ui.window(style='js_frame')
ui.vbox(style='js_frame_box')
layout.prompt(_(u"Joystick Mapping") + " - " + _(label), "js_function")
layout.prompt(u'Move the joystick or press a joystick button to create the mapping. Click the mouse to remove the mapping.', 'js_action')
ui.close()
_joystick_get_binding()
binding = ui.interact(mouse="gamemenu")
_joystick_take_binding(binding, key)
return True
ui.window(style='js_prefs_frame')
ui.vbox(style='js_prefs_box')
layout.label("Joystick Configuration", "js_prefs")
for label, key in config.joystick_keys:
def clicked(label=label, key=key):
return renpy.invoke_in_new_context(set_binding, label, key)
layout.button(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "js_prefs", clicked=clicked, index=label)
ui.close()
label joystick_preferences_screen:
while True:
python:
layout.navigation("joystick_preferences")
_joystick_preferences()
ui.interact(mouse="gamemenu")
+358
View File
@@ -0,0 +1,358 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('load_save')
# Define styles
style.file_picker_entry = Style(style.large_button, help="used to select a file to load or save")
style.file_picker_entry_box = Style(style.hbox, help="the box inside a file picker entry")
style.file_picker_text = Style(style.large_button_text, help="text inside a file picker entry")
style.file_picker_empty_slot = Style(style.file_picker_text, help="text inside an empty file picker entry slot")
style.file_picker_extra_info = Style(style.file_picker_text)
style.file_picker_new = Style(style.file_picker_text)
style.file_picker_old = Style(style.file_picker_text)
style.file_picker_frame = Style(style.menu_frame, help="the frame enclosing the entire file picker")
style.file_picker_frame_box = Style(style.vbox, help="the box containing the navbox and the grid of file picker entries")
style.file_picker_navbox = Style(style.hbox, help="the box containing navigation buttons")
style.file_picker_nav_button = Style(style.small_button, help="a file picker navigation button")
style.file_picker_nav_button_text = Style(style.small_button_text, help="file picker navigation button text")
style.file_picker_grid = Style(style.default, help="a grid containing file picker navigation buttons")
# Adjust styles.
style.file_picker_entry.xminimum = 0.5
style.file_picker_frame.xmargin = 6
style.file_picker_frame.ymargin = 6
style.file_picker_frame_box.box_spacing = 4
style.file_picker_entry_box.box_spacing = 4
# The number of columns per page of files.
config.file_page_cols = 2
if config.screen_width <= 640:
# The number of rows per page of files.
config.file_page_rows = 4
# The number of quick access pages.
config.file_quick_access_pages = 6
else:
config.file_page_rows = 5
config.file_quick_access_pages = 8
# True if we want to disable the file pager.
config.disable_file_pager = False
# True to suppress the display of thumbnails.
config.disable_thumbnails = False
# The default thumbnail to use when no file exists.
config.load_save_empty_thumbnail = None
# How we format time in a file entry.
config.time_format = "%b %d, %H:%M"
# How we format a file entry.
config.file_entry_format = "%(time)s\n%(save_name)s"
# True if we should prompt before loading a game.
_load_prompt = True
# This is used to store scratch data that's used by the
# library, but shouldn't be saved out as part of the savegame.
__scratch = object()
__scratch.file_picker_page = None
def _render_savefile(index, name, extra_info, screenshot, mtime, newest, clicked):
import time
ui.button(style=style.file_picker_entry[index],
clicked=clicked,
role=("selected_" if newest else ""),
keymap={ "save_delete" : ui.returns(("unlink", name)) }
)
ui.hbox(style=style.file_picker_entry_box[index])
if not config.disable_thumbnails:
ui.add(screenshot)
if newest:
ui.text(name + ". ", style=style.file_picker_new[index])
else:
ui.text(name + ". ", style=style.file_picker_old[index])
s = config.file_entry_format % dict(
time=time.strftime(config.time_format,
time.localtime(mtime)),
save_name=extra_info)
ui.text(s, style=style.file_picker_extra_info[index])
ui.close()
def _render_new_slot(index, name, clicked):
ui.button(style=style.file_picker_entry[index],
clicked=clicked)
ui.hbox(style=style.file_picker_entry_box[index])
if not config.disable_thumbnails:
if config.load_save_empty_thumbnail:
ui.add(config.load_save_empty_thumbnail)
else:
ui.null(width=config.thumbnail_width,
height=config.thumbnail_height)
ui.text(name + ". ", style=style.file_picker_old[index])
ui.text(_(u"Empty Slot."), style=style.file_picker_empty_slot[index])
ui.close()
# Returns the names of the various pages that the file picker knows
# about.
def _file_picker_pages():
rv = [ ]
if config.has_autosave:
rv.append(u"Auto")
if config.has_quicksave:
rv.append(u"Quick")
for i in range(1, config.file_quick_access_pages + 1):
rv.append(str(i))
return rv
# This function is given a page, and should map it to the names
# of the files on that page.
def _file_picker_page_files(page):
per_page = config.file_page_cols * config.file_page_rows
rv = [ ]
if config.has_autosave:
if page == 0:
for i in range(1, per_page + 1):
rv.append(("auto-" + str(i), _(u"a") + str(i), True))
return rv
else:
page -= 1
if config.has_quicksave:
if page == 0:
for i in range(1, per_page + 1):
rv.append(("quick-" + str(i), _(u"q") + str(i), True))
return rv
else:
page -= 1
for i in range(per_page * page + 1, per_page * page + 1 + per_page):
rv.append(("%d" % i, "%d" % i, False))
return rv
# Given a filename, returns the page that filename is on.
def _file_picker_file_page(filename):
per_page = config.file_page_cols * config.file_page_rows
base = 0
if config.has_autosave:
if filename.startswith("auto-"):
return base
else:
base += 1
if config.has_quicksave:
if filename.startswith("quick-"):
return base
else:
base += 1
return base + int((int(filename) - 1) / per_page)
# Processes a screenshot.
def _file_picker_process_screenshot(s):
return s
# This displays a file picker that can chose a save file from
# the list of save files.
def _file_picker(screen, save):
# Should we update the list of saved games?
update = True
while True:
if update:
update = False
# The number of slots in a page.
file_page_length = config.file_page_cols * config.file_page_rows
# The list of saved games.
saved_games = renpy.list_saved_games(regexp=r'(auto-|quick-)?[0-9]+')
# Figure out which game is the newest and so on.
newest = None
newest_mtime = None
save_info = { }
for fn, extra_info, screenshot, mtime in saved_games:
screenshot = _file_picker_process_screenshot(screenshot)
save_info[fn] = (extra_info, screenshot, mtime)
if not fn.startswith("auto-") and mtime > newest_mtime:
newest = fn
newest_mtime = mtime
# The index of the first entry in the page.
fpp = __scratch.file_picker_page
if fpp is None:
if newest:
fpp = _file_picker_file_page(newest)
else:
fpp = _file_picker_file_page("1")
if fpp < 0:
fpp = 0
__scratch.file_picker_page = fpp
# Show navigation
layout.navigation(screen)
ui.window(style='file_picker_frame')
ui.vbox(style='file_picker_frame_box') # whole thing.
if not config.disable_file_pager:
# Draw the navigation.
ui.hbox(style='file_picker_navbox') # nav buttons.
def tb(cond, label, clicked, selected):
layout.button(label,
"file_picker_nav",
enabled=cond,
clicked=clicked,
selected=selected)
# Previous
tb(fpp > 0, u'Previous', ui.returns(("fppdelta", -1)), selected=False)
# Quick Access
for i, name in enumerate(_file_picker_pages()):
tb(True, name, ui.returns(("fppset", i)), fpp == i)
# Next
tb(True, u'Next', ui.returns(("fppdelta", +1)), False)
ui.close()
# This draws a single slot.
def entry(name, filename, offset, ro):
clicked = ui.returns(("return", filename))
if filename not in save_info:
if (not save) or ro:
clicked = None
_render_new_slot(offset, name, clicked)
else:
if save and ro:
clicked = None
extra_info, screenshot, mtime = save_info[filename]
_render_savefile(offset,
name,
extra_info,
screenshot,
mtime,
newest == filename,
clicked)
ui.grid(config.file_page_cols,
config.file_page_rows,
style='file_picker_grid',
transpose=True) # slots
for i, (filename, name, ro) in enumerate(_file_picker_page_files(fpp)):
entry(name, filename, i, ro)
ui.close() # slots
ui.close() # whole thing
result = ui.interact(mouse="gamemenu")
type, value = result
if type == "unlink":
if layout.yesno_prompt(screen, layout.DELETE_SAVE):
renpy.unlink_save(value)
update = True
if type == "return":
return value
if type == "fppdelta":
fpp += value
if type == "fppset":
fpp = value
label save_screen:
python hide:
while True:
fn = _file_picker("save", True)
if renpy.can_load(fn):
if not layout.yesno_prompt("save", layout.OVERWRITE_SAVE):
continue
renpy.save(fn, extra_info=store.save_name)
label load_screen:
python hide:
while True:
fn = _file_picker("load", False)
if _load_prompt:
if not layout.yesno_prompt("load", layout.LOADING):
continue
renpy.load(fn)
init python hide:
def auto_save_extra_info():
return save_name
config.auto_save_extra_info = auto_save_extra_info
+60
View File
@@ -0,0 +1,60 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('main_menu')
style.mm_menu_frame = Style(style.menu_frame, help="frame containing main menu")
style.mm_menu_frame_box = Style(style.vbox, help="box containing main menu buttons")
style.mm_button = Style(style.button, help="main menu button")
style.mm_button_text = Style(style.button_text, help="main menu button (text)")
style.mm_button.size_group = "mm"
style.mm_menu_frame.xpos = 5.0/6.0
style.mm_menu_frame.xanchor = 0.5
style.mm_menu_frame.ypos = 0.9
style.mm_menu_frame.yanchor = 1.0
label main_menu_screen:
python hide:
# Ignore right-click while at the main menu.
ui.keymap(game_menu=ui.returns(None))
# Show the background.
ui.window(style='mm_root')
ui.null()
ui.frame(style='mm_menu_frame')
ui.vbox(style='mm_menu_frame_box')
for e in config.main_menu:
if len(e) == 3:
label, clicked, enabled = e
shown = "True"
else:
label, clicked, enabled, shown = e
if not eval(shown):
continue
# This checks to see if clicked is a string. If so, we want clicked
# to jump us out of the current context.
if isinstance(clicked, basestring):
clicked=ui.jumpsoutofcontext(clicked)
# Create each button.
layout.button(label, "mm", enabled=eval(enabled), clicked=clicked)
ui.close()
ui.interact(mouse="mainmenu")
return
+53
View File
@@ -0,0 +1,53 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('navigation')
style.gm_nav_frame = Style(style.menu_frame, help="game menu navigation frame")
style.gm_nav_box = Style(style.vbox, help="box containing game menu navigation buttons")
style.gm_nav_button = Style(style.button, help="game menu navigation button")
style.gm_nav_button_text = Style(style.button_text, help="game menu navigation button (text)")
style.gm_nav_button.size_group = "gm_nav_button"
style.gm_nav_frame.xpos = 5.0/6.0
style.gm_nav_frame.xanchor = 0.5
style.gm_nav_frame.ypos = 0.95
style.gm_nav_frame.yanchor = 1.0
def _navigation(screen=None):
# Display the game menu background
ui.window(style=style.gm_root[screen])
ui.null()
if screen is None:
return
# Display the navigation frame.
ui.frame(style='gm_nav_frame')
ui.vbox(focus='gm_nav', style='gm_nav_box')
for e in config.game_menu:
if len(e) == 4:
key, label, clicked, enabled = e
shown = "True"
else:
key, label, clicked, enabled, shown = e
if not eval(shown):
continue
layout.button(label,
"gm_nav",
selected=(screen==key),
enabled=eval(enabled),
clicked=clicked)
ui.close()
layout.navigation = _navigation
+86
View File
@@ -0,0 +1,86 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
# Load the common code.
renpy.load_module("_layout/classic_preferences_common")
# Create styles.
style.prefs_column = Style(style.vbox, help="preference columns")
style.prefs_left = Style(style.prefs_column, help="the left preference column")
style.prefs_center = Style(style.prefs_column, help="the center preference column")
style.prefs_right = Style(style.prefs_column, help="the right preference column")
# Customize styles.
style.prefs_pref_frame.xfill = True
style.prefs_column.xanchor = 0.5
if config.screen_width <= 640:
style.prefs_pref_box.box_spacing = 6
style.prefs_column.xmaximum = 200
style.prefs_column.box_spacing = 5
style.prefs_frame.top_margin = 5
style.prefs_left.xpos = 110
style.prefs_center.xpos = 320
style.prefs_right.xpos = 530
style.prefs_slider.xmaximum = 160
else:
style.prefs_pref_box.box_spacing = 12
style.prefs_column.xmaximum = 250
style.prefs_column.box_spacing = 10
style.prefs_frame.top_margin = 10
style.prefs_left.xpos = 137
style.prefs_center.xpos = 400
style.prefs_right.xpos = 663
style.prefs_slider.xmaximum = 200
style.prefs_pref_box.xfill = True
style.prefs_volume_box.xfill = True
style.prefs_pref_choicebox.xfill = True
style.prefs_button.xalign = 1.0
style.prefs_jump_button.xalign = 1.0
style.prefs_slider.xalign = 1.0
style.soundtest_button.xalign = 1.0
style.prefs_button.size_group = "prefs"
style.prefs_jump_button.size_group = "prefs"
# Place preferences into groups.
config.preferences['prefs_left'] = [
config.all_preferences[u'Display'],
config.all_preferences[u'Transitions'],
config.all_preferences[u'Text Speed'],
config.all_preferences[u'Joystick...'],
]
config.preferences['prefs_center'] = [
config.all_preferences[u'Skip'],
config.all_preferences[u'Begin Skipping'],
config.all_preferences[u'After Choices'],
config.all_preferences[u'Auto-Forward Time'],
]
config.preferences['prefs_right'] = [
config.all_preferences[u'Music Volume'],
config.all_preferences[u'Sound Volume'],
config.all_preferences[u'Voice Volume'],
]
label preferences_screen:
python hide:
_prefs_screen_run(config.preferences)
jump preferences_screen
@@ -0,0 +1,377 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
# Styles
style.prefs_frame = Style(style.default, help="the frame containing all of the preferences")
style.prefs_frame_box = Style(style.default, help="the box inside the frame containing all of the preferences")
style.prefs_pref_frame = Style(style.menu_frame, help="a frame containing a single preference")
style.prefs_pref_box = Style(style.vbox, help="the box separating the preference label from the preference choices")
style.prefs_pref_choicebox = Style(style.vbox, help="the box containing the preference choices")
style.prefs_label = Style(style.label, help="a preference label (window)")
style.prefs_label_text = Style(style.label_text, help="a preference label (text)")
style.prefs_button = Style(style.radio_button, help="preference value button")
style.prefs_button_text = Style(style.radio_button_text, help="preference value button (text)")
style.prefs_slider = Style(style.slider, help="preference value slider bar")
style.prefs_volume_box = Style(style.vbox, help="box containing a volume slider and soundtest button")
style.prefs_volume_slider = Style(style.prefs_slider, help="volume slider bar")
style.soundtest_button = Style(style.small_button, help="soundtest button")
style.soundtest_button_text = Style(style.small_button_text, help="soundtest button (text)")
style.prefs_jump = Style(style.prefs_pref_frame, help="jump preference frame")
style.prefs_jump_button = Style(style.button, help="jump preference button")
style.prefs_jump_button_text = Style(style.button_text, help="jump preference button (text)")
# This is a map from the name of the style that is applied to
# a list of preferences that should be placed into a vbox
# with that style.
config.preferences = { }
# This is a map from preference name to that preference
# object, that can be used in rearranging preferences.
config.all_preferences = { }
# Should the soundtest button be before the volume slider?
config.soundtest_before_volume = False
def _prefs_screen_run(prefs_map):
layout.navigation("preferences")
ui.window(style='prefs_frame')
ui.fixed(style='prefs_frame_box')
for style, prefs in prefs_map.iteritems():
ui.vbox(style=style)
for i in prefs:
i.render()
ui.close()
ui.close()
ui.interact(mouse="gamemenu")
class _Preference(object):
"""
This is a class that's used to represent a multiple-choice
preference.
"""
def __init__(self, name, field, values, base=_preferences):
"""
@param name: The name of this preference. It will be
displayed to the user.
@param variable: The field on the base object
that will be assigned the selected value. This field
must exist.
@param values: A list of value name, value, condition
triples. The value name is the name of this value that
will be shown to the user. The value is the literal
python value that will be assigned if this value is
selected. The condition is a condition that will be
evaluated to determine if this is a legal value. If no
conditions are true, this preference will not be
displayed to the user. A condition of None is always
considered to be True.
@param base: The base object on which the variable is
read from and set. This defaults to _preferences,
the user preferences object.
"""
self.name = name
self.field = field
self.values = values
self.base = base
config.all_preferences[name] = self
def render(self):
values = [ (name, val) for name, val, cond in self.values
if cond is None or renpy.eval(cond) ]
if not values:
return
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_box[self.name])
layout.label(self.name, "prefs")
cur = getattr(self.base, self.field)
ui.hbox(style=style.prefs_pref_choicebox[self.name])
for name, value in values:
def clicked(value=value):
setattr(self.base, self.field, value)
return True
layout.button(name, "prefs",
selected=(cur==value),
clicked=clicked)
ui.close() # choicebox
ui.close() # vbox
class _VolumePreference(object):
"""
This represents a preference that controls one of the
volumes in the system. It is represented as a slider bar,
and a button that can be pushed to play a sample sound on
a channel.
"""
def __init__(self, name, mixer, enable='True', sound='None', channel=0):
"""
@param name: The name of this preference, as shown to the user.
@param mixer: The mixer this preference controls.
@param enable: A string giving a python expression. If
the expression is evaluates to false, this preference
is not shown.
@param sound: A string that is evaluated to yield
another string. The yielded string is expected to give
a sound file, which is played as the sample sound. (We
apologize for the convolution of this.)
@param channel: The number of the channel the sample
sound is played on.
"""
self.name = name
self.mixer = mixer
self.enable = enable
self.sound = sound
self.channel = channel
config.all_preferences[name] = self
def render(self):
if not eval(self.enable):
return
sound = eval(self.sound)
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_box[self.name])
layout.label(self.name, "prefs")
ui.vbox(style=style.prefs_volume_box[self.name])
if sound:
def clicked():
renpy.sound.play(sound, channel=self.channel)
if sound and config.soundtest_before_volume:
layout.button(u"Test", "soundtest", clicked=clicked, index=self.name)
def changed(v):
_preferences.set_volume(self.mixer, v / 128.0)
ui.bar(128,
int(_preferences.get_volume(self.mixer) * 128),
changed=changed,
style=style.prefs_volume_slider[self.name])
if sound and not config.soundtest_before_volume:
layout.button(u"Test", "soundtest", clicked=clicked, index=self.name)
ui.close()
ui.close()
class _SliderPreference(object):
"""
A class that represents a preference that is controlled by a
slider.
"""
def __init__(self, name, field, range, enable='True', base=_preferences):
"""
@param name: The name of this preference, that is shown to the user.
@param range: An integer giving the maximum value of
this slider. The slider goes from 0 to range.
@param get: A function that's called to get the
initial value of the slider. It's called with no
arguments, and should return an integet between 0 and
range, inclusive.
@param set: A function that's called when the value of
the slider is set by the user. It is called with a
single integer, in the range 0 to range, inclusive.
@param enable: A string giving a python expression. If
the expression is evaluates to false, this preference
is not shown.
"""
self.name = name
self.field = field
self.range = range
self.enable = enable
self.base = base
config.all_preferences[name] = self
def get(self):
value = getattr(self.base, self.field)
if value == 0:
value = self.range
else:
value -= 1
return value
def set(self, value):
value += 1
if value == self.range + 1:
value = 0
setattr(self.base, self.field, value)
def render(self):
if not eval(self.enable):
return
ui.window(style=style.prefs_pref_frame[self.name])
ui.vbox(style=style.prefs_pref_box[self.name])
layout.label(self.name, "prefs")
def changed(v):
self.set(v)
ui.bar(self.range,
self.get(),
changed=changed,
style=style.prefs_slider[self.name])
ui.close()
class _JumpPreference(object):
def __init__(self, name, target, condition="True", show="True"):
self.name = name
self.target = target
self.condition = condition
self.show = show
config.all_preferences[name] = self
def render(self):
if not eval(self.show):
return
ui.window(style=style.prefs_jump[self.name])
if eval(self.condition):
clicked=ui.jumps(self.target)
else:
clicked=None
layout.button(self.name, 'prefs_jump', clicked=clicked)
def _remove_preference(name):
"""
Removes the preference with the given name from the
preferences menu.
"""
pref = config.all_preferences.get(name, None)
if not pref:
return
for k, v in config.preferences.iteritems():
if pref in v:
v.remove(pref)
init python hide:
# Enablers for some preferences.
config.sample_sound = None
config.sample_voice = None
config.has_transitions = True
config.has_cps = True
config.has_afm = True
config.has_skipping = True
config.has_skip_after_choice = True
config.always_has_joystick = False
config.has_joystick = True
# Left
_Preference(u'Display', 'fullscreen', [
(u'Window', False, None),
(u'Fullscreen', True, None),
])
_Preference(u'Transitions', 'transitions', [
(u'All', 2, 'config.has_transitions'),
(u'Some', 1, 'config.has_transitions and default_transition'),
(u'None', 0, 'config.has_transitions'),
])
# Center
_Preference(u'Skip', 'skip_unseen', [
(u'Seen Messages', False, 'config.allow_skipping and config.has_skipping'),
(u'All Messages', True, 'config.allow_skipping and config.has_skipping'),
])
_JumpPreference(u'Begin Skipping',
'_return_skipping',
'not main_menu',
'config.allow_skipping and config.has_skipping')
_Preference(u'After Choices', 'skip_after_choices', [
(u'Stop Skipping', False, 'config.allow_skipping and config.has_skip_after_choice'),
(u'Keep Skipping', True, 'config.allow_skipping and config.has_skip_after_choice'),
])
config.old_names['Keep Skipping'] = 'Continue Skipping'
_SliderPreference(u'Text Speed', "text_cps", 150, 'config.has_cps')
_SliderPreference(u'Auto-Forward Time', "afm_time", 40, 'config.has_afm')
# Right
_VolumePreference(u"Music Volume",
'music',
'config.has_music')
_VolumePreference(u"Sound Volume",
'sfx',
'config.has_sound',
'config.sample_sound')
_VolumePreference(u'Voice Volume',
'voice',
'config.has_voice',
'config.sample_voice',
2)
_JumpPreference(u'Joystick...',
'joystick_preferences_screen',
'renpy.display.joystick.enabled or config.always_has_joystick',
'config.has_joystick')
+60
View File
@@ -0,0 +1,60 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python hide:
layout.provides('yesno_prompt')
# Define styles
style.yesno_frame = Style(style.menu_frame, help="frame containing a yes/no prompt and yes/no buttons")
style.yesno_frame_vbox = Style(style.vbox, help="box separating yes/no prompt from yes/no buttons")
style.yesno_prompt = Style(style.prompt, help="a yes/no prompt")
style.yesno_prompt_text = Style(style.prompt_text, help="a yes/no prompt (text)")
style.yesno_button_hbox = Style(style.hbox, help="the box separating yes and no buttons")
style.yesno_button = Style(style.button, help="a yes or no button")
style.yesno_button_text = Style(style.button_text, help="a yes or no button (text)")
# Alter styles.
style.yesno_frame.xfill = True
style.yesno_frame.xmargin = .05
style.yesno_frame.ypos = .1
style.yesno_frame.yanchor = 0
style.yesno_frame.ypadding = .05
style.yesno_frame_vbox.xalign = 0.5
style.yesno_frame_vbox.yalign = 0.5
style.yesno_frame_vbox.box_spacing = 30
style.yesno_button_hbox.xalign = 0.5
style.yesno_button_hbox.spacing = 100
style.yesno_button.size_group = "yesno"
def yesno_prompt(screen, message):
renpy.transition(config.intra_transition)
layout.navigation(screen)
ui.window(style='yesno_frame')
ui.vbox(style='yesno_frame_vbox')
layout.prompt(message, "yesno")
ui.hbox(style='yesno_button_hbox')
# The extra nulls are because we want equal whitespace surrounding
# the two buttons. It should work as long as we have xfill=True
layout.button(u"Yes", 'yesno', clicked=ui.returns(True))
layout.button(u"No", 'yesno', clicked=ui.returns(False))
ui.close()
ui.close()
rv = ui.interact(mouse="gamemenu")
renpy.transition(config.intra_transition)
return rv
layout.yesno_prompt = yesno_prompt
+72
View File
@@ -0,0 +1,72 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('main_menu')
style.mm_menu_frame = Style(style.menu_frame, help="frame containing main menu")
style.mm_outer_box = Style(style.vbox, help="outer box containing main menu buttons")
style.mm_inner_box = Style(style.hbox, help="inner box containing main menu buttons")
style.mm_button = Style(style.button, help="main menu button")
style.mm_button_text = Style(style.button_text, help="main menu button (text)")
style.mm_menu_frame.xalign = 0.5
style.mm_menu_frame.yalign = 0.98
style.mm_inner_box.xalign = 0.5
config.main_menu_per_group = 2
label main_menu_screen:
python hide:
# Ignore right-click while at the main menu.
ui.keymap(game_menu=ui.returns(None))
# Show the background.
ui.window(style='mm_root')
ui.null()
ui.frame(style='mm_menu_frame')
ui.vbox(style='mm_outer_box')
inner_open = False
for i, e in enumerate(config.main_menu):
if len(e) == 3:
label, clicked, enabled = e
shown = "True"
else:
label, clicked, enabled, shown = e
if not eval(shown):
continue
if i % config.main_menu_per_group == 0:
if inner_open:
ui.close()
ui.hbox(style='mm_inner_box')
inner_open = True
# This checks to see if clicked is a string. If so, we want clicked
# to jump us out of the current context.
if isinstance(clicked, basestring):
clicked=ui.jumpsoutofcontext(clicked)
# Create each button.
layout.button(label, "mm", enabled=eval(enabled), clicked=clicked)
if inner_open:
ui.close() # inner box
ui.close() # outer box
ui.interact(mouse="mainmenu")
return
+69
View File
@@ -0,0 +1,69 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('navigation')
style.gm_nav_frame = Style(style.menu_frame, help="game menu navigation frame")
style.gm_nav_inner_box = Style(style.hbox, help="inner box containing game menu navigation buttons")
style.gm_nav_outer_box = Style(style.vbox, help="outer box containing game menu navigation buttons")
style.gm_nav_button = Style(style.button, help="game menu navigation button")
style.gm_nav_button_text = Style(style.button_text, help="game menu navigation button (text)")
style.gm_nav_button.size_group = "gm_nav_button"
style.gm_nav_frame.xalign = 0.5
style.gm_nav_frame.ypos = 0.98
style.gm_nav_frame.yanchor = 1.0
style.gm_nav_inner_box.xalign = 0.5
config.navigation_per_group = 4
def navigation(screen=None):
# Display the game menu background
ui.window(style=style.gm_root[screen])
ui.null()
if screen is None:
return
# Display the navigation frame.
ui.frame(style='gm_nav_frame')
ui.vbox(focus='gm_nav', style='gm_nav_outer_box')
box_open = False
for i, e in enumerate(config.game_menu):
if len(e) == 4:
key, label, clicked, enabled = e
shown = "True"
else:
key, label, clicked, enabled, shown = e
if not eval(shown):
continue
if i % config.navigation_per_group == 0:
if box_open:
ui.close()
ui.hbox(style='gm_nav_inner_box')
box_open = True
layout.button(label,
"gm_nav",
selected=(screen==key),
enabled=eval(enabled),
clicked=clicked)
if box_open:
ui.close() # inner box.
ui.close() # outer box.
layout.navigation = navigation
+127
View File
@@ -0,0 +1,127 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
class _ImageMapper(object):
def __init__(self, screen, ground, idle, hover, selected_idle, selected_hover, hotspots, navigation=True, variant=None):
# If the argument is a dict, look up the screen in that dict, and
# return the result. Otherwise, just return the result.
def maybe_variant(a):
if isinstance(a, dict):
if variant in a:
return a[variant]
else:
return a[None]
return a
ground = maybe_variant(ground)
self.idle = maybe_variant(idle) or ground
self.hover = maybe_variant(hover) or self.idle
self.selected_idle = maybe_variant(selected_idle) or self.idle
self.selected_hover = maybe_variant(selected_hover) or self.hover
self.hotspots = { }
for (x1, y1, x2, y2, name) in maybe_variant(hotspots):
self.hotspots[name] = (x1, y1, x2, y2)
self.remaining_hotspots = set(self.hotspots.keys())
if navigation:
# Display the layout navigation only if there are no
# game menu buttons defined.
for i in config.game_menu:
if i[1] in self.hotspots:
break
else:
layout.navigation(screen)
ui.fixed(style='imagemap')
ui.image(ground)
if navigation:
# Display any navigation buttons that exist.
for e in config.game_menu:
screen_ = e[0]
name = e[1]
act = e[2]
enable = e[3]
if not eval(enable):
continue
self.button(name, act, screen == screen_)
def button(self, name, clicked, selected, keymap={}):
if name not in self.hotspots:
return None
self.remaining_hotspots.discard(name)
x1, y1, x2, y2 = self.hotspots[name]
if clicked is None:
return (x1, y1, x2, y2)
if selected:
idle = self.selected_idle
hover = self.selected_hover
else:
idle = self.idle
hover = self.hover
ui.imagebutton(
LiveCrop((x1, y1, (x2 - x1), (y2 - y1)), idle),
LiveCrop((x1, y1, (x2 - x1), (y2 - y1)), hover),
xpos=x1,
ypos=y1,
xanchor=0,
yanchor=0,
clicked=clicked,
focus_mask=True,
style='imagemap_button',
keymap=keymap,
)
return (x1, y1, x2, y2)
def bar(self, name, range, value, changed):
if name not in self.hotspots:
return
self.remaining_hotspots.discard(name)
x1, y1, x2, y2 = self.hotspots[name]
ui.bar(
range,
value,
changed=changed,
left_gutter=0,
right_gutter=0,
left_bar=LiveCrop((x1, y1, (x2 - x1), (y2 - y1)), self.selected_idle),
right_bar=LiveCrop((x1, y1, (x2 - x1), (y2 - y1)), self.idle),
hover_left_bar=LiveCrop((x1, y1, (x2 - x1), (y2 - y1)), self.selected_hover),
hover_right_bar=LiveCrop((x1, y1, (x2 - x1), (y2 - y1)), self.hover),
bar_resizing=False,
xpos=x1,
ypos=y1,
xmaximum=(x2-x1),
ymaximum=(y2-y1),
thumb=None,
thumb_shadow=None,
thumb_offset=0)
def nothing(self, name):
self.remaining_hotspots.discard(name)
def close(self):
ui.close()
+357
View File
@@ -0,0 +1,357 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('load_save')
renpy.load_module("_layout/imagemap_common")
# The ground image.
config.load_save_ground = { }
# The idle image.
config.load_save_idle = { }
# The hover image.
config.load_save_hover = { }
# The selected idle image.
config.load_save_selected_idle = { }
# The selected hover image.
config.load_save_selected_hover = { }
# The hotspots. Each hotspot is defined by a tuple giving:
# - The x-coordinate of the left side.
# - The y-coordinate of the top side.
# - The x-coordinate of the right side.
# - The y-coordinate of the bottoms side.
# - The name of the button or slider this is equivalent to.
config.load_save_hotspots = { }
# Define styles
style.file_picker_text = Style(style.large_button_text, help="text inside a file picker entry")
style.file_picker_empty_slot = Style(style.file_picker_text, help="text inside an empty file picker entry slot")
style.file_picker_text_window = Style(style.default, help="a window containing the file picker text.")
style.file_picker_ss_window = Style(style.default, help="a window containing the screenshot.")
# Should we disable thumbnails?
config.disable_thumbnails = False
# The default thumbnail to use when no file exists.
config.load_save_empty_thumbnail = None
# How we format time in a file entry.
config.time_format = "%b %d, %H:%M"
# How we format a file entry.
config.file_entry_format = "%(time)s\n%(save_name)s"
# True if we should prompt before loading a game.
_load_prompt = True
# This is used to store scratch data that's used by the
# library, but shouldn't be saved out as part of the savegame.
__scratch = object()
__scratch.file_picker_page = None
__scratch.initialized = False
__scratch.per_page = 0
__scratch.pages = 0
__scratch.has_autosave = False
__scratch.has_quicksave = False
def _render_savefile(ime, index, name, extra_info, screenshot, mtime, newest, clicked):
import time
(x1, y1, x2, y2) = ime.button(
"slot_%d" % index, clicked, newest,
keymap={ "save_delete" : ui.returns(("unlink", name)) })
ui.fixed(xpos=x1, ypos=y1, xmaximum=x2-x1, ymaximum=y2-y1)
if not config.disable_thumbnails:
ui.window(style=style.file_picker_ss_window[index])
ui.add(screenshot)
s = name + ". " + config.file_entry_format % dict(
time=time.strftime(config.time_format,
time.localtime(mtime)),
save_name=extra_info)
ui.window(style=style.file_picker_text_window[index])
ui.text(s, style=style.file_picker_text[index])
ui.close()
def _render_new_slot(ime, index, name, clicked):
(x1, y1, x2, y2) = ime.button("slot_%d" % index, clicked, False)
ui.fixed(xpos=x1, ypos=y1, xmaximum=x2-x1, ymaximum=y2-y1)
if not config.disable_thumbnails:
if config.load_save_empty_thumbnail:
ui.window(style=style.file_picker_ss_window[index])
ui.add(config.load_save_empty_thumbnail)
ui.window(style=style.file_picker_text_window[index])
ui.text(name + ". " + _(u"Empty Slot.") + "\n", style=style.file_picker_empty_slot[index])
ui.close()
# This function is given a page, and should map it to the names
# of the files on that page.
def _file_picker_page_files(page):
per_page = __scratch.per_page
rv = [ ]
if __scratch.has_autosave:
if page == 0:
for i in range(1, per_page + 1):
rv.append(("auto-" + str(i), _(u"a") + str(i), True))
return rv
else:
page -= 1
if __scratch.has_quicksave:
if page == 0:
for i in range(1, per_page + 1):
rv.append(("quick-" + str(i), _(u"q") + str(i), True))
return rv
else:
page -= 1
for i in range(per_page * page + 1, per_page * page + 1 + per_page):
rv.append(("%d" % i, "%d" % i, False))
return rv
# Given a filename, returns the page that filename is on.
def _file_picker_file_page(filename):
per_page = __scratch.per_page
base = 0
if __scratch.has_autosave:
if filename.startswith("auto-"):
return base
else:
base += 1
if __scratch.has_quicksave:
if filename.startswith("quick-"):
return base
else:
base += 1
return base + int((int(filename) - 1) / per_page)
# Processes a screenshot.
def _file_picker_process_screenshot(s):
return s
# Initialize the scratch information.
def _file_picker_init():
hotspots = set()
if isinstance(config.load_save_hotspots, dict):
for d in config.load_save_hotspots.values():
for (x1, y1, x2, y2, name) in d:
hotspots.add(name)
else:
for (x1, y1, x2, y2, name) in config.load_save_hotspots:
hotspots.add(name)
__scratch.has_autosave = ("page_auto" in hotspots)
__scratch.has_quicksave = ("page_quick" in hotspots)
__scratch.per_page = 0
while ("slot_%d" % __scratch.per_page) in hotspots:
__scratch.per_page += 1
__scratch.pages = 1
while ("page_%d" % __scratch.pages) in hotspots:
__scratch.pages += 1
__scratch.pages -= 1
def _file_picker_pages():
rv = [ ]
if config.has_autosave:
rv.append("page_auto")
if config.has_quicksave:
rv.append("page_quick")
for i in range(1, __scratch.pages + 1):
rv.append("page_%d" % i)
return rv
# This displays a file picker that can chose a save file from
# the list of save files.
def _file_picker(screen, save):
if not __scratch.initialized:
__scratch.initialized = True
_file_picker_init()
# The number of slots in a page.
file_page_length = __scratch.per_page
update = True
while True:
if update:
update = False
saved_games = renpy.list_saved_games(regexp=r'(auto-|quick-)?[0-9]+')
newest = None
newest_mtime = None
save_info = { }
for fn, extra_info, screenshot, mtime in saved_games:
screenshot = _file_picker_process_screenshot(screenshot)
save_info[fn] = (extra_info, screenshot, mtime)
if not fn.startswith("auto-") and mtime > newest_mtime:
newest = fn
newest_mtime = mtime
# The index of the first entry in the page.
fpp = __scratch.file_picker_page
if fpp is None:
if newest:
fpp = _file_picker_file_page(newest)
else:
fpp = _file_picker_file_page("1")
if fpp < 0:
fpp = 0
__scratch.file_picker_page = fpp
ime = _ImageMapper(
screen,
config.load_save_ground,
config.load_save_idle,
config.load_save_hover,
config.load_save_selected_idle,
config.load_save_selected_hover,
config.load_save_hotspots,
variant=screen)
def tb(enabled, label, clicked, selected):
if not enabled:
return
ime.button(label, clicked, selected)
# Previous
tb(fpp > 0, 'previous', ui.returns(("fppdelta", -1)), selected=False)
# Quick Access
for i, name in enumerate(_file_picker_pages()):
tb(True, name, ui.returns(("fppset", i)), fpp == i)
# Next
tb(True, 'next', ui.returns(("fppdelta", +1)), False)
# This draws a single slot.
def entry(name, filename, offset, ro):
clicked = ui.returns(("return", filename))
if filename not in save_info:
if (not save) or ro:
clicked = None
_render_new_slot(ime, offset, name, clicked)
else:
if save and ro:
clicked = None
extra_info, screenshot, mtime = save_info[filename]
_render_savefile(ime,
offset,
name,
extra_info,
screenshot,
mtime,
newest == filename,
clicked)
for i, (filename, name, ro) in enumerate(_file_picker_page_files(fpp)):
entry(name, filename, i, ro)
ime.close()
result = ui.interact(mouse="gamemenu")
type, value = result
if type == "unlink":
if layout.yesno_prompt(screen, layout.DELETE_SAVE):
renpy.unlink_save(value)
update = True
if type == "return":
return value
if type == "fppdelta":
fpp += value
if type == "fppset":
fpp = value
label save_screen:
python hide:
while True:
fn = _file_picker("save", True)
if renpy.can_load(fn):
if not layout.yesno_prompt("save", layout.OVERWRITE_SAVE):
continue
renpy.save(fn, extra_info=store.save_name)
label load_screen:
python hide:
while True:
fn = _file_picker("load", False)
if _load_prompt:
if not layout.yesno_prompt("load", layout.LOADING):
continue
renpy.load(fn)
init python hide:
def auto_save_extra_info():
return save_name
config.auto_save_extra_info = auto_save_extra_info
+80
View File
@@ -0,0 +1,80 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('main_menu')
renpy.load_module("_layout/imagemap_common")
# The ground image.
config.main_menu_ground = { }
# The selected/hover image.
config.main_menu_selected = { }
# The idle image.
config.main_menu_idle = { }
# The hotspots. Each hotspot is defined by a tuple giving:
# - The x-coordinate of the left side.
# - The y-coordinate of the top side.
# - The x-coordinate of the right side.
# - The y-coordinate of the bottoms side.
# - Either the (untranslated) name of the main menu button this hotspot
# is equivalent to, or, a label in the program to jump to when this
# hotspot is clicked.
config.main_menu_hotspots = { }
# This can be set from user code to define the main menu variant to use.
_main_menu_variant = None
label main_menu_screen:
python hide:
# Ignore right-click while at the main menu.
ui.keymap(game_menu=ui.returns(None))
# Show the background.
ui.window(style='mm_root')
ui.null()
ime = _ImageMapper(
None,
config.main_menu_ground,
config.main_menu_idle,
config.main_menu_selected,
config.main_menu_idle,
config.main_menu_selected,
config.main_menu_hotspots,
navigation=False,
variant=_main_menu_variant)
for e in config.main_menu:
if len(e) == 4:
name, act, enabled, shown = e
else:
name, act, enabled = e
shown = "True"
if not eval(shown):
ime.nothing(name)
if not eval(enabled):
act = None
if isinstance(act, basestring):
act = ui.jumpsoutofcontext(act)
ime.button(name, act, False)
for i in list(ime.remaining_hotspots):
ime.button(i, ui.jumpsoutofcontext(i), None)
ime.close()
ui.interact(mouse='mainmenu')
jump main_menu_screen
+85
View File
@@ -0,0 +1,85 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('navigation')
# The ground image.
config.navigation_ground = None
# The idle image.
config.navigation_idle = None
# The hover image.
config.navigation_hover = None
# The selected idle image.
config.navigation_selected_idle = None
# The selected hover image.
config.navigation_selected_hover = None
# The hotspots. Each hotspot is defined by a tuple giving:
# - The x-coordinate of the left side.
# - The y-coordinate of the top side.
# - The x-coordinate of the right side.
# - The y-coordinate of the bottoms side.
# - The name of the game menu button this is equivalent to.
config.navigation_hotspots = None
def _navigation(screen=None):
# Display the game menu background
ui.window(style=style.gm_root[screen])
ui.null()
if screen is None:
return
# A map from button name to game menu information.
gm = dict()
for e in config.game_menu:
screen_ = e[0]
name_ = e[1]
act = e[2]
enable = e[3]
gm[name_] = (screen_, act, enable)
ui.fixed(style='imagemap')
ui.image(config.navigation_ground)
for (x0, y0, x1, y1, name) in config.navigation_hotspots:
if name not in gm:
raise Exception("%r was used in a game menu hotspot, but isn't the name of a game menu button." % name)
screen_, act, enable = gm[name]
if not eval(enable):
continue
if screen_ == screen:
idle = config.navigation_selected_idle
hover = config.navigation_selected_hover
else:
idle = config.navigation_idle
hover = config.navigation_hover
ui.imagebutton(
LiveCrop((x0, y0, x1-x0, y1-y0), idle),
LiveCrop((x0, y0, x1-x0, y1-y0), hover),
clicked=act,
style='imagemap_button',
xpos=x0,
ypos=y0,
xanchor=0,
yanchor=0,
focus_mask=True,
)
ui.close()
layout.navigation = _navigation
+144
View File
@@ -0,0 +1,144 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
renpy.load_module("_layout/imagemap_common")
# The ground image.
config.preferences_ground = None
# The idle image.
config.preferences_idle = None
# The hover image.
config.preferences_hover = None
# The selected idle image.
config.preferences_selected_idle = None
# The selected hover image.
config.preferences_selected_hover = None
# The hotspots. Each hotspot is defined by a tuple giving:
# - The x-coordinate of the left side.
# - The y-coordinate of the top side.
# - The x-coordinate of the right side.
# - The y-coordinate of the bottoms side.
# - The name of the button or slider this is equivalent to.
config.preferences_hotspots = None
config.sample_sound = None
config.sample_voice = None
config.always_has_joystick = False
def __set(base, field, value):
setattr(base, field, value)
return True
__curried_set = renpy.curry(__set)
def __show_preferences():
ime = _ImageMapper(
"preferences",
config.preferences_ground,
config.preferences_idle,
config.preferences_hover,
config.preferences_selected_idle,
config.preferences_selected_hover,
config.preferences_hotspots)
def pref(name, pref, value):
ime.button(
name,
__curried_set(_preferences, pref, value),
getattr(_preferences, pref) == value)
pref("Window", "fullscreen", False)
pref("Fullscreen", "fullscreen", True)
pref("All", "transitions", 2)
pref("Some", "transitions", 1)
pref("None", "transitions", 0)
pref("Seen Messages", "skip_unseen", False)
pref("All Messages", "skip_unseen", True)
if not main_menu:
ime.button("Begin Skipping", ui.jumps("_return_skipping"), False)
pref("Stop Skipping", "skip_after_choices", False)
pref("Keep Skipping", "skip_after_choices", True)
if renpy.display.joystick.enabled or config.always_has_joystick:
ime.button("Joystick", ui.jumps("joystick_preferences_screen"), False)
def play_sound():
renpy.sound.play(config.sample_sound)
ime.button("Sound Test", play_sound, False)
def play_voice():
renpy.sound.play(config.sample_sound, channel=2)
ime.button("Voice Test", play_voice, False)
v = _preferences.text_cps
if v == 0:
v = 150
else:
v = v - 1
def set_text_cps(v):
if v == 150:
v = 0
else:
v = v + 1
_preferences.text_cps = v
ime.bar("Text Speed", 150, v, set_text_cps)
v = _preferences.afm_time
if v == 0:
v = 40
else:
v = v - 1
def set_afm_time(v):
if v == 40:
v = 0
else:
v = v + 1
_preferences.afm_time = v
ime.bar("Auto-Forward Time", 40, v, set_afm_time)
def set_music(v):
_preferences.set_volume('music', v / 128.0)
def set_sound(v):
_preferences.set_volume('sfx', v / 128.0)
def set_voice(v):
_preferences.set_volume('voice', v / 128.0)
ime.bar("Music Volume", 128, int(_preferences.get_volume('music') * 128), set_music)
ime.bar("Sound Volume", 128, int(_preferences.get_volume('sfx') * 128), set_sound)
ime.bar("Voice Volume", 128, int(_preferences.get_volume('voice') * 128), set_voice)
ime.close()
ui.interact(mouse="gamemenu")
label preferences_screen:
while True:
$ __show_preferences()
+53
View File
@@ -0,0 +1,53 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python hide:
layout.provides('yesno_prompt')
renpy.load_module("_layout/imagemap_common")
# Define styles
style.yesno_prompt = Style(style.prompt, help="a yes/no prompt")
style.yesno_prompt_text = Style(style.prompt_text, help="a yes/no prompt (text)")
# Define config variables.
config.yesno_prompt_ground = None
config.yesno_prompt_idle = None
config.yesno_prompt_hover = None
config.yesno_prompt_hotspots = None
config.yesno_prompt_message_images = { }
def yesno_prompt(screen, message):
renpy.transition(config.intra_transition)
ime = _ImageMapper(
screen,
config.yesno_prompt_ground,
config.yesno_prompt_idle,
config.yesno_prompt_hover,
config.yesno_prompt_idle,
config.yesno_prompt_hover,
config.yesno_prompt_hotspots)
ime.button("Yes", ui.returns(True), False)
ime.button("No", ui.returns(False), False)
ime.close()
default = config.yesno_prompt_message_images.get(layout.ARE_YOU_SURE, None)
message_image = config.yesno_prompt_message_images.get(message, default)
if message_image:
ui.add(message_image)
else:
layout.prompt(message, "yesno")
rv = ui.interact(mouse="gamemenu")
renpy.transition(config.intra_transition)
return rv
layout.yesno_prompt = yesno_prompt
@@ -0,0 +1,71 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
# Load the common code.
renpy.load_module("_layout/classic_preferences_common")
# Create styles.
style.prefs_column = Style(style.vbox, help="the single preferences column")
style.prefs_frame.set_parent(style.menu_frame)
style.prefs_pref_frame.set_parent(style.default)
# Adjust styles.
style.prefs_frame_box.box_layout = 'vertical'
style.prefs_frame.xalign = 0.0
style.prefs_frame.ypos = 10
style.prefs_frame.xmargin = 10
style.prefs_slider.xmaximum = 200
style.prefs_slider.xalign = 1.0
style.prefs_volume_slider.xmaximum = 200
style.prefs_volume_slider.xalign = 1.0
style.prefs_volume_box.xalign = 1.0
style.prefs_volume_box.box_layout = 'horizontal'
style.prefs_pref_box.xfill = True
style.prefs_pref_box.box_layout = 'horizontal'
style.prefs_pref_choicebox.box_layout = 'horizontal'
style.prefs_pref_choicebox.xalign = 1.0
style.prefs_jump.xfill = True
style.prefs_column.box_spacing = 5
style.soundtest_button.xalign = 1.0
style.prefs_jump_button.xalign = 1.0
config.translations["Fullscreen 16:9"] = "16:9"
config.translations["Fullscreen 16:10"] = "16:10"
config.soundtest_before_volume = True
# Place preferences into groups.
config.preferences['prefs_column'] = [
config.all_preferences[u'Display'],
config.all_preferences[u'Transitions'],
config.all_preferences[u'Skip'],
config.all_preferences[u'Begin Skipping'],
config.all_preferences[u'After Choices'],
config.all_preferences[u'Text Speed'],
config.all_preferences[u'Auto-Forward Time'],
config.all_preferences[u'Music Volume'],
config.all_preferences[u'Sound Volume'],
config.all_preferences[u'Voice Volume'],
config.all_preferences[u'Joystick...'],
]
label preferences_screen:
$ _prefs_screen_run(config.preferences)
jump preferences_screen
+236
View File
@@ -0,0 +1,236 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('load_save')
# Store some global information that won't be saved.
__session = object()
__session.scrollbar_position = None
# Should we prompt to load?
_load_prompt = True
# The number of normal save slots.
config.load_save_slots = 50
# The number of autosave slots.
config.load_save_auto_slots = 5
# The number of quicksave slots.
config.load_save_quick_slots = 5
# How we format time in a file entry.
config.time_format = "%b %d, %H:%M"
# How we format a file entry.
config.file_entry_format = "%(time)s\n%(save_name)s"
# Set the default size of thumbnails.
config.thumbnail_width = 320
config.thumbnail_height = 240
# The default empty slot thumbnail.
config.load_save_empty_thumbnail = None
# Styles.
style.file_picker_frame = Style(style.frame, help="frame containing the file picker")
style.file_picker_side = Style(style.default, help="ui.side containing the file picker and the scrollbars")
style.file_picker_viewport = Style(style.viewport, help="viewport containing the file picker entries")
style.file_picker_box = Style(style.vbox, help="box containing the file picker entries")
style.file_picker_entry = Style(style.large_button, help="the buttons containing information about each file")
style.file_picker_text = Style(style.large_button_text, help="the text inside a file picker entry.")
style.file_picker_scrollbar = Style(style.vscrollbar, help="the text inside a file picker entry.")
style.thumbnail_frame = Style(style.frame, help="the style of the frame containing a thumbnail")
# Position things correctly.
style.file_picker_frame.xmaximum = 0.5
style.file_picker_frame.xmargin = 6
style.file_picker_frame.ymargin = 6
style.file_picker_frame.yfill = True
style.file_picker_entry.xfill = True
style.file_picker_entry.yminimum = 58
style.thumbnail_frame.ymargin = 6
style.thumbnail_frame.xpos = 0.75
style.thumbnail_frame.xanchor = 0.5
def _file_picker_thumbnail(st, at):
if __session.thumbnail:
rv = __session.thumbnail
elif config.load_save_empty_thumbnail:
rv = config.load_save_empty_thumbnail
else:
rv = Null(width=config.thumbnail_width, height=config.thumbnail_height)
return rv, None
def _file_picker(screen):
while True:
@renpy.curry
def hovered(thumbnail):
if __session.thumbnail is not thumbnail:
__session.thumbnail = thumbnail
renpy.restart_interaction()
@renpy.curry
def unhovered(thumbnail):
if __session.thumbnail is thumbnail:
__session.thumbnail = None
renpy.restart_interaction()
__session.thumbnail = None
layout.navigation(screen)
newest = None
newest_time = None
info = { }
for name, extra_info, thumbnail, time in renpy.list_saved_games():
info[name] = (extra_info, thumbnail, time)
if not name[0] in "0123456789":
continue
if time > newest_time:
newest = name
newest_time = time
slots = [ ]
for i in range(1, config.load_save_slots + 1):
slots.append((str(i), str(i)))
if config.has_quicksave:
for i in range(1, config.load_save_quick_slots + 1):
slots.append(('quick-'+ str(i), _(u'q') + str(i)))
if config.has_autosave:
for i in range(1, config.load_save_auto_slots + 1):
slots.append(('auto-' + str(i), _(u'a') + str(i)))
ui.frame(style=style.file_picker_frame)
ui.side(['c', 'r'], style=style.file_picker_side)
if __session.scrollbar_position is None:
if newest is None:
yoffset = 0
else:
yoffset = 1.0 * (int(newest) - 1) / len(slots)
value = 0
else:
value = __session.scrollbar_position
yoffset = None
adj = ui.adjustment(value=value)
ui.viewport(yadjustment=adj, offsets=(0, yoffset), style=style.file_picker_viewport, mousewheel=True)
ui.vbox(style=style.file_picker_box, focus=renpy.time.time())
for i, (fn, n) in enumerate(slots):
clicked = ui.returns(("select", fn))
if screen == "save" and fn.startswith("auto-"):
clicked = None
if screen == "load" and fn not in info:
clicked = None
if fn in info:
extra_info, thumbnail, time = info[fn]
ui.button(style=style.file_picker_entry[i],
clicked=clicked,
hovered=hovered(thumbnail),
unhovered=unhovered(thumbnail),
role = "selected_" if (fn == newest) else "",
keymap = { "save_delete" : ui.returns(("unlink", fn)) },
)
s = config.file_entry_format % dict(
time=renpy.time.strftime(
config.time_format,
renpy.time.localtime(time)),
save_name=extra_info)
ui.text(n + ". " + s, style=style.file_picker_text[i])
else:
ui.button(style=style.file_picker_entry[i],
clicked=clicked,
role = "selected_" if (fn == newest) else "")
ui.text(n + ". " + _(u"Empty Slot."),
style=style.file_picker_text[i])
ui.close() # vbox/viewport
ui.bar(adjustment=adj, style=style.file_picker_scrollbar)
ui.close() # side/window
# Thumbnail.
ui.frame(style=style.thumbnail_frame)
ui.add(DynamicDisplayable(_file_picker_thumbnail))
try:
action, arg = ui.interact(mouse="gamemenu")
finally:
__session.scrollbar_position = adj.value
__session.thumbnail = None
if action == "select":
return arg
elif action == "unlink":
if layout.yesno_prompt("save", layout.DELETE_SAVE):
renpy.unlink_save(arg)
label save_screen:
python hide:
while True:
fn = _file_picker("save")
if renpy.can_load(fn):
if not layout.yesno_prompt("save", layout.OVERWRITE_SAVE):
continue
renpy.save(fn, extra_info=store.save_name)
label load_screen:
python hide:
while True:
fn = _file_picker("load")
if _load_prompt:
if not layout.yesno_prompt("load", layout.LOADING):
continue
renpy.load(fn)
init python hide:
def auto_save_extra_info():
return save_name
config.auto_save_extra_info = auto_save_extra_info
@@ -0,0 +1,81 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
# Load the common code.
renpy.load_module("_layout/classic_preferences_common")
# Create styles.
style.prefs_column = Style(style.vbox, help="columns of preferences")
style.prefs_left = Style(style.prefs_column, help="the left preference column")
style.prefs_right = Style(style.prefs_column, help="the right preference column")
style.prefs_left.xmaximum = 520
style.prefs_right.xmaximum = 250
style.prefs_left.xpos = 271
style.prefs_left.xanchor = 0.5
style.prefs_left.ypos = 10
style.prefs_right.xpos = 667
style.prefs_right.xanchor = 0.5
style.prefs_right.ypos = 10
style.prefs_slider.xmaximum = 400
style.prefs_slider.xalign = 1.0
style.prefs_volume_slider.xmaximum = 200
style.prefs_volume_slider.xalign = 1.0
style.prefs_pref_box.xfill = True
style.prefs_pref_choicebox.box_layout = 'horizontal'
style.prefs_pref_choicebox.xalign = 1.0
style.prefs_volume_box.xalign = 1.0
style.prefs_jump.xfill = True
style.prefs_column.box_spacing = 5
style.prefs_button.set_parent(style.small_button)
style.prefs_button_text.set_parent(style.small_button_text)
style.soundtest_button.xalign = 1.0
style.prefs_jump_button.xalign = 1.0
config.sample_voice = "18005551212.ogg"
config.translations["Fullscreen 16:9"] = "16:9"
config.translations["Fullscreen 16:10"] = "16:10"
# Place preferences into groups.
config.preferences['prefs_left'] = [
config.all_preferences[u'Display'],
config.all_preferences[u'Transitions'],
config.all_preferences[u'Skip'],
config.all_preferences[u'Begin Skipping'],
config.all_preferences[u'After Choices'],
config.all_preferences[u'Text Speed'],
config.all_preferences[u'Auto-Forward Time'],
]
config.preferences['prefs_right'] = [
config.all_preferences[u'Music Volume'],
config.all_preferences[u'Sound Volume'],
config.all_preferences[u'Voice Volume'],
config.all_preferences[u'Joystick...'],
]
label preferences_screen:
$ _prefs_screen_run(config.preferences)
jump preferences_screen
Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 897 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 476 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 867 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1014 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1017 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 693 B

-60
View File
@@ -1,60 +0,0 @@
# This file contains a number of definitions of standard
# locations and transitions. We've moved them into the common
# directory so that it's easy for an updated version of all of these
# definitions.
init -1:
# Positions ##############################################################
# These are positions that can be used inside at clauses. We set
# them up here so that they can be used throughout the program.
$ left = Position(xpos=0.0, xanchor='left')
$ center = Position()
$ right = Position(xpos=1.0, xanchor='right')
# Offscreen positions for use with the move transition. Images at
# these positions are still shown (and consume
# resources)... remember to hide the image after the transition.
$ offscreenleft = Position(xpos=0.0, xanchor='right')
$ offscreenright = Position(xpos=1.0, xanchor='left')
# Transitions ############################################################
# Simple transitions.
$ fade = Fade(.5, 0, .5) # Fade to black and back.
$ dissolve = Dissolve(0.5)
$ pixellate = Pixellate(1.0, 5)
# Various uses of CropMove.
$ wiperight = CropMove(1.0, "wiperight")
$ wipeleft = CropMove(1.0, "wipeleft")
$ wipeup = CropMove(1.0, "wipeup")
$ wipedown = CropMove(1.0, "wipedown")
$ slideright = CropMove(1.0, "slideright")
$ slideleft = CropMove(1.0, "slideleft")
$ slideup = CropMove(1.0, "slideup")
$ slidedown = CropMove(1.0, "slidedown")
$ slideawayright = CropMove(1.0, "slideawayright")
$ slideawayleft = CropMove(1.0, "slideawayleft")
$ slideawayup = CropMove(1.0, "slideawayup")
$ slideawaydown = CropMove(1.0, "slideawaydown")
$ irisout = CropMove(1.0, "irisout")
$ irisin = CropMove(1.0, "irisin")
# This moves changed images to their new locations
$ move = MoveTransition(0.5)
# These shake the screen up and down for a quarter second.
$ vpunch = Move((0, 10), (0, -10), .10, bounce=True, repeat=True, delay=.25)
$ hpunch = Move((15, 0), (-15, 0), .10, bounce=True, repeat=True, delay=.25)
# These use the ImageDissolve to do some nifty effects.
$ blinds = ImageDissolve(im.Tile("blindstile.png"), 1.0, 8)
$ squares = ImageDissolve(im.Tile("squarestile.png"), 1.0, 256)
image black = Solid((0, 0, 0, 255))
-437
View File
@@ -1,437 +0,0 @@
# This file contains code for the game menu, and associated
# functionality that looks an awful lot like it.
init -499:
python:
######################################################################
# First up, we define a bunch of configuration variable, which the
# user can change.
# The contents of the game menu choices.
library.game_menu = [
( "return", "Return", ui.jumps("_return"), 'True'),
( "prefs", "Preferences", ui.jumps("_prefs_screen"), 'True' ),
( "save", "Save Game", ui.jumps("_save_screen"), 'not renpy.context().main_menu' ),
( "load", "Load Game", ui.jumps("_load_screen"), 'True'),
( "mainmenu", "Main Menu", lambda : _mainmenu_prompt(), 'not renpy.context().main_menu' ),
( "quit", "Quit", lambda : _quit_prompt("quit"), 'True' ),
]
# The number of columns of files to show at once.
library.file_page_cols = 2
# The number of rows of files to show at once.
library.file_page_rows = 5
# The number of pages to add quick access buttons for.
library.file_quick_access_pages = 5
# A small amount of padding.
library.padding = 2
# The width of a thumbnail.
library.thumbnail_width = 66
# The height of a thumbnail.
library.thumbnail_height = 50
# Sound played when entering the library without clicking a
# button.
library.enter_sound = None
# Sound played when leaving the library without clicking a
# button.
library.exit_sound = None
# Transition that occurs when entering the game menu.
library.enter_transition = None
# Transition that occurs when leaving the game menu.
library.exit_transition = None
# This lets us disable the file pager. (So we only have one
# page of files.)
library.disable_file_pager = False
# This lets us disable the thumbnails in the file pager.
library.disable_thumbnails = False
# If True, we will be prompted before loading a game. (This can
# be changed from inside the game code, so that one can load from
# the first few screens but not after that.)
_load_prompt = True
######################################################################
# Next, support code.
# This is used to store scratch data that's used by the
# library, but shouldn't be saved out as part of the savegame.
_scratch = object()
# This returns a window containing the game menu navigation
# buttons, set up to jump to the appropriate screen sections.
#
# This can be overridden by user code. It's called with the
# name of the selected screen... one of "mainmenu", "prefs",
# "save", "load", or "quit", at least for the default game
# menu. If None, then it's an indication that none of the
# nav buttons should be shown.
def _game_nav(screen, buttons=True):
ui.add(renpy.Keymap(toggle_fullscreen = renpy.toggle_fullscreen))
ui.add(renpy.Keymap(game_menu=ui.jumps("_noisy_return")))
ui.window(style='gm_root_window')
ui.null()
if not screen:
return
ui.window(style='gm_nav_window')
ui.vbox(focus='gm_nav')
for key, label, clicked, enabled in library.game_menu:
disabled = False
if not eval(enabled):
disabled = True
clicked = None
_button_factory(label, "gm_nav",
selected=(key==screen),
disabled=disabled,
clicked=clicked)
ui.close()
# This is called from the game menu to interact with the
# user. It suppresses all of the underlays and overlays.
def _game_interact():
return ui.interact(suppress_underlay=True,
suppress_overlay=True)
# This renders an empty slot in the file picker.
def _render_new_slot(name, save):
if save:
clicked=ui.returns(("return", (name, False)))
enable_hover = True
else:
clicked = None
enable_hover = True
ui.button(style='file_picker_entry',
clicked=clicked,
enable_hover=enable_hover)
ui.hbox(padding=library.padding)
if not library.disable_thumbnails:
ui.null(width=library.thumbnail_width,
height=library.thumbnail_height)
ui.text(name + ". ", style='file_picker_old')
ui.text(_("Empty Slot."), style='file_picker_empty_slot')
ui.close()
# This renders a slot with a file in it, in the file picker.
def _render_savefile(name, info, newest):
image, extra = info
ui.button(style='file_picker_entry',
clicked=ui.returns(("return", (name, True))))
ui.hbox(padding=library.padding)
if not library.disable_thumbnails:
ui.add(image)
if name == newest:
ui.text(name + ". ", style='file_picker_new')
else:
ui.text(name + ". ", style='file_picker_old')
ui.text(extra, style='file_picker_extra_info')
ui.close()
_scratch.file_picker_index = None
# This displays a file picker that can chose a save file from
# the list of save files.
def _file_picker(selected, save):
# The number of slots in a page.
file_page_length = library.file_page_cols * library.file_page_rows
saves, newest = renpy.saved_games()
# The index of the first entry in the page.
fpi = _scratch.file_picker_index
if fpi is None:
fpi = 0
if newest:
fpi = (int(newest) - 1) // file_page_length * file_page_length
if fpi < 0:
fpi = 0
while True:
if fpi < 0:
fpi = 0
_scratch.file_picker_index = fpi
# Show Navigation
_game_nav(selected)
ui.window(style='file_picker_window')
ui.vbox() # whole thing.
if not library.disable_file_pager:
# Draw the navigation.
ui.hbox(padding=library.padding * 10, style='file_picker_navbox') # nav buttons.
def tb(cond, label, clicked):
_button_factory(label, "file_picker_nav", disabled=not cond, clicked=clicked)
# Previous
tb(fpi > 0, _('Previous'), ui.returns(("fpidelta", -1)))
# Quick Access
for i in range(0, library.file_quick_access_pages):
target = i * file_page_length
tb(fpi != target, str(i + 1), ui.returns(("fpiset", target)))
# Next
tb(True, _('Next'), ui.returns(("fpidelta", +1)))
# Done with nav buttons.
ui.close()
# This draws a single slot.
def entry(offset):
i = fpi + offset
name = str(i + 1)
if name not in saves:
_render_new_slot(name, save)
else:
_render_savefile(name, saves[name], newest)
# Actually draw a slot.
ui.grid(library.file_page_cols,
library.file_page_rows,
style='file_picker_grid',
transpose=True) # slots
for i in range(0, file_page_length):
entry(i)
ui.close() # slots
ui.close() # whole thing
result = _game_interact()
type, value = result
if type == "return":
return value
if type == "fpidelta":
fpi += value * file_page_length
if type == "fpiset":
fpi = value
# This renders a yes/no prompt, as part of the game menu. If
# screen is None, then it omits the game menu navigation.
def _yesno_prompt(screen, message, nav=True):
_game_nav(screen)
ui.window(style='yesno_window')
ui.vbox(library.padding * 10, xpos=0.5, xanchor='center', ypos=0.5, yanchor='center')
_label_factory(message, "yesno", xpos=0.5, xanchor='center')
ui.grid(5, 1, xfill=True)
# The extra nulls are because we want equal whitespace surrounding
# the two buttons. It should work as long as we have xfill=True
ui.null()
_button_factory("Yes", 'yesno', clicked=ui.returns(True), xpos=0.5, xanchor='center')
ui.null()
_button_factory("No", 'yesno', clicked=ui.returns(False), xpos=0.5, xanchor='center')
ui.null()
ui.close()
ui.close()
return _game_interact()
def _show_exception(title, message):
ui.window(style='error_window')
ui.vbox()
ui.text(title, style='error_title')
ui.text("")
ui.text(message, style='error_body')
ui.text("")
ui.text(_("Please click to continue."), style='error_body')
ui.close()
ui.saybehavior()
ui.interact()
def _quit_prompt(screen="quit"):
def prompt():
return _yesno_prompt(screen, "Are you sure you want to quit the game?")
if renpy.invoke_in_new_context(prompt):
renpy.quit()
else:
return
def _mainmenu_prompt(screen="mainmenu"):
def prompt():
return _yesno_prompt(screen, "Are you sure you want to return to the main menu?\nThis will end your game.")
if renpy.invoke_in_new_context(prompt):
renpy.full_restart()
else:
return
##############################################################################
# The actual menus begin around here.
# First up, we have the code that is common to all of the entry points into
# the game.
# This is the code that executes when entering a menu context.
label _enter_menu:
scene
$ renpy.movie_stop()
$ renpy.take_screenshot((library.thumbnail_width, library.thumbnail_height))
# This may be changed, if we are already in the main menu.
$ renpy.context().main_menu = False
return
# Factored this all into one place, to make our lives a bit easier.
label _enter_game_menu:
call _enter_menu from _call__enter_menu_2
if library.enter_transition:
$ renpy.transition(library.enter_transition)
if renpy.has_label("enter_game_menu"):
call expression "enter_game_menu" from _call_enter_game_menu_1
return
##############################################################################
# Now, we have the actual entry points into the various menu screens.
# Entry points from the game into menu-space.
label _game_menu:
label _game_menu_save:
call _enter_game_menu from _call__enter_game_menu_1
jump _save_screen
label _game_menu_load:
call _enter_game_menu from _call__enter_game_menu_2
jump _load_screen
label _game_menu_preferences:
call _enter_game_menu from _call__enter_game_menu_3
jump _prefs_screen
label _confirm_quit:
call _enter_menu from _call__enter_menu_3
$ _quit_prompt(None)
return
##############################################################################
# Finally, we have the actual menu screens that are shown to the user.
label _load_screen:
python hide:
fn, exists = _file_picker("load", False )
if not renpy.context().main_menu and _load_prompt:
if _yesno_prompt("load", "Loading a new game will end your current game.\nAre you sure you want to do this?"):
renpy.load(fn)
else:
renpy.load(fn)
jump _load_screen
label _save_screen:
$ _fn, _exists = _file_picker("save", True)
if not _exists or _yesno_prompt("save", "Are you sure you want to overwrite your save?"):
python hide:
if save_name:
full_save_name = "\n" + save_name
else:
full_save_name = ""
try:
renpy.save(_fn, renpy.time.strftime("%b %d, %H:%M") +
full_save_name)
except Exception, e:
if config.debug:
raise
message = ( _("The error message was:\n\n") +
e.__class__.__name__ + ": " + unicode(e) + "\n\n" +
_("You may want to try saving in a different slot, or playing for a while and trying again later."))
_show_exception(_("Save Failed."), message)
jump _save_screen
label _quit:
$ renpy.quit()
# Make some noise, then return.
label _noisy_return:
$ renpy.play(library.exit_sound)
# Return to the game.
label _return:
if renpy.context().main_menu:
jump _main_menu
if library.exit_transition:
$ renpy.transition(library.exit_transition)
return
-200
View File
@@ -1,200 +0,0 @@
# This file consists of renpy functions that aren't expected to be
# touched by the user too much. We reserve the _ prefix for names
# defined in the library.
# It's strongly reccomended that you don't edit this file, as future
# releases of Ren'Py will probably change this file to include more
# functionality.
# It's also strongly recommended that you leave this file in the
# game directory, so its functionality is included in your game.
init -500:
python:
# These are settings that the user can tweak to control the
# look of the main menu and the load/save/escape screens.
# Used to store library settings.
library = object()
# The minimum version of the module we work with. Don't change
# this unless you know what you're doing.
library.module_version = 4008002
# Should we warn the user if the module is missing or has a bad
# version?
library.module_warning = False
# Used to translate strings in the library.
library.translations = { }
# True if the skip indicator should be shown.
library.skip_indicator = True
# This is updated to give the user an idea of where a save is
# taking place.
save_name = ''
def _button_factory(label,
type=None,
selected=None,
disabled=False,
clicked=None,
**properties):
"""
This function is called to create the various buttons used
in the game menu. By overriding this function, one can
(for example) replace the default textbuttons with image buttons.
When it is called, it's expected to add a button to the screen.
@param label: The label of this button, before translation.
@param type: The type of the button. One of "mm" (main menu),
"gm_nav" (game menu), "file_picker_nav", "yesno", or "prefs".
@param selected: True if the button is selected, False if not,
or None if it doesn't matter.
@param disabled: True if the button is disabled, False if not.
@param clicked: A function that should be executed when the
button is clicked.
@param properties: Addtional layout properties.
"""
style = type
if selected and not disabled:
style += "_selected"
if disabled:
clicked = None
style = style + "_button"
text_style = style + "_text"
ui.textbutton(_(label), style=style, text_style=text_style, clicked=clicked, **properties)
def _label_factory(label, type, **properties):
"""
This function is called to create a new label. It can be
overridden by the user to change how these labels are created.
@param label: The label of the box.
@param type: "prefs" or "yesno".
@param properties: This may contain position properties.
"""
ui.text(_(label), style=type + "_label", **properties)
# The function that's used to translate strings in the game menu.
def _(s):
"""
Translates s into another language or something.
"""
if s in library.translations:
return library.translations[s]
else:
return s
# Are the windows currently hidden?
_windows_hidden = False
# Set up the default keymap.
python hide:
# Called to make a screenshot happen.
def screenshot():
renpy.screenshot("screenshot.bmp")
def invoke_game_menu():
renpy.play(library.enter_sound)
renpy.call_in_new_context('_game_menu')
def toggle_skipping():
config.skipping = not config.skipping
# The default keymap.
km = renpy.Keymap(
rollback = renpy.rollback,
screenshot = screenshot,
toggle_fullscreen = renpy.toggle_fullscreen,
toggle_music = renpy.toggle_music,
toggle_skip = toggle_skipping,
game_menu = invoke_game_menu,
hide_windows = renpy.curried_call_in_new_context("_hide_windows")
)
config.underlay = [ km ]
# The skip indicator.
python hide:
def skip_indicator():
if config.allow_skipping and library.skip_indicator:
ui.conditional("config.skipping")
ui.text(_("Skip Mode"), style='skip_indicator')
config.overlay_functions.append(skip_indicator)
return
label _hide_windows:
if _windows_hidden:
return
python:
_windows_hidden = True
ui.saybehavior()
ui.interact(suppress_overlay=True)
_windows_hidden = False
return
##############################################################################
#
# Code for the game menu.
# This code here handles check for the correct version of the Ren'Py module.
label _check_module:
if not library.module_warning:
return
python hide:
module_info = _("While Ren'Py games are playable without the _renpy module, some features may be disabled. For more information, read the module/README.txt file or go to http://www.bishoujo.us/renpy/.")
if renpy.module_version() == 0:
_show_exception(_("_renpy module not found."),
_("The _renpy module could not be loaded on your system.") + "\n\n" + module_info)
elif renpy.module_version() < library.module_version:
_show_exception(_("Old _renpy module found."),
_("An old version (%d) of the Ren'Py module was found on your system, while this game requires version %d.") % (renpy.module_version(), library.module_version) + "\n\n" + module_info)
return
# Random nice things to have.
init:
$ centered = Character(None, what_style="centered_text", window_style="centered_window")
image text = renpy.ParameterizedText(style="centered_text")
-79
View File
@@ -1,79 +0,0 @@
# This file contains code fo the main menu, and anything else that
# happens upon initial execution of a Ren'Py program.
init -498:
python hide:
# The contents of the main menu.
library.main_menu = [
( "Start Game", "start" ),
( "Continue Game", ui.jumps("_load_screen") ),
( "Preferences", ui.jumps("_prefs_screen") ),
( "Quit Game", ui.jumps("_quit") ),
]
# This is the true starting point of the program. Sssh... Don't
# tell anyone.
label _start:
call _check_module from _call__check_module_1
if renpy.has_label("splashscreen") and not _restart:
call expression "splashscreen" from _call_splashscreen_1
# Clean out any residual scene from the splashscreen.
scene
$ renpy.call_in_new_context("_enter_main_menu")
# Should never happen... but might as well do something
jump start
# At this point, we've been switched into a new context. So we
# initialize it.
label _enter_main_menu:
call _enter_menu from _call__enter_menu_1
$ renpy.context().main_menu = True
# This is called to show the main menu to the user.
label _main_menu:
# Let the user completely override the main menu. (But please note
# it still lives in the menu context, rather than the game context.)
if renpy.has_label("main_menu"):
jump expression "main_menu"
# This is the default main menu, which we get if the user hasn't
# defined his own, or if that function calls this explicitly.
label _library_main_menu:
scene
python hide:
ui.add(renpy.Keymap(toggle_fullscreen = renpy.toggle_fullscreen))
ui.keymousebehavior()
ui.window(style='mm_root_window')
ui.fixed()
ui.window(style='mm_menu_window')
ui.vbox()
for text, clicked in library.main_menu:
if isinstance(clicked, basestring):
clicked = ui.jumpsoutofcontext(clicked)
_button_factory(text, "mm", clicked=clicked)
ui.close()
ui.close()
store._result = ui.interact(suppress_overlay = True,
suppress_underlay = True)
# Computed jump to the appropriate label.
jump _main_menu
-128
View File
@@ -1,128 +0,0 @@
# This file contains code to manage the playing of music. It's here,
# in an rpy file, because we now optionally let the user override all
# of this to implement his or her own music system, using calls to
# various functions found in audio.
init -1000:
python hide:
# config.debug_sound = True
# This becomes renpy.music_start.
def music_start(filename, loops=-1, fadeout=None):
"""
This starts music playing. If a music track is already
playing, this pauses that music track in favor of this
one.
@param filename: The file that the music will be played from.
This is relative to the game directory, and must be a real
file (so it cannot be stored in an archive).
@param loops: The number of times the music will loop
after it finishes playing for the first time. This is
made somewhat less accurate by rollback and loading. If
this number is less than zero, the song will loop
forever.
@param fadeout: If this parameter is not None, it is
interpreted as a time in seconds, which gives how long
it will take to fade out the currently playing music.
"""
if loops >= 0:
loops += 1
ctx = renpy.context()
ctx._music_name = filename
ctx._music_loops = loops
if fadeout and audio.music_enabled() and not config.skipping:
audio.music_fadeout(fadeout)
def music_stop(fadeout=None):
"""
This stops the currently playing music track.
@param fadeout: If this parameter is not None, it is
interpreted as a time in seconds, which gives how long
it will take to fade out the currently playing music.
"""
ctx = renpy.context()
ctx._music_name = None
ctx._music_loops = None
if fadeout and audio.music_enabled() and not config.skipping:
audio.music_fadeout(fadeout)
renpy.music_start = music_start
renpy.music_stop = music_stop
# This is called once for each interaction, to ensure that the
# music is appropriate for that interaction.
def music_interact():
if not audio.music_enabled():
return
ctx = renpy.context()
if not hasattr(ctx, '_music_name'):
ctx._music_name = None
ctx._music_loops = None
playing, queued = audio.music_filenames()
# If music is disabled, ensure that it is stopped.
if not _preferences.music:
if playing:
audio.music_stop()
return
# If we do not match what is playing, stop what's currently
# playing and get ready to play something else.
if ctx._music_name != playing:
# If we're not playing anything, immediately start the
# new track by calling music_end_event.
if not playing:
config.music_end_event()
# Otherwise, we will start a fade to the new music if no
# such fade is already in progress, and we're not skipping.
elif not audio.music_fading() and not config.skipping:
audio.music_fadeout(config.fade_music)
# This is called whenever a track of music ends, or also from the
# above when we want to start a new track when nothing else is
# playing.
def music_end_event():
if not _preferences.music:
return
ctx = renpy.context()
playing, queued = audio.music_filenames()
if not hasattr(ctx, '_music_name'):
ctx._music_name = None
ctx._music_loops = None
if not ctx._music_name:
return
if not playing and ctx._music_loops:
ctx._music_loops -= 1
audio.music_play(ctx._music_name)
if not queued and ctx._music_loops:
ctx._music_loops -= 1
audio.music_queue(ctx._music_name)
config.interact_callbacks.append(music_interact)
config.music_end_event = music_end_event
-241
View File
@@ -1,241 +0,0 @@
# This file contains the code to implement the Ren'Py preferences
# screen.
init -450:
python:
# This is a map from the name of the style that is applied to
# a list of preferences that should be placed into a vbox
# with that style.
library.preferences = { }
class _Preference(object):
"""
This is a class that's used to represent a preference that
may be shown to the user.
"""
def __init__(self, name, field, values, base=_preferences):
"""
@param name: The name of this preference. It will be
displayed to the user.
@param variable: The field on the base object
that will be assigned the selected value. This field
must exist.
@param values: A list of value name, value, condition
triples. The value name is the name of this value that
will be shown to the user. The value is the literal
python value that will be assigned if this value is
selected. The condition is a condition that will be
evaluated to determine if this is a legal value. If no
conditions are true, this preference will not be
displayed to the user. A condition of None is always
considered to be True.
@param base: The base object on which the variable is
read from and set. This defaults to _preferences,
the user preferences object.
"""
self.name = name
self.field = field
self.values = values
self.base = base
def render_preference(self):
values = [ (name, val) for name, val, cond in self.values
if cond is None or renpy.eval(cond) ]
if not values:
return
ui.window(style='prefs_pref')
ui.vbox()
_label_factory(self.name, "prefs")
cur = getattr(self.base, self.field)
for name, value in values:
def clicked(value=value):
setattr(self.base, self.field, value)
return True
_button_factory(name, "prefs",
selected=cur==value,
clicked=clicked)
ui.close()
class _PreferenceSpinner(object):
"""
This is a class that's used to represent a preference
spinner, which is a preference that can be incremented
and decremented, when shown to the user.
"""
def __init__(self, name, field, minimum, maximum, delta,
cond = "True", render = lambda x : str(x),
base=_preferences):
"""
@param name: The name of this preference, that is presented
to the user.
@param field: The name of the field on the base object
that is updated by this spinner.
@param minimum: The minimum value that this spinner can set
the value to.
@param maximum: The maximum value that this spinner can set
the value to.
@param delta: The delta by which this spinner is
incremented or decremented.
@param cond: If this condition is not true, this spinner is
not shown.
@param render: This function is called with the value of
the field, and is expected to render that value to a
string.
@param base: The base object that this spinner updates
the field on. It defaults to _preferences, the preferences
object.
"""
self.name = name
self.field = field
self.minimum = minimum
self.maximum = maximum
self.delta = delta
self.cond = cond
self.render = render
self.base = base
def render_preference(self):
if not renpy.eval(self.cond):
return
ui.window(style='prefs_pref')
ui.vbox()
_label_factory(self.name, "prefs")
cur = getattr(self.base, self.field)
def minus_clicked():
value = cur - self.delta
value = max(self.minimum, value)
setattr(self.base, self.field, value)
return True
def plus_clicked():
value = cur + self.delta
value = min(self.maximum, value)
setattr(self.base, self.field, value)
return True
ui.hbox(style='prefs_spinner')
_button_factory("-", "prefs_spinner", clicked=minus_clicked)
_label_factory(self.render(cur), "prefs_spinner")
_button_factory("+", "prefs_spinner", clicked=plus_clicked)
ui.close()
ui.close()
python hide:
# Enablers for some preferences.
library.has_music = True
library.has_sound = True
library.has_transitions = True
library.has_cps = True
p1 = _Preference('Display', 'fullscreen', [
('Window', False, None),
('Fullscreen', True, None),
])
p2 = _Preference('Music', 'music', [
('Enabled', True, 'library.has_music'),
('Disabled', False, 'library.has_music'),
])
p3 = _Preference('Sound Effects', 'sound', [
('Enabled', True, 'library.has_sound'),
('Disabled', False, 'library.has_sound'),
])
library.preferences['prefs_left'] = [ p1, p2, p3 ]
p4 = _Preference('TAB and CTRL Skip', 'skip_unseen', [
('Seen Messages', False, 'config.allow_skipping'),
('All Messages', True, 'config.allow_skipping'),
])
p5 = _Preference('Transitions', 'transitions', [
('All', 2, 'library.has_transitions'),
('Some', 1, 'library.has_transitions and default_transition'),
('None', 0, 'library.has_transitions'),
])
# p6 = _Preference('Text Display', 'fast_text', [
# ('Fast', True, 'config.annoying_text_cps'),
# ('Slow', False, 'config.annoying_text_cps'),
# ])
def cps_render(n):
if n == 0:
return "Infinite"
else:
return str(n)
p6 = _PreferenceSpinner('Text Speed (CPS)', 'text_cps',
0, 500, 10, 'library.has_cps',
render=cps_render)
library.preferences['prefs_right'] = [ p4, p5, p6 ]
label _prefs_screen:
python hide:
_game_nav("prefs")
ui.window(style='prefs_window')
ui.fixed()
for style, prefs in library.preferences.iteritems():
ui.vbox(library.padding * 3, style=style)
for i in prefs:
i.render_preference()
ui.close()
ui.close()
_game_interact()
jump _prefs_screen
Binary file not shown.

After

Width:  |  Height:  |  Size: 606 B

-474
View File
@@ -1,474 +0,0 @@
# This file is responsible for creating and defining the default styles
# used by the system.
# This file should be considered part of the Ren'Py library, and not
# something that needs to be modified by the user. Instead, just update
# the appropriate style property in an init: block in your script.
#
# For example, to change the default window backgrounds to a
# transparent dark red, add:
#
# init:
# $ style.window.background = renpy.Solid((128, 0, 0, 128)
#
# to your script. No need to mess around here, it will just make your
# life harder when a new version of Ren'Py is released.
init -1000:
python hide:
style.create('default', None,
'The default style that all styles inherit from.')
dark_cyan = (0, 192, 255, 255)
bright_cyan = (0, 255, 255, 255)
dark_red = (255, 128, 128, 255)
bright_red = (255, 64, 64, 255)
green = (0, 128, 0, 255)
# Magic.
style.default.enable_hover = True
# Text properties.
style.default.font = "Vera.ttf"
style.default.antialias = True
style.default.size = 22
style.default.color = (255, 255, 255, 255)
style.default.bold = False
style.default.italic = False
style.default.underline = False
style.default.drop_shadow = (1, 1)
style.default.drop_shadow_color = (0, 0, 0, 128)
style.default.minwidth = 0
style.default.textalign = 0
style.default.text_y_fudge = 0
style.default.first_indent = 0
style.default.rest_indent = 0
style.default.line_spacing = 0
# Window properties.
style.default.background = None
style.default.xpadding = 0
style.default.ypadding = 0
style.default.xmargin = 0
style.default.ymargin = 0
style.default.xfill = False
style.default.yfill = False
style.default.xminimum = 0 # Includes margins and padding.
style.default.yminimum = 0 # Includes margins and padding.
# Placement properties.
style.default.xpos = 0
style.default.ypos = 0
style.default.xanchor = 'left'
style.default.yanchor = 'top'
style.default.xmaximum = None
style.default.ymaximum = None
# Sound properties.
style.default.sound = None
# The base style for the large windows.
style.create('window', 'default',
'(window, placement) The base style for the windows that contain dialogue, thoughts, and menus.')
style.window.background = Solid((0, 0, 128, 128))
style.window.xpadding = 10
style.window.ypadding = 5
style.window.xmargin = 10
style.window.ymargin = 5
style.window.xfill = True
style.window.yfill = False
style.window.xminimum = 0 # Includes margins and padding.
style.window.yminimum = 150 # Includes margins and padding.
style.window.xpos = 0.5
style.window.ypos = 1.0
style.window.xanchor = 'center'
style.window.yanchor = 'bottom'
# This style controls the default placement of images on the screen.
style.create('image_placement', 'default',
'This style is used to control the default placement of images on the screen.')
style.image_placement.xpos = 0.5
style.image_placement.ypos = 1.0
style.image_placement.xanchor = 'center'
style.image_placement.yanchor = 'bottom'
# Styles that are used for dialogue.
style.create('say_label', 'default',
"""(text) The style that is used by default for
the label of dialogue. The label is used to
indicate who is saying something.""")
style.say_label.bold = True
style.create('say_dialogue', 'default',
"""(text) The style that is used by default for
the text of dialogue.""")
style.create('say_thought', 'default',
"""(text) The label that is used by default for
the text of thoughts or narration, when no
speaker is given.""")
style.create('say_window', 'window',
'(window, position) The default style for windows containing dialogue and thoughts.')
# Styles that are used for menus.
style.create('menu', 'default',
"(position) The style that is used for the vbox containing a menu.")
style.create('menu_caption', 'default',
"(text) The style that is used to render a menu caption.")
style.create('menu_choice', 'default',
"""(text, hover) The style that is used to render
the text of a menu choice.""")
style.create('menu_choice_button', 'default',
"""(window, hover, sound) The style that is used
to render the button containing a menu choice.""")
style.menu_choice.hover_color = (255, 255, 0, 255) # yellow
style.menu_choice.activate_color = (255, 255, 0, 255) # yellow
style.menu_choice.idle_color = (0, 255, 255, 255) # cyan
style.create('menu_window', 'window',
'(window, position) The default style for windows containing a menu.')
# Styles that are used by input widgets.
style.create('input_text', 'default',
'(text) The style used for the text of an input box.')
style.input_text.color = (255, 255, 0, 255)
style.create('input_prompt', 'default',
'(text) The style used for the prompt of an input box.')
style.create('input_window', 'window',
'(window, position) The style used for the window of an input box.')
# Styles used by centered.
style.create('centered_window', 'default',
'(window) The style that is used for a "window" containing centered text.')
style.create('centered_text', 'default',
'(text) The style used for centered text.')
style.centered_window.xpos = 0.5
style.centered_window.xanchor = 'center'
style.centered_window.xfill = False
style.centered_window.ypos = 0.5
style.centered_window.yanchor = 'center'
style.centered_window.yfill = False
style.centered_window.xpadding = 10
style.centered_text.textalign = 0.5
style.centered_text.xpos = 0.5
style.centered_text.ypos = 0.5
style.centered_text.xanchor = 'center'
style.centered_text.yanchor = 'center'
# Styles that are used by imagemaps
style.create('imagemap', 'image_placement',
'(position) The style that is used for imagemaps.')
style.create('imagemap_button', 'default',
'(window, sound, hover) The style that is used for buttons inside imagemaps.')
# Styles that are used by imagebutttons.
style.create('image_button', 'default',
'(window, sound, hover) The default style used for image buttons.')
style.create('image_button_image', 'default',
'The default style used for images inside image buttons.')
# Styles that are used by all other Buttons.
style.create('button', 'default',
'(window, sound, hover) The default style used for buttons in the main and game menus.')
style.button.xpos = 0.5
style.button.xanchor = 'center'
style.create('button_text', 'default',
'(text, hover) The default style used for the label of a button.')
style.button_text.xpos = 0.5
style.button_text.xanchor = 'center'
style.button_text.size = 24
style.button_text.color = dark_cyan
style.button_text.hover_color = bright_cyan
style.button_text.activate_color = bright_cyan
style.button_text.insensitive_color = (192, 192, 192, 255)
style.button_text.drop_shadow = (2, 2)
# Selected button.
style.create('selected_button', 'button',
'(window, hover) The style that is used for a selected button (for example, the active screen or a chosen preference).')
style.create('selected_button_text', 'button_text',
'(text, hover) The style that is used for the label of a selected button.')
style.selected_button_text.color = dark_red
style.selected_button_text.hover_color = bright_red
style.selected_button_text.activate_color = bright_red
# Bar.
style.create('bar', 'default',
'(bar) The style that is used by default for bars.')
style.bar.left_bar = Solid(bright_cyan)
style.bar.right_bar = Solid((0, 0, 0, 128))
# Styles that are used when laying out the main menu.
style.create('mm_root_window', 'default',
'(window) The style used for the root window of the main menu. This is primarily used to set a background for the main menu.')
style.mm_root_window.background = Solid((0, 0, 0, 255))
style.mm_root_window.xfill = True
style.mm_root_window.yfill = True
style.create('mm_menu_window', 'default',
'(window, position) A window that contains the choices in the main menu. Change this to change the placement of these choices on the main menu screen.')
style.mm_menu_window.xpos = 0.9
style.mm_menu_window.xanchor = 'right'
style.mm_menu_window.ypos = 0.9
style.mm_menu_window.yanchor = 'bottom'
style.create('mm_button', 'button',
'(window, hover) The style that is used on buttons that are part of the main menu.')
style.create('mm_button_text', 'button_text',
'(text, hover) The style that is used for the labels of buttons that are part of the main menu.')
# Styles that are used to lay out the game menu.
style.create('gm_root_window', 'default',
'(window) The style used for the root window of the game menu. This is primarily used to change the background of the game menu.')
style.gm_root_window.background = Solid((0, 0, 0, 255))
style.gm_root_window.xfill = True
style.gm_root_window.yfill = True
style.create('gm_nav_window', 'default',
'(window, position) The style used by a window containing buttons that allow the user to navigate through the different screens of the game menu.')
style.gm_nav_window.xpos = 0.9
style.gm_nav_window.xanchor = 'right'
style.gm_nav_window.ypos = 0.95
style.gm_nav_window.yanchor = 'bottom'
style.create('gm_nav_button', 'button',
'(window, hover) The style of an unselected game menu navigation button.')
style.create('gm_nav_button_text', 'button_text',
'(text, hover) The style of the text of an unselected game menu navigation button.')
style.create('gm_nav_selected_button', 'selected_button',
'(window, hover) The style of a selected game menu navigation button.')
style.create('gm_nav_selected_button_text', 'selected_button_text',
'(text, hover) The style of the text of a selected game menu navigation button.')
style.create('file_picker_window', 'default',
'(window, position) A window containing the file picker that is used to choose slots for loading and saving.')
style.file_picker_window.xpos = 0
style.file_picker_window.xanchor = 'left'
style.file_picker_window.ypos = 0
style.file_picker_window.yanchor = 'top'
style.file_picker_window.xpadding = 5
style.create('file_picker_navbox', 'default',
'(position) The position of the naviation (next/previous) buttons in the file picker.')
style.file_picker_navbox.xmargin = 10
style.create('file_picker_nav_button', 'button',
'(window, hover) The style that is used for enabled file picker navigation buttons.')
style.create('file_picker_nav_button_text', 'button_text',
'(text) The style that is used for the label of enabled file picker navigation buttons.')
style.create('file_picker_grid', 'default',
'(position) The style of the grid containing the file picker entries.')
style.file_picker_grid.xfill = True
style.create('file_picker_entry', 'button',
'(window, hover) The style that is used for each of the slots in the file picker.')
style.file_picker_entry.xpadding = 5
style.file_picker_entry.ypadding = 2
style.file_picker_entry.xmargin = 5
style.file_picker_entry.xfill = True
style.file_picker_entry.ymargin = 2
style.file_picker_entry.background = Solid((255, 255, 255, 255))
style.file_picker_entry.hover_background = Solid((255, 255, 192, 255))
style.file_picker_entry.activate_background = Solid((255, 255, 192, 255))
style.create('file_picker_text', 'default',
'(text) A base style for all text that is displayed in the file picker.')
style.file_picker_text.size = 18
style.file_picker_text.color = dark_cyan
style.file_picker_text.hover_color = bright_cyan
style.create('file_picker_new', 'file_picker_text',
'(text) The style that is applied to the new indicator in the file picker.')
style.create('file_picker_old', 'file_picker_text',
'(text) The style that is applied to the old indicator in the file pciker.')
style.file_picker_new.hover_color = bright_red
style.file_picker_new.activate_color = bright_red
style.file_picker_new.idle_color = dark_red
style.file_picker_new.minwidth = 30
style.file_picker_old.minwidth = 30
style.create('file_picker_extra_info', 'file_picker_text',
'(text) The style that is applied to extra info in the file picker. The extra info is the save time, and the save_name if one exists.')
style.create('file_picker_empty_slot', 'file_picker_text',
'(text) The style that is used for the empty slot indicator in the file picker.')
style.create('yesno_label', 'default',
'(text, position) The style used for the prompt in a yes/no dialog.')
style.yesno_label.color = green
style.yesno_label.textalign = 0.5
style.create('yesno_button', 'button',
'(window, hover) The style of yes/no buttons.')
style.create('yesno_button_text', 'button_text',
'(window, hover) The style of yes/no button text.')
style.create('yesno_window', 'default',
'(window) The style of a window containing a yes/no dialogue.')
style.yesno_window.xfill = True
style.yesno_window.yminimum = 0.5
style.yesno_window.xmargin = .1
# Preferences
style.create('prefs_pref', 'default',
'(window, position) A window containing an individual preference.')
style.prefs_pref.xpos = 0.5
style.prefs_pref.xanchor = 'center'
style.prefs_pref.bottom_margin = 10
style.create('prefs_label', 'default',
'(text, position) The style that is applied to the label of a block of preferences.')
style.prefs_label.xpos = 0.5
style.prefs_label.xanchor = "center"
style.prefs_label.color = green
style.create('prefs_button', 'button',
'(window, hover) The style of an unselected preferences button.')
style.prefs_button.xpos = 0.5
style.prefs_button.xanchor = 'center'
style.create('prefs_button_text', 'button_text',
'(text, hover) The style of the text of an unselected preferences button.')
style.create('prefs_selected_button', 'selected_button',
'(window, hover) The style of a selected preferences button.')
style.prefs_selected_button.xpos = 0.5
style.prefs_selected_button.xanchor = 'center'
style.create('prefs_selected_button_text', 'selected_button_text',
'(text, hover) The style of the text of a selected preferences button.')
style.create('prefs_window', 'default',
'(window, position) A window containing all preferences.')
style.prefs_window.xfill=True
style.prefs_window.ypadding = 0.05
style.create('prefs_left', 'default',
'(position) The position of the left column of preferences.')
style.prefs_left.xanchor = 'center'
style.prefs_left.xpos = 0.25
style.create('prefs_right', 'default',
'(position) The position of the left column of preferences.')
style.prefs_right.xanchor = 'center'
style.prefs_right.xpos = 0.75
style.create('prefs_spinner', 'default',
'(position) The position of the prefs spinner.')
style.prefs_spinner.xpos = 0.5
style.prefs_spinner.xanchor = 'center'
style.create('prefs_spinner_label', 'prefs_label',
'(text) This is the style that displays the value of a preference spinner.')
style.prefs_spinner_label.minwidth = 100
style.prefs_spinner_label.textalign = 0.5
style.create('prefs_spinner_button', 'prefs_button',
'(window, hover) The style of the + or - buttons in a preference spinner.')
style.create('prefs_spinner_button_text', 'prefs_button_text',
'(text, hover) The style of the text of the + and - buttons in a preference spinner.')
# The skip indicator.
style.create('skip_indicator', 'default',
'(text, position) The style of the text that is used to indicate that skipping is in progress.')
style.skip_indicator.xpos = 10
style.skip_indicator.ypos = 10
# Styles used by internal error messages.
style.create('error_window', 'default',
'(window) The style of the window containing internal error messages.')
style.error_window.background = Solid((220, 220, 255, 255))
style.error_window.xfill = True
style.error_window.yfill = True
style.error_window.xpadding = 20
style.error_window.ypadding = 20
style.create('error_title', 'default',
'(text) The style of the text containing the title of an error message.')
style.error_title.color = (255, 128, 128, 255)
style.create('error_body', 'default',
'(text) The style of the body of an error message.')
style.error_body.color = (128, 128, 255, 255)
+1
View File
@@ -0,0 +1 @@
dist/console.exe
-160
View File
@@ -1,160 +0,0 @@
#!/usr/bin/env python
import os.path
import codecs
import optparse
import traceback
import os
import re
import sys
# Extra things used for distribution.
import encodings.utf_8
import encodings.zlib_codec
import encodings.unicode_escape
import encodings.string_escape
import encodings.raw_unicode_escape
dirname = os.path.dirname(sys.argv[0])
if dirname:
os.chdir(dirname)
# Add the path to the module.
sys.path.append("module")
def main():
name = os.path.basename(sys.argv[0])
if name.find(".") != -1:
name = name[:name.find(".")]
if name.find("_") != -1:
name = name[name.find("_") + 1:]
if os.path.isdir(name):
game = name
else:
game = "game"
op = optparse.OptionParser()
op.add_option('--game', dest='game', default=game,
help='The directory the game is in.')
op.add_option('--python', dest='python', default=None,
help='Run the argument in the python interpreter.')
op.add_option('--lint', dest='lint', default=False, action='store_true',
help='Run a number of expensive tests, to try to detect errors in the script.')
op.add_option('--leak', dest='leak', action='store_true', default=False,
help='When the game exits, dumps a profile of memory usage.')
options, args = op.parse_args()
if options.python:
execfile(options.python)
sys.exit(0)
if not options.lint:
import renpy.display.presplash
renpy.display.presplash.start(options.game)
# Load up all of Ren'Py, in the right order.
import renpy
try:
renpy.main.main(options.game, lint=options.lint)
except Exception, e:
f = file("traceback.txt", "wU")
f.write(codecs.BOM_UTF8)
print >>f, "I'm sorry, but an exception occured while executing your Ren'Py"
print >>f, "script."
print >>f
type, value, tb = sys.exc_info()
print >>f, type.__name__ + ":",
print >>f, unicode(e).encode('utf-8')
print >>f
print >>f, renpy.game.exception_info
print >>f
print >>f, "-- Full Traceback ------------------------------------------------------------"
print >>f
traceback.print_tb(tb, None, sys.stdout)
traceback.print_tb(tb, None, f)
print >>f, type.__name__ + ":",
print type.__name__ + ":",
print >>f, unicode(e).encode('utf-8')
print unicode(e).encode('utf-8')
print
print >>f
print renpy.game.exception_info
print >>f, renpy.game.exception_info
print >>f
print >>f, "Ren'Py Version:", renpy.version
f.close()
try:
os.startfile('traceback.txt')
except:
pass
if options.leak:
memory_profile()
sys.exit(0)
def memory_profile():
import renpy
print "Memory Profile"
print
print "Showing all objects in memory at program termination."
print
import gc
gc.collect()
objs = gc.get_objects()
c = { } # count
dead_renders = 0
for i in objs:
t = type(i)
c[t] = c.get(t, 0) + 1
if isinstance(i, renpy.display.render.Render):
if i.dead:
dead_renders += 1
results = [ (count, ty) for ty, count in c.iteritems() ]
results.sort()
for count, ty in results:
print count, str(ty)
if dead_renders:
print
print "*** found", dead_renders, "dead Renders. ***"
if __name__ == "__main__":
main()
-822
View File
@@ -1,822 +0,0 @@
#!/usr/bin/python
#
# Perforce Defect Tracking Integration Project
# <http://www.ravenbrook.com/project/p4dti/>
#
# COVERAGE.PY -- COVERAGE TESTING
#
# Gareth Rees, Ravenbrook Limited, 2001-12-04
# Ned Batchelder, 2004-12-12
# http://nedbatchelder.com/code/modules/coverage.html
#
#
# 1. INTRODUCTION
#
# This module provides coverage testing for Python code.
#
# The intended readership is all Python developers.
#
# This document is not confidential.
#
# See [GDR 2001-12-04a] for the command-line interface, programmatic
# interface and limitations. See [GDR 2001-12-04b] for requirements and
# design.
"""Usage:
coverage.py -x MODULE.py [ARG1 ARG2 ...]
Execute module, passing the given command-line arguments, collecting
coverage data.
coverage.py -e
Erase collected coverage data.
coverage.py -r [-m] FILE1 FILE2 ...
Report on the statement coverage for the given files. With the -m
option, show line numbers of the statements that weren't executed.
coverage.py -a [-d dir] FILE1 FILE2 ...
Make annotated copies of the given files, marking statements that
are executed with > and statements that are missed with !. With
the -d option, make the copies in that directory. Without the -d
option, make each copy in the same directory as the original.
Coverage data is saved in the file .coverage by default. Set the
COVERAGE_FILE environment variable to save it somewhere else."""
__version__ = "2.2.20041231" # see detailed history at the end of this file.
import compiler
import compiler.visitor
import os
import re
import string
import sys
import types
# 2. IMPLEMENTATION
#
# This uses the "singleton" pattern.
#
# The word "morf" means a module object (from which the source file can
# be deduced by suitable manipulation of the __file__ attribute) or a
# filename.
#
# When we generate a coverage report we have to canonicalize every
# filename in the coverage dictionary just in case it refers to the
# module we are reporting on. It seems a shame to throw away this
# information so the data in the coverage dictionary is transferred to
# the 'cexecuted' dictionary under the canonical filenames.
#
# The coverage dictionary is called "c" and the trace function "t". The
# reason for these short names is that Python looks up variables by name
# at runtime and so execution time depends on the length of variables!
# In the bottleneck of this application it's appropriate to abbreviate
# names to increase speed.
# A dictionary with an entry for (Python source file name, line number
# in that file) if that line has been executed.
c = {}
# t(f, x, y). This method is passed to sys.settrace as a trace
# function. See [van Rossum 2001-07-20b, 9.2] for an explanation of
# sys.settrace and the arguments and return value of the trace function.
# See [van Rossum 2001-07-20a, 3.2] for a description of frame and code
# objects.
def t(f, w, a):
if w == 'line':
c[(f.f_code.co_filename, f.f_lineno)] = 1
return t
class StatementFindingAstVisitor(compiler.visitor.ASTVisitor):
def __init__(self, statements, excluded, suite_spots):
compiler.visitor.ASTVisitor.__init__(self)
self.statements = statements
self.excluded = excluded
self.suite_spots = suite_spots
self.excluding_suite = 0
def doRecursive(self, node):
self.recordNodeLine(node)
for n in node.getChildNodes():
self.dispatch(n)
visitStmt = visitModule = doRecursive
def doCode(self, node):
if hasattr(node, 'decorators') and node.decorators:
self.dispatch(node.decorators)
self.doSuite(node, node.code)
visitFunction = visitClass = doCode
def getFirstLine(self, node):
# Find the first line in the tree node.
lineno = node.lineno
for n in node.getChildNodes():
f = self.getFirstLine(n)
if lineno and f:
lineno = min(lineno, f)
else:
lineno = lineno or f
return lineno
def getLastLine(self, node):
# Find the first line in the tree node.
lineno = node.lineno
for n in node.getChildNodes():
lineno = max(lineno, self.getLastLine(n))
return lineno
def doStatement(self, node):
self.recordLine(self.getFirstLine(node))
visitAssert = visitAssign = visitAssTuple = visitDiscard = visitPrint = \
visitPrintnl = visitRaise = visitSubscript = \
visitDecorators = \
doStatement
def recordNodeLine(self, node):
return self.recordLine(node.lineno)
def recordLine(self, lineno):
# Returns a bool, whether the line is included or excluded.
if lineno:
# Multi-line tests introducing suites have to get charged to their
# keyword.
if lineno in self.suite_spots:
lineno = self.suite_spots[lineno][0]
# If we're inside an exluded suite, record that this line was
# excluded.
if self.excluding_suite:
self.excluded[lineno] = 1
return 0
# If this line is excluded, or suite_spots maps this line to
# another line that is exlcuded, then we're excluded.
elif self.excluded.has_key(lineno) or \
self.suite_spots.has_key(lineno) and \
self.excluded.has_key(self.suite_spots[lineno][1]):
return 0
# Otherwise, this is an executable line.
else:
self.statements[lineno] = 1
return 1
return 0
default = recordNodeLine
def recordAndDispatch(self, node):
self.recordNodeLine(node)
self.dispatch(node)
def doSuite(self, intro, body, exclude=0):
exsuite = self.excluding_suite
if exclude or (intro and not self.recordNodeLine(intro)):
self.excluding_suite = 1
self.recordAndDispatch(body)
self.excluding_suite = exsuite
def doPlainWordSuite(self, prevsuite, suite):
# Finding the exclude lines for else's is tricky, because they aren't
# present in the compiler parse tree. Look at the previous suite,
# and find its last line. If any line between there and the else's
# first line are excluded, then we exclude the else.
lastprev = self.getLastLine(prevsuite)
firstelse = self.getFirstLine(suite)
for l in range(lastprev+1, firstelse):
if self.suite_spots.has_key(l):
self.doSuite(None, suite, exclude=self.excluded.has_key(l))
break
else:
self.doSuite(None, suite)
def doElse(self, prevsuite, node):
if node.else_:
self.doPlainWordSuite(prevsuite, node.else_)
def visitFor(self, node):
self.doSuite(node, node.body)
self.doElse(node.body, node)
def visitIf(self, node):
# The first test has to be handled separately from the rest.
# The first test is credited to the line with the "if", but the others
# are credited to the line with the test for the elif.
self.doSuite(node, node.tests[0][1])
for t, n in node.tests[1:]:
self.doSuite(t, n)
self.doElse(node.tests[-1][1], node)
def visitWhile(self, node):
self.doSuite(node, node.body)
self.doElse(node.body, node)
def visitTryExcept(self, node):
self.doSuite(node, node.body)
for i in range(len(node.handlers)):
a, b, h = node.handlers[i]
if not a:
# It's a plain "except:". Find the previous suite.
if i > 0:
prev = node.handlers[i-1][2]
else:
prev = node.body
self.doPlainWordSuite(prev, h)
else:
self.doSuite(a, h)
self.doElse(node.handlers[-1][2], node)
def visitTryFinally(self, node):
self.doSuite(node, node.body)
self.doPlainWordSuite(node.body, node.final)
def visitGlobal(self, node):
# "global" statements don't execute like others (they don't call the
# trace function), so don't record their line numbers.
pass
the_coverage = None
class coverage:
error = "coverage error"
# Name of the cache file (unless environment variable is set).
cache_default = ".coverage"
# Environment variable naming the cache file.
cache_env = "COVERAGE_FILE"
# A map from canonical Python source file name to a dictionary in
# which there's an entry for each line number that has been
# executed.
cexecuted = {}
# Cache of results of calling the analysis2() method, so that you can
# specify both -r and -a without doing double work.
analysis_cache = {}
# Cache of results of calling the canonical_filename() method, to
# avoid duplicating work.
canonical_filename_cache = {}
def __init__(self):
global the_coverage
if the_coverage:
raise self.error, "Only one coverage object allowed."
self.usecache = 1
self.cache = None
self.exclude_re = ''
def help(self, error=None):
if error:
print error
print
print __doc__
sys.exit(1)
def command_line(self):
import getopt
settings = {}
optmap = {
'-a': 'annotate',
'-d:': 'directory=',
'-e': 'erase',
'-h': 'help',
'-i': 'ignore-errors',
'-m': 'show-missing',
'-r': 'report',
'-x': 'execute',
}
short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '')
long_opts = optmap.values()
options, args = getopt.getopt(sys.argv[1:], short_opts,
long_opts)
for o, a in options:
if optmap.has_key(o):
settings[optmap[o]] = 1
elif optmap.has_key(o + ':'):
settings[optmap[o + ':']] = a
elif o[2:] in long_opts:
settings[o[2:]] = 1
elif o[2:] + '=' in long_opts:
settings[o[2:]] = a
else:
self.help("Unknown option: '%s'." % o)
if settings.get('help'):
self.help()
for i in ['erase', 'execute']:
for j in ['annotate', 'report']:
if settings.get(i) and settings.get(j):
self.help("You can't specify the '%s' and '%s' "
"options at the same time." % (i, j))
args_needed = (settings.get('execute')
or settings.get('annotate')
or settings.get('report'))
action = settings.get('erase') or args_needed
if not action:
self.help("You must specify at least one of -e, -x, -r, or -a.")
if not args_needed and args:
self.help("Unexpected arguments %s." % args)
self.get_ready()
self.exclude('#pragma[: ]+[nN][oO] [cC][oO][vV][eE][rR]')
if settings.get('erase'):
self.erase()
if settings.get('execute'):
if not args:
self.help("Nothing to do.")
sys.argv = args
self.start()
import __main__
sys.path[0] = os.path.dirname(sys.argv[0])
execfile(sys.argv[0], __main__.__dict__)
if not args:
args = self.cexecuted.keys()
ignore_errors = settings.get('ignore-errors')
show_missing = settings.get('show-missing')
directory = settings.get('directory=')
if settings.get('report'):
self.report(args, show_missing, ignore_errors)
if settings.get('annotate'):
self.annotate(args, directory, ignore_errors)
def use_cache(self, usecache):
self.usecache = usecache
def get_ready(self):
if self.usecache and not self.cache:
self.cache = os.environ.get(self.cache_env, self.cache_default)
self.restore()
self.analysis_cache = {}
def start(self):
self.get_ready()
sys.settrace(t)
def stop(self):
sys.settrace(None)
def erase(self):
global c
c = {}
self.analysis_cache = {}
self.cexecuted = {}
if self.cache and os.path.exists(self.cache):
os.remove(self.cache)
self.exclude_re = ''
def exclude(self, re):
if self.exclude_re:
self.exclude_re += "|"
self.exclude_re += "(" + re + ")"
# save(). Save coverage data to the coverage cache.
def save(self):
if self.usecache and self.cache:
self.canonicalize_filenames()
cache = open(self.cache, 'wb')
import marshal
marshal.dump(self.cexecuted, cache)
cache.close()
# restore(). Restore coverage data from the coverage cache (if it
# exists).
def restore(self):
global c
c = {}
self.cexecuted = {}
assert self.usecache
if not os.path.exists(self.cache):
return
try:
cache = open(self.cache, 'rb')
import marshal
cexecuted = marshal.load(cache)
cache.close()
if isinstance(cexecuted, types.DictType):
self.cexecuted = cexecuted
except:
pass
# canonical_filename(filename). Return a canonical filename for the
# file (that is, an absolute path with no redundant components and
# normalized case). See [GDR 2001-12-04b, 3.3].
def canonical_filename(self, filename):
if not self.canonical_filename_cache.has_key(filename):
f = filename
if os.path.isabs(f) and not os.path.exists(f):
f = os.path.basename(f)
if not os.path.isabs(f):
for path in [os.curdir] + sys.path:
g = os.path.join(path, f)
if os.path.exists(g):
f = g
break
cf = os.path.normcase(os.path.abspath(f))
self.canonical_filename_cache[filename] = cf
return self.canonical_filename_cache[filename]
# canonicalize_filenames(). Copy results from "executed" to
# "cexecuted", canonicalizing filenames on the way. Clear the
# "executed" map.
def canonicalize_filenames(self):
global c
for filename, lineno in c.keys():
f = self.canonical_filename(filename)
if not self.cexecuted.has_key(f):
self.cexecuted[f] = {}
self.cexecuted[f][lineno] = 1
c = {}
# morf_filename(morf). Return the filename for a module or file.
def morf_filename(self, morf):
if isinstance(morf, types.ModuleType):
if not hasattr(morf, '__file__'):
raise self.error, "Module has no __file__ attribute."
file = morf.__file__
else:
file = morf
return self.canonical_filename(file)
# analyze_morf(morf). Analyze the module or filename passed as
# the argument. If the source code can't be found, raise an error.
# Otherwise, return a tuple of (1) the canonical filename of the
# source code for the module, (2) a list of lines of statements
# in the source code, and (3) a list of lines of excluded statements.
def analyze_morf(self, morf):
if self.analysis_cache.has_key(morf):
return self.analysis_cache[morf]
filename = self.morf_filename(morf)
ext = os.path.splitext(filename)[1]
if ext == '.pyc':
if not os.path.exists(filename[0:-1]):
raise self.error, ("No source for compiled code '%s'."
% filename)
filename = filename[0:-1]
elif ext != '.py':
raise self.error, "File '%s' not Python source." % filename
source = open(filename, 'r')
lines, excluded_lines = self.find_executable_statements(
source.read(), exclude=self.exclude_re
)
source.close()
result = filename, lines, excluded_lines
self.analysis_cache[morf] = result
return result
def get_suite_spots(self, tree, spots):
import symbol, token
for i in range(1, len(tree)):
if type(tree[i]) == type(()):
if tree[i][0] == symbol.suite:
# Found a suite, look back for the colon and keyword.
lineno_colon = lineno_word = None
for j in range(i-1, 0, -1):
if tree[j][0] == token.COLON:
lineno_colon = tree[j][2]
elif tree[j][0] == token.NAME:
if tree[j][1] == 'elif':
# Find the line number of the first non-terminal
# after the keyword.
t = tree[j+1]
while t and token.ISNONTERMINAL(t[0]):
t = t[1]
if t:
lineno_word = t[2]
else:
lineno_word = tree[j][2]
break
elif tree[j][0] == symbol.except_clause:
# "except" clauses look like:
# ('except_clause', ('NAME', 'except', lineno), ...)
if tree[j][1][0] == token.NAME:
lineno_word = tree[j][1][2]
break
if lineno_colon and lineno_word:
# Found colon and keyword, mark all the lines
# between the two with the two line numbers.
for l in range(lineno_word, lineno_colon+1):
spots[l] = (lineno_word, lineno_colon)
self.get_suite_spots(tree[i], spots)
def find_executable_statements(self, text, exclude=None):
# Find lines which match an exclusion pattern.
excluded = {}
suite_spots = {}
if exclude:
reExclude = re.compile(exclude)
lines = text.split('\n')
for i in range(len(lines)):
if reExclude.search(lines[i]):
excluded[i+1] = 1
import parser
tree = parser.suite(text+'\n\n').totuple(1)
self.get_suite_spots(tree, suite_spots)
# Use the compiler module to parse the text and find the executable
# statements. We add newlines to be impervious to final partial lines.
statements = {}
ast = compiler.parse(text+'\n\n')
visitor = StatementFindingAstVisitor(statements, excluded, suite_spots)
compiler.walk(ast, visitor, walker=visitor)
lines = statements.keys()
lines.sort()
excluded_lines = excluded.keys()
excluded_lines.sort()
return lines, excluded_lines
# format_lines(statements, lines). Format a list of line numbers
# for printing by coalescing groups of lines as long as the lines
# represent consecutive statements. This will coalesce even if
# there are gaps between statements, so if statements =
# [1,2,3,4,5,10,11,12,13,14] and lines = [1,2,5,10,11,13,14] then
# format_lines will return "1-2, 5-11, 13-14".
def format_lines(self, statements, lines):
pairs = []
i = 0
j = 0
start = None
pairs = []
while i < len(statements) and j < len(lines):
if statements[i] == lines[j]:
if start == None:
start = lines[j]
end = lines[j]
j = j + 1
elif start:
pairs.append((start, end))
start = None
i = i + 1
if start:
pairs.append((start, end))
def stringify(pair):
start, end = pair
if start == end:
return "%d" % start
else:
return "%d-%d" % (start, end)
import string
return string.join(map(stringify, pairs), ", ")
# Backward compatibility with version 1.
def analysis(self, morf):
f, s, _, m, mf = self.analysis2(morf)
return f, s, m, mf
def analysis2(self, morf):
filename, statements, excluded = self.analyze_morf(morf)
self.canonicalize_filenames()
if not self.cexecuted.has_key(filename):
self.cexecuted[filename] = {}
missing = []
for line in statements:
if not self.cexecuted[filename].has_key(line):
missing.append(line)
return (filename, statements, excluded, missing,
self.format_lines(statements, missing))
def morf_name(self, morf):
if isinstance(morf, types.ModuleType):
return morf.__name__
else:
return os.path.splitext(os.path.basename(morf))[0]
def report(self, morfs, show_missing=1, ignore_errors=0):
if not isinstance(morfs, types.ListType):
morfs = [morfs]
max_name = max([5,] + map(len, map(self.morf_name, morfs)))
fmt_name = "%%- %ds " % max_name
fmt_err = fmt_name + "%s: %s"
header = fmt_name % "Name" + " Stmts Exec Cover"
fmt_coverage = fmt_name + "% 6d % 6d % 5d%%"
if show_missing:
header = header + " Missing"
fmt_coverage = fmt_coverage + " %s"
print header
print "-" * len(header)
total_statements = 0
total_executed = 0
for morf in morfs:
name = self.morf_name(morf)
try:
_, statements, _, missing, readable = self.analysis2(morf)
n = len(statements)
m = n - len(missing)
if n > 0:
pc = 100.0 * m / n
else:
pc = 100.0
args = (name, n, m, pc)
if show_missing:
args = args + (readable,)
print fmt_coverage % args
total_statements = total_statements + n
total_executed = total_executed + m
except KeyboardInterrupt:
raise
except:
if not ignore_errors:
type, msg = sys.exc_info()[0:2]
print fmt_err % (name, type, msg)
if len(morfs) > 1:
print "-" * len(header)
if total_statements > 0:
pc = 100.0 * total_executed / total_statements
else:
pc = 100.0
args = ("TOTAL", total_statements, total_executed, pc)
if show_missing:
args = args + ("",)
print fmt_coverage % args
# annotate(morfs, ignore_errors).
blank_re = re.compile("\\s*(#|$)")
else_re = re.compile("\\s*else\\s*:\\s*(#|$)")
def annotate(self, morfs, directory=None, ignore_errors=0):
for morf in morfs:
try:
filename, statements, excluded, missing, _ = self.analysis2(morf)
self.annotate_file(filename, statements, excluded, missing, directory)
except KeyboardInterrupt:
raise
except:
if not ignore_errors:
raise
def annotate_file(self, filename, statements, excluded, missing, directory=None):
source = open(filename, 'r')
if directory:
dest_file = os.path.join(directory,
os.path.basename(filename)
+ ',cover')
else:
dest_file = filename + ',cover'
dest = open(dest_file, 'w')
lineno = 0
i = 0
j = 0
covered = 1
while 1:
line = source.readline()
if line == '':
break
lineno = lineno + 1
while i < len(statements) and statements[i] < lineno:
i = i + 1
while j < len(missing) and missing[j] < lineno:
j = j + 1
if i < len(statements) and statements[i] == lineno:
covered = j >= len(missing) or missing[j] > lineno
if self.blank_re.match(line):
dest.write(' ')
elif self.else_re.match(line):
# Special logic for lines containing only
# 'else:'. See [GDR 2001-12-04b, 3.2].
if i >= len(statements) and j >= len(missing):
dest.write('! ')
elif i >= len(statements) or j >= len(missing):
dest.write('> ')
elif statements[i] == missing[j]:
dest.write('! ')
else:
dest.write('> ')
elif lineno in excluded:
dest.write('- ')
elif covered:
dest.write('> ')
else:
dest.write('! ')
dest.write(line)
source.close()
dest.close()
# Singleton object.
the_coverage = coverage()
# Module functions call methods in the singleton object.
def use_cache(*args, **kw): return the_coverage.use_cache(*args, **kw)
def start(*args, **kw): return the_coverage.start(*args, **kw)
def stop(*args, **kw): return the_coverage.stop(*args, **kw)
def erase(*args, **kw): return the_coverage.erase(*args, **kw)
def exclude(*args, **kw): return the_coverage.exclude(*args, **kw)
def analysis(*args, **kw): return the_coverage.analysis(*args, **kw)
def analysis2(*args, **kw): return the_coverage.analysis2(*args, **kw)
def report(*args, **kw): return the_coverage.report(*args, **kw)
def annotate(*args, **kw): return the_coverage.annotate(*args, **kw)
def annotate_file(*args, **kw): return the_coverage.annotate_file(*args, **kw)
# Save coverage data when Python exits. (The atexit module wasn't
# introduced until Python 2.0, so use sys.exitfunc when it's not
# available.)
try:
import atexit
atexit.register(the_coverage.save)
except ImportError:
sys.exitfunc = the_coverage.save
# Command-line interface.
if __name__ == '__main__':
the_coverage.command_line()
# A. REFERENCES
#
# [GDR 2001-12-04a] "Statement coverage for Python"; Gareth Rees;
# Ravenbrook Limited; 2001-12-04;
# <http://www.garethrees.org/2001/12/04/python-coverage/>.
#
# [GDR 2001-12-04b] "Statement coverage for Python: design and
# analysis"; Gareth Rees; Ravenbrook Limited; 2001-12-04;
# <http://www.garethrees.org/2001/12/04/python-coverage/design.html>.
#
# [van Rossum 2001-07-20a] "Python Reference Manual (releae 2.1.1)";
# Guide van Rossum; 2001-07-20;
# <http://www.python.org/doc/2.1.1/ref/ref.html>.
#
# [van Rossum 2001-07-20b] "Python Library Reference"; Guido van Rossum;
# 2001-07-20; <http://www.python.org/doc/2.1.1/lib/lib.html>.
#
#
# B. DOCUMENT HISTORY
#
# 2001-12-04 GDR Created.
#
# 2001-12-06 GDR Added command-line interface and source code
# annotation.
#
# 2001-12-09 GDR Moved design and interface to separate documents.
#
# 2001-12-10 GDR Open cache file as binary on Windows. Allow
# simultaneous -e and -x, or -a and -r.
#
# 2001-12-12 GDR Added command-line help. Cache analysis so that it
# only needs to be done once when you specify -a and -r.
#
# 2001-12-13 GDR Improved speed while recording. Portable between
# Python 1.5.2 and 2.1.1.
#
# 2002-01-03 GDR Module-level functions work correctly.
#
# 2002-01-07 GDR Update sys.path when running a file with the -x option,
# so that it matches the value the program would get if it were run on
# its own.
#
# 2004-12-12 NMB Significant code changes.
# - Finding executable statements has been rewritten so that docstrings and
# other quirks of Python execution aren't mistakenly identified as missing
# lines.
# - Lines can be excluded from consideration, even entire suites of lines.
# - The filesystem cache of covered lines can be disabled programmatically.
# - Modernized the code.
#
# 2004-12-14 NMB Minor tweaks. Return 'analysis' to its original behavior
# and add 'analysis2'. Add a global for 'annotate', and factor it, adding
# 'annotate_file'.
#
# 2004-12-31 NMB Allow for keyword arguments in the module global functions.
#
# C. COPYRIGHT AND LICENCE
#
# Copyright 2001 Gareth Rees. All rights reserved.
# Copyright 2004 Ned Batchelder. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the
# distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
# $Id: coverage.py 5 2004-12-14 12:08:23Z ned $
Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

-1384
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.
+191 -113
View File
@@ -1,160 +1,238 @@
import os.path
import os
#!/home/tom/bin/renpython -O
# Builds a distributions of Ren'Py.
import sys
import os
import zipfile
import tarfile
import time
import zlib
import compileall
import shutil
def match_times(source, dest):
zlib.Z_DEFAULT_COMPRESSION = 9
stat = os.stat(source)
os.utime(dest, (stat.st_atime, stat.st_mtime))
# Gets the data for the given file.
def data(fn):
rv = file(fn, "rb").read()
if fn.startswith("renpy.app"):
return rv
if fn.endswith(".rpy") or fn.endswith(".py") or fn.endswith(".txt"):
rv = rv.replace("\n", "\r\n")
rv = rv.replace("\r\r\n", "\r\n")
return rv
def dosify(s):
return s.replace("\n", "\r\n")
def copy_file(source, dest, license="", dos=True):
def tarup(filename, prefix, files):
print source, "->", dest
tf = tarfile.open(filename, "w:bz2")
tf.dereference = True
sf = file(source, "rb")
df = file(dest, "wb")
sys.stdout.write(filename)
sys.stdout.flush()
df.write(license)
for fn in files:
sys.stdout.write(".")
sys.stdout.flush()
tf.add(fn, prefix + "/" + fn, False)
data = sf.read()
if dest.endswith(".txt") or dest.endswith(".py") or dest.endswith(".rpy") or dest.endswith(".bat"):
if dos:
data = dosify(data)
sys.stdout.write("\n")
tf.close()
df.write(data)
# Creates a zip file.
def zipup(filename, prefix, files):
sf.close()
df.close()
zf = zipfile.ZipFile(filename, "w")
match_times(source, dest)
sys.stdout.write(filename)
sys.stdout.flush()
for fn in files:
sys.stdout.write(".")
sys.stdout.flush()
def copy_tree(source, dest, should_copy=lambda fn : True, license=""):
zi = zipfile.ZipInfo(prefix + "/" + fn)
os.makedirs(dest)
st = os.stat(fn)
for dirpath, dirnames, filenames in os.walk(source):
zi.date_time = time.gmtime(st.st_mtime)[:6]
zi.compress_type = zipfile.ZIP_DEFLATED
zi.create_system = 3
zi.external_attr = long(st.st_mode) << 16
if "/saves" in dirpath:
continue
zf.writestr(zi, data(fn))
zf.close()
if "/CVS" in dirpath:
continue
sys.stdout.write("\n")
sys.stdout.flush()
if "/.svn" in dirpath:
continue
def tree(root):
reldir = dirpath[len(source):]
dstrel = dest + "/" + reldir
rv = [ ]
for i in dirnames:
if i == "CVS":
for dirname, dirs, filenames in os.walk(root):
if "saves" in dirs:
dirs.remove("saves")
if ".svn" in dirs:
dirs.remove(".svn")
for f in filenames:
if f[-1] == '~' or f[0] == '.':
continue
if i == ".svn":
continue
os.mkdir(dstrel + "/" + i)
for i in filenames:
if not should_copy(i):
if f.endswith(".bak") or f.endswith(".pyc"):
continue
copy_file(dirpath + "/" + i, dstrel + "/" + i, license=license)
if f == "semantic.cache":
continue
if "libSDL_mixer" in f or "mixer_music" in f:
continue
rv.append(dirname + "/" + f)
return rv
def main():
target = sys.argv[1]
gamedir = sys.argv[2]
if len(sys.argv) != 2:
print "Usage: %s <prefix>" % sys.argv[0]
return
# Read license.
lf = file("LICENSE.txt")
license = "#!/usr/bin/env python\n\n"
prefix = sys.argv[1]
compileall.compile_dir("renpy/", ddir=prefix + "/renpy/", force=1)
os.environ['RENPY_PATH_ELIDE'] = '/home/tom/ab/renpy:' + prefix
# Chmod the mac app.
os.chmod("./renpy.app/Contents/MacOS/Ren'Py Launcher", 0755)
# Compile the various games
for i in [ 'tutorial/game', 'launcher', 'template/game', 'the_question/game' ]:
os.system("./renpy.sh --compile --game " + i)
for l in lf:
license += "# " + l
lf.close()
files = [ ]
more_files = [ ]
license = dosify(license)
files.append("CHANGELOG.txt")
files.append("LICENSE.txt")
files.extend(tree("common"))
more_files.append("console.exe")
files.extend(tree("launcher"))
files.extend(tree("tutorial"))
# files.extend(tree("dse"))
files.extend(tree("the_question"))
if os.path.exists(target):
raise Exception("Target exists!")
# editor = tree("editor")
# editor.remove("editor/scite.exe")
# files.append("editor/scite.exe")
# more_files.extend(editor)
# Start off with the target.
copy_tree("dist", target,
should_copy = lambda fn : fn not in [ 'traceback.txt' ] and not fn.endswith(".log"))
more_files.extend(tree("jedit"))
# files.extend(tree("extras"))
more_files.extend(tree("lib"))
more_files.extend(tree("lib/linux-x86"))
# Copy renpy modules.
copy_tree("renpy", target + "/renpy",
should_copy = lambda fn : fn.endswith(".py"),
license=license)
doc_files = [
'example.html',
'reference.html',
'style.css',
'RELEASING.txt',
module_files = [
"lib/pysdlsound/linmixer.py",
"lib/pysdlsound/__init__.py",
"core.c",
"ffdecode.c",
"IMG_savepng.c",
"IMG_savepng.h",
"mmx.h",
"pss.c",
"pss.h",
"README.txt",
"_renpy.c",
"renpy_font.c",
"renpy.h",
"_renpy.pyx",
"renpy_ttf.c",
"renpy_ttf.h",
"rwobject.c",
"setup.py",
"sound.c",
"sound.pyx",
"subpixel.c",
"winmixer.c",
"winmixer.pyx",
"_renpybidi.c",
"renpybidicore.c",
"_renpybidi.pyx",
]
# Copy doc
copy_tree("doc", target + "/doc",
should_copy = lambda fn : fn in doc_files)
for i in module_files:
files.append('module/' + i)
# Copy the game
copy_tree(gamedir, target + "/game",
should_copy = lambda fn : not fn.startswith(".") and not fn.endswith("~") and not fn.endswith(".mpg"))
more_files.append('python25.dll')
more_files.append('msvcr71.dll')
files.extend(tree('renpy'))
more_files.extend(tree('renpy.app'))
more_files.append('renpy.code')
more_files.append('renpy.exe')
files.append('renpy.py')
copy_tree("common", target + "/common",
should_copy = lambda fn : not fn.startswith(".") and not fn.endswith("~"))
more_files.append('renpy.sh')
copy_tree("dse", target + "/dse",
should_copy = lambda fn : not fn.startswith(".") and not fn.endswith("~"))
files.extend(tree('template'))
# files.extend(tree('tools'))
copy_tree("extras", target + "/extras",
should_copy = lambda fn : not fn.startswith(".") and not fn.endswith("~"))
copy_tree("scripts", target + "/scripts",
should_copy = lambda fn : not fn.startswith(".") and not fn.endswith("~"))
def cp(x, license="", dos=True):
copy_file(x, target + "/" + x, dos=dos)
cp("CHANGELOG.txt")
cp("LICENSE.txt")
cp("README_RENPY.txt")
cp("archive_images.bat")
cp("lint.bat")
cp("run_game.py", license=license)
copy_file("run_game.py", target + "/run_game.pyw", license=license)
copy_file("run_game.py", target + "/run_dse.py", license=license)
copy_file("run_game.py", target + "/run_dse.pyw", license=license)
cp("archiver.py", license=license)
# cp("build_exe.py", license=license)
cp("add_from.py", license=license)
cp("dump_text.py", license=license)
cp("renpy-mode.el")
files.append('doc/index.html')
files.append('doc/common.css')
files.append('doc/docs.css')
files.append('doc/monobook.css')
files.append('doc/monobook2.css')
files.append('doc/shared.css')
files.extend(tree('doc/reference'))
files.extend(tree('doc/tutorials'))
files.extend(tree('doc/images'))
os.mkdir(target + "/module")
files.sort()
more_files.sort()
cp("module/README.txt")
cp("module/_renpy.pyx")
cp("module/_renpy.c")
cp("module/core.c")
cp("module/renpy.h")
cp("module/setup.py")
cp("module/setup_mac.py")
cp("module/setup_win32.py")
# zipup("dists/" + prefix + "-win32.zip", prefix, files)
# print "----"
zipup("dists/" + prefix + "-sdk.zip", prefix, files + more_files)
print "----"
tarup("dists/" + prefix + "-sdk.tar.bz2", prefix, files + more_files)
tarup("dists/" + prefix + "-source.tar.bz2", prefix, files)
# Make the 7zip.
os.chdir("dists")
os.system("unzip " + prefix + "-sdk.zip")
try:
os.unlink(prefix + "-sdk.7z")
except:
pass
os.system("7z a " + prefix + "-sdk.7z " + prefix)
os.system("cat ../7z.sfx " + prefix + "-sdk.7z > " + prefix + "-sdk.7z.exe""")
shutil.rmtree(prefix)
os.unlink(prefix + "-sdk.7z")
print
print "Did you remember to rebuild the exe after the last change?"
print "Did you run me with renpython -OO?"
print "Was ming using the right crt?"
print "Did you update renpy.py and launcher/script_version.rpy?"
print "Did you run with a RENPY_SCALE_FACTOR?"
if __name__ == "__main__":
main()
-13
View File
@@ -1,13 +0,0 @@
Steps one needs to take to make a Ren'Py distro.
0) Update the documentation. (This involves dump_styles, and perhaps
copying in a new config.keymap)
1) Change the version in run_game.py
2) In cygwin, run "release.sh <version>"
3) Test run_game.exe
4) Test console.exe
8) Release.
-14
View File
@@ -1,14 +0,0 @@
Some notes about making sure things are imported in the proper order:
1) Every module should import 'renpy'.
2) It's okay for modules to 'import renpy.game as game'.
3) Those are all the imports that normal modules should do.
4) renpy/__init__.py should list all the modules in the system, a
topologically sorted order, such that if a definition in a uses
a definition in b, b comes before a. Please note that this only
considers the top level of the file.

Some files were not shown because too many files have changed in this diff Show More