Compare commits

...

182 Commits

Author SHA1 Message Date
Tom Rothamel 7e2e123af7 Bump version, update changelog. 2010-01-21 18:53:32 -05:00
Tom Rothamel 14aa4c4e3d Do not display ctc when interact=False. 2010-01-21 18:04:22 -05:00
Tom Rothamel 2c15237b8a Implement renpy.config.default_transform, but don't make it the default yet. 2010-01-21 16:54:10 -05:00
Tom Rothamel b4845252c1 Bump version. 2010-01-20 13:03:58 -05:00
Tom Rothamel 2f513235b3 The launcher now accepts a RENPY_DEFAULT_PROJECTS_DIRECTORY, which sets
the default for the projects directory, if it has not already been set 
by the user. It also will report an error when creating a project fails,
rather than producing a traceback.
2010-01-20 11:16:55 -05:00
Tom Rothamel c68b3bae89 The new voice_replay function replays the voice played on the current
interaction. The new voice_can_replay function returns True if a voice
can be replayed.
2010-01-20 01:01:24 -05:00
Tom Rothamel 3825e88883 Properly purge images from the image cache. 2010-01-20 00:10:20 -05:00
Tom Rothamel bbe0fdb98f It's now possible to assign style properties to individual imagemap
buttons, by indexing style.imagemap_button. (So for example, one could 
assign to style.imagemap_button["Start Game"].hover_sound .)
2010-01-18 22:46:56 -05:00
Tom Rothamel 009969dab5 Can't pop from a tuple. 2010-01-18 03:04:02 -05:00
Tom Rothamel 376ac7ad81 Add a link to the Ren'Py Games List to the launcher. 2010-01-17 17:07:38 -05:00
Tom Rothamel de8257f459 Ren'Py now builds zip files in distributions 64k at a time. 2010-01-14 22:03:14 -05:00
Tom Rothamel 3b0fbcc55f Previously, it was impossible to pass an arguments list to a call
expression. Now, we allow the pass keyword to be used to distinguish 
the two, using code like:

call expression foo pass (bar, baz)
2010-01-14 12:48:54 -05:00
Tom Rothamel e33abc05fb Prevent infinite looping when iterating over an object with
__getitem__ defined.
2010-01-14 11:37:59 -05:00
Tom Rothamel 430ee03d45 Bump version to 6.10.2b. 2010-01-14 00:12:46 -05:00
Tom Rothamel 03477d1c75 Fix lp:506322 - MoveTransition wouldn't work on the overlay layer, even if explicitly specified. 2010-01-13 23:20:15 -05:00
Tom Rothamel ef9ee657f7 Add cache_unpin 2010-01-12 23:48:57 -05:00
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
208 changed files with 21104 additions and 3190 deletions
+8 -4
View File
@@ -5,10 +5,6 @@ renpy.app
**/*.rpyc
**/*.rpyb
**/*.rpymc
_renpy.c
nativemidi.c
sound.c
winmixer.c
jedit
lint.txt
renpy.code
@@ -54,3 +50,11 @@ 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
+295
View File
@@ -1,3 +1,294 @@
New in Ren'Py 6.10.2
--------------------
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.
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.
The new renpy.cache_pin function pins images into memory, loading them
as soon as possible and keeping them loaded. The renpy.cache_unpin function
undoes this.
The new config.automatic_images_strip variable can strip out prefixes
when automatically defining images.
It's now possible to assign style properties to individual imagemap
buttons, by indexing style.imagemap_button. (So for example, one could
assign to style.imagemap_button["Start Game"].hover_sound .)
The new voice_replay function replays the voice played on the current
interaction. The new voice_can_replay function returns True if a voice
can be replayed.
The launcher now accepts a RENPY_DEFAULT_PROJECTS_DIRECTORY, which sets
the default for the projects directory, if it has not already been set
by the user. It also will report an error when creating a project fails,
rather than producing a traceback.
The launcher now links to the new Ren'Py Games List, at
http://games.renpy.org/.
Previously, it was impossible to pass an arguments list to a call
expression. Now, we allow the pass keyword to be used to distinguish
the two, using code like:
call expression foo pass (bar, baz)
Ren'Py will now not show the click-to-continue indicator when a
character is called with interact=False, unless that character is also
called with ctc_force=True.
Ren'Py now builds zip files in distributions 64k at a time.
Ren'Py will now ignore music files that do not exist. Previously, it
could loop trying to play them. (This would increase CPU usage, rather
than causing a crash.)
The following numbered bugs were fixed:
* lp:501351 - Displaying a Frame() with tile=True crashes
* lp:506322 - MoveTransition is not applied to overlay even when explicitly stated
In addition:
* Fixed a bug that caused pixellate to crash.
* Fixed a bug that caused the overlay to display twice in some cases.
* Fix an infinite loop that could rarely occur when rolling back or saving.
New in Ren'Py 6.10.1
--------------------
Images and other surfaces are now created with a 1px transparent border
around them. This change allows transform to work correctly with a 1:1
scale, where as previously Ren'Py would blur the image slightly, while
trying to ensure it never accessed a pixel outside of the original
image bounds.
ATL now has a "function" statement, which allows an ATL transform to
use the same functions that are supplied to Transform.
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.
The overlay semantics were changed such that transitions apply to overlays
in the same way they apply to everything else. (So, for example, dissolves
will apply to overlays.)
The image text tag can now take any textual image representation. So
something like {image=eileen happy} is legal, if odd.
The following numbered bugs were fixed:
lp:366412 - Ren'Py could crash on shift+R at the main menu, under some circumstances.
lp:485631 - The transfer of state from a transfrom to a transform supplied as part of an image didn't work.
lp:487688 - non-ASCII characters didn't display in the window title bar.
lp:487701 - Ren'Py didn't work when in a directory containing non-ASCII characters.
lp:488814 - Scaling to the same size could blur an image.
lp:489212 - Interpolation didn't work when the starting value was None.
lp:493062 - One could roll back into an imagemap main menu.
lp:494779 - The window shown state wasn't being tracked correctly.
lp:494820 - Error handling in ATL hid too many error messages.
A major bug that caused Ren'Py to fail as scaling was enabled was fixed.
A number of minor bugs revealed by pyflakes were fixed.
New in Ren'Py 6.10.0
--------------------
The demo game is in the process of being converted into a new tutorial
game, which shows recommended Ren'Py code examples rather than
requiring the user to learn from the game itself's source code.
Ren'Py now supports an Animation and Transformation language
(ATL). This provides a convenient syntax for animating an image, or
transforming it by positioning it, rotating it, zooming it, and
adjusting its opacity.
To a large extent, ATL supersedes the Animation, TransitionAnimation,
anim.SMAnimation, anim.Blink, Zoom, FactorZoom, RotoZoom, SizeZoom,
LiveCrop, Move, Pan, Position, Motion, and Revolve functions, and
perhaps others. As it allows properties to be scripted, ATL is more
powerful that all of these functions. (For example, many of these
functions can only do relatively simple repeats, while ATL allows
complex patterns to be easily specified.)
ATL can be used in the new transform statement, and new variants of
the image, scene, and show statements.
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.
The default positions (left, right, center, truecenter, offscreenleft,
and offscreenright) are now defined as ATL transforms. This means that showing
an image at such a position will cause the position to be remembered.
Support for Arabic and Hebrew has been added to Ren'Py. To enable this
support, config.rtl needs to be set to True. It may also be necessary
to set various style properties to do a credible job of right-to-left
layout.)
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.
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.
A pause statement has been added to Ren'Py.
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.
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.
The new ui.tag function allows one to specify the image tag of a UI
widget. This can have positive interactions with transforms.
Ren'Py now has a define statement, which combines into a single
statement running code at init time, and assigning it to a
variable. Ren'Py keeps track of these definitions, which may in the
future make it easier for editors to determine where something is
defined.
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.
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.
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.)
The play and queue statements now take optional loop and noloop
modifiers, which force looping (or lack of looping) on that channel.
The play statement takes an if_changed modifier, which prevents a song
from being restarted if it is already playing on the channel. [doc]
Ren'Py now allows save games to be deleted. To do this, select a save
game (either with the keyboard, or by hovering the mouse over it), and
hit delete.
Buttons now take a keymap argument, which specifies an alternate
keymap that is used when the button is focused.
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 displays the mouse coordinates, imagemap rectangle, and
cropping rectangle.
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.
Added config.file_open_callback, which allows Ren'Py to load files
from user-definable archive types.
Added the renpy.get_roll_forward function, which is the infrastructure
needed to create a button that lets the user roll forward.
Changed MoveTransition to preserve the timebases of the thing being moved
in all circumstances.
Ren'Py is now built using SDL-1.2.13. On Linux systems with pulseaudio
support, it will use pulseaudio for audio output.
Fixed a bug with archive files that could cause crashing in some
circumstances.
Fixed a bug that prevented {w=1} from working.
Fixed a bug that prevented style.rebuild from working.
Fixed a potential segfault bug with certain transforms, zooms, and
rotations.
New in Ren'Py 6.9.3
-------------------
@@ -41,6 +332,10 @@ Allow config.layer_clipping to specify layers that are larger than the
screen.
The various layouts now change the mouse to the gamemenu or mainmenu
mouse, as appropriate.
This distribution include a new NVL-mode tutorial, teaching people how
to make NVL-mode games.
+4 -2
View File
@@ -22,8 +22,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please see each individual source file for a list of copyright
holders. The pictures of Eileen in the demo are Copyright 2006
Piroshki, under the same terms.
holders. The artwork in the demo is released by various copyright
holders, under the same terms.
The Ren'Py module, the Ren'Py windows binaries, and the various Ren'Py
launchers may contain code taken from the following projects:
@@ -36,6 +37,7 @@ launchers may contain code taken from the following projects:
* SDL_mixer (LGPL)
* Freetype (LGPL)
* FFmpeg (LGPL)
* Fribidi (LGPL)
* jpeg (JPEG License)
* libpng (PNG license)
* zlib (Zlib License)
Regular → Executable
+3 -2
View File
@@ -1,4 +1,4 @@
1#!/usr/bin/env python
#!/usr/bin/env python
import collections
import glob
@@ -40,6 +40,7 @@ if __name__ == "__main__":
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")
@@ -73,7 +74,7 @@ init python:
# print "#:", v
# print "#, python-format"
print >>f, " %r," % unicode(k)
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
+15
View File
@@ -1,3 +1,6 @@
# 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
@@ -15,6 +18,18 @@ init -1210 python:
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::
+43 -14
View File
@@ -1,26 +1,53 @@
# 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:
transform reset:
alpha 1 rotate None zoom 1 xzoom 1 yzoom 1 align (0, 0) alignaround (0, 0) subpixel False size None crop None
# 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
transform default:
reset
center
python:
config.default_transform = right
init -1110 python:
_define = define = object()
# 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(xalign=0.0)
center = Position(xalign=0.5)
truecenter = Position(xalign=0.5, yalign=0.5)
right = Position(xalign=1.0)
# 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=1.0)
offscreenright = Position(xpos=1.0, xanchor=0.0)
# Transitions ############################################################
@@ -140,8 +167,6 @@ init -1110 python:
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.
@@ -165,3 +190,7 @@ init 1110 python:
if not hasattr(store, 'centered'):
centered = Character(None, what_style="centered_text", window_style="centered_window")
# This is necessary to ensure that config.default_transform works.
if config.default_transform:
config.default_transform.show()
+25 -17
View File
@@ -1,7 +1,5 @@
# Copyright 2004-2007 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1105 python:
@@ -288,13 +286,14 @@ init -1105 python hide:
@layout
def imagemap_main_menu(ground, selected, hotspots):
def imagemap_main_menu(ground, selected, hotspots, idle=None, variant=None):
renpy.load_module("_layout/imagemap_main_menu")
config.main_menu_ground = ground
config.main_menu_selected = selected
config.main_menu_hotspots = hotspots
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):
@@ -322,7 +321,7 @@ init -1105 python hide:
config.preferences_hotspots = hotspots
@layout
def imagemap_yesno_prompt(ground, idle, hover, hotspots):
def imagemap_yesno_prompt(ground, idle, hover, hotspots, prompt_images={ }):
renpy.load_module("_layout/imagemap_yesno_prompt")
@@ -330,16 +329,25 @@ init -1105 python hide:
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):
hotspots, variant=None):
renpy.load_module("_layout/imagemap_load_save")
config.load_save_ground = ground
config.load_save_idle = idle
config.load_save_hover = hover
config.load_save_selected_idle = selected_idle
config.load_save_selected_hover = selected_hover
config.load_save_hotspots = hotspots
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."
+103 -14
View File
@@ -1,7 +1,5 @@
# Copyright 2004-2007 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
# 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
@@ -49,6 +47,18 @@ init -1180 python:
# 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 = ''
@@ -330,6 +340,8 @@ label _save_reload_game:
renpy.pause(0)
renpy.save("reload", "reload save game")
renpy.music.stop()
persistent._reload_save = "reload"
ui.add(Solid((0, 0, 0, 255)))
@@ -520,6 +532,9 @@ label _enter_menu:
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.
@@ -662,9 +677,11 @@ label _start:
for i in config.start_callbacks:
i()
# call _check_module from _call__check_module_1
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:
@@ -692,18 +709,24 @@ label _start:
# Clean out any residual scene from the splashscreen.
scene black
if _restart is None:
$ renpy.transition(config.end_splash_transition)
else:
$ renpy.transition(_restart[0])
jump expression _restart[1]
# 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:
if _restart:
$ renpy.call_in_new_context(_restart[2])
else:
$ renpy.call_in_new_context("_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.
@@ -741,3 +764,69 @@ label _main_menu_screen:
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 = name[1:]
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"
+4 -6
View File
@@ -1,7 +1,5 @@
# Copyright 2008 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
# 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
@@ -31,13 +29,13 @@ init -1150 python:
label _quit_prompt:
$ renpy.loadsave.force_autosave()
if layout.yesno_prompt(None, u"Are you sure you want to quit?"):
if layout.yesno_prompt(None, layout.QUIT):
jump _quit
else:
return
label _main_menu_prompt:
if layout.yesno_prompt(None, u"Are you sure you want to return to the main menu?\nThis will lose unsaved progress."):
if layout.yesno_prompt(None, layout.MAIN_MENU):
$ renpy.full_restart(transition=config.game_main_transition)
else:
return
+3
View File
@@ -1,3 +1,6 @@
# 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.
+5
View File
@@ -1,3 +1,6 @@
# 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
@@ -255,6 +258,8 @@ init -1100 python:
return rv
NVLSpeaker = NVLCharacter
config.nvl_adv_transition = None
config.adv_nvl_transition = None
+8 -4
View File
@@ -63,15 +63,19 @@ init -1080 python:
def init_values(self, sizes):
def to_abs_(value, size):
if isinstance(value, float):
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])
@@ -122,8 +126,8 @@ init -1080 python:
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 ( int(result[0]), int(result[1]), 0, 0 )
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)
+82 -13
View File
@@ -1,3 +1,6 @@
# 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.
#
@@ -67,6 +70,8 @@ python early hide:
fadeout = "None"
fadein = "0"
channel = None
loop = None
if_changed = False
while True:
@@ -93,13 +98,27 @@ python early hide:
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)
channel=channel,
loop=loop,
if_changed=if_changed)
def execute_play_music(p):
@@ -111,7 +130,9 @@ python early hide:
renpy.music.play(eval(p["file"]),
fadeout=eval(p["fadeout"]),
fadein=eval(p["fadein"]),
channel=channel)
channel=channel,
loop=p.get("loop", None),
if_changed=p.get("if_changed", False))
def predict_play_music(p):
return [ ]
@@ -145,16 +166,26 @@ python early hide:
renpy.error("queue requires a file")
channel = None
if l.keyword('channel'):
channel = l.simple_expression()
if channel is None:
renpy.error('expected simple expression')
loop = None
while not l.eol():
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 l.keyword('loop'):
loop = True
continue
if l.keyword('noloop'):
loop = False
continue
return dict(file=file, channel=channel)
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:
@@ -162,7 +193,11 @@ python early hide:
else:
channel = 7
renpy.music.queue(eval(p["file"]), channel=channel)
renpy.music.queue(
eval(p["file"]),
channel=channel,
loop=p.get("loop", None))
renpy.statements.register('queue music',
parse=parse_queue_music,
@@ -324,7 +359,9 @@ python early hide:
lint=lint_stop_generic)
# The "window show" and "window hide" statements.
##########################################################################
# "window show" and "window hide" statements.
def parse_window(l):
p = l.simple_expression()
if not l.eol():
@@ -371,7 +408,39 @@ python early 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:
+4 -4
View File
@@ -1,7 +1,5 @@
# Copyright 2004-2008 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
# 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.
@@ -203,6 +201,8 @@ init -1090 python:
# 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))
+2 -4
View File
@@ -1,7 +1,5 @@
# Copyright 2004-2008 PyTom
#
# Please see the LICENSE.txt distributed with Ren'Py for permission to
# copy and modify.
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1110 python:
+17 -2
View File
@@ -1,3 +1,6 @@
# 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
@@ -27,15 +30,17 @@ init -1120:
_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
_last_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):
@@ -44,6 +49,14 @@ init -1120:
_voice.sustain = True
# Call this to replay the last bit of voice.
def voice_replay():
renpy.sound.play(_last_voice_play, channel=2)
# Returns true if we can replay the voice.
def voice_can_replay():
return _last_voice_play != None
python hide:
# basics: True if the game will have voice.
@@ -58,8 +71,10 @@ init -1120:
if _voice.play and not config.skipping:
renpy.sound.play(_voice.play, channel=2)
store._last_voice_play = _voice.play
elif not _voice.sustain:
renpy.sound.stop(channel=2)
store._last_voice_play = _voice.play
_voice.play = None
_voice.sustain = False
Binary file not shown.
+3 -2
View File
@@ -1,4 +1,5 @@
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below)
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
------------------------------
@@ -95,4 +96,4 @@ dealings in this Font Software without prior written authorization
from Tavmjong Bah. For further information, contact: tavmjong @ free
. fr.
$Id: LICENSE 778 2006-04-20 18:14:24Z moyogo $
$Id: LICENSE 2133 2007-11-28 02:46:28Z lechimp $
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
######################################################################
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init:
python:
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2008 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init -1170 python hide:
config.old_names['Quit'] = 'Quit Game'
+3
View File
@@ -1,3 +1,6 @@
# 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
+3
View File
@@ -1,3 +1,6 @@
# 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.')
+3
View File
@@ -1,3 +1,6 @@
# 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
+191 -11
View File
@@ -1,10 +1,6 @@
# Entry point for the developer console.
label _developer:
if not config.developer:
return
call _enter_menu from _call__enter_menu_4
# This file contains the developer screen, which contains tools that might
# be of interest to people making Ren'Py games.
label _developer_screen:
@@ -19,11 +15,13 @@ label _developer_screen:
sg = "developer_menu"
layout.button("Return", None, clicked=ui.returns(True), size_group=sg)
layout.button("Reload Game (Shift+R)", None, clicked=ui.callsinnewcontext("_save_reload_game"), size_group=sg)
layout.button("Variable Viewer", None, clicked=ui.jumps("_debugger_screen"), size_group=sg)
layout.button("Theme Test", None, clicked=ui.jumps("_theme_test"), size_group=sg)
layout.button("Style Hierarchy", None, clicked=ui.jumps("_style_hierarchy"), size_group=sg)
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()
@@ -287,3 +285,185 @@ init 1050 python:
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")
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('joystick_preferences')
@@ -75,7 +78,7 @@ init python:
ui.close()
_joystick_get_binding()
binding = ui.interact()
binding = ui.interact(mouse="gamemenu")
_joystick_take_binding(binding, key)
return True
@@ -100,7 +103,7 @@ label joystick_preferences_screen:
python:
layout.navigation("joystick_preferences")
_joystick_preferences()
ui.interact()
ui.interact(mouse="gamemenu")
+51 -32
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('load_save')
@@ -73,7 +76,9 @@ init python:
ui.button(style=style.file_picker_entry[index],
clicked=clicked,
role=("selected_" if newest else ""))
role=("selected_" if newest else ""),
keymap={ "save_delete" : ui.returns(("unlink", name)) }
)
ui.hbox(style=style.file_picker_entry_box[index])
@@ -193,36 +198,45 @@ init python:
# the list of save files.
def _file_picker(screen, 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
# 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")
# 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
@@ -291,9 +305,14 @@ init python:
ui.close() # slots
ui.close() # whole thing
result = ui.interact()
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
@@ -311,7 +330,7 @@ label save_screen:
fn = _file_picker("save", True)
if renpy.can_load(fn):
if not layout.yesno_prompt("save", u"Are you sure you want to overwrite your save?"):
if not layout.yesno_prompt("save", layout.OVERWRITE_SAVE):
continue
renpy.save(fn, extra_info=store.save_name)
@@ -325,7 +344,7 @@ label load_screen:
fn = _file_picker("load", False)
if _load_prompt:
if not layout.yesno_prompt("load", u"Loading will lose unsaved progress.\nAre you sure you want to do this?"):
if not layout.yesno_prompt("load", layout.LOADING):
continue
renpy.load(fn)
+4 -1
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('main_menu')
@@ -50,7 +53,7 @@ label main_menu_screen:
ui.close()
ui.interact()
ui.interact(mouse="mainmenu")
return
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('navigation')
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
# Styles
@@ -54,7 +57,7 @@ init python:
ui.close()
ui.interact()
ui.interact(mouse="gamemenu")
class _Preference(object):
"""
+4 -1
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python hide:
layout.provides('yesno_prompt')
@@ -49,7 +52,7 @@ init python hide:
ui.close()
ui.close()
rv = ui.interact()
rv = ui.interact(mouse="gamemenu")
renpy.transition(config.intra_transition)
return rv
+4 -1
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('main_menu')
@@ -62,7 +65,7 @@ label main_menu_screen:
ui.close() # outer box
ui.interact()
ui.interact(mouse="mainmenu")
return
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('navigation')
+52 -23
View File
@@ -1,46 +1,69 @@
# 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):
def __init__(self, screen, ground, idle, hover, selected_idle, selected_hover, hotspots, navigation=True, variant=None):
self.idle = idle
self.hover = hover
self.selected_idle = selected_idle
self.selected_hover = selected_hover
# 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 hotspots:
for (x1, y1, x2, y2, name) in maybe_variant(hotspots):
self.hotspots[name] = (x1, y1, x2, y2)
# 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)
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]
# 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
if not eval(enable):
continue
self.button(name, act, screen == screen_)
self.button(name, act, screen == screen_)
def button(self, name, clicked, selected):
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:
@@ -63,6 +86,7 @@ init python:
clicked=clicked,
focus_mask=True,
style='imagemap_button',
keymap=keymap,
)
return (x1, y1, x2, y2)
@@ -73,6 +97,8 @@ init python:
if name not in self.hotspots:
return
self.remaining_hotspots.discard(name)
x1, y1, x2, y2 = self.hotspots[name]
ui.bar(
@@ -93,6 +119,9 @@ init python:
thumb=None,
thumb_shadow=None,
thumb_offset=0)
def nothing(self, name):
self.remaining_hotspots.discard(name)
def close(self):
ui.close()
+60 -37
View File
@@ -1,22 +1,25 @@
# 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 = None
config.load_save_ground = { }
# The idle image.
config.load_save_idle = None
config.load_save_idle = { }
# The hover image.
config.load_save_hover = None
config.load_save_hover = { }
# The selected idle image.
config.load_save_selected_idle = None
config.load_save_selected_idle = { }
# The selected hover image.
config.load_save_selected_hover = None
config.load_save_selected_hover = { }
# The hotspots. Each hotspot is defined by a tuple giving:
# - The x-coordinate of the left side.
@@ -24,7 +27,7 @@ init python:
# - 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 = None
config.load_save_hotspots = { }
# Define styles
style.file_picker_text = Style(style.large_button_text, help="text inside a file picker entry")
@@ -61,7 +64,9 @@ init python:
import time
(x1, y1, x2, y2) = ime.button("slot_%d" % index, clicked, newest)
(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)
@@ -157,8 +162,13 @@ init python:
hotspots = set()
for (x1, y1, x2, y2, name) in config.load_save_hotspots:
hotspots.add(name)
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)
@@ -202,32 +212,39 @@ init python:
# The number of slots in a page.
file_page_length = __scratch.per_page
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")
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
@@ -240,7 +257,8 @@ init python:
config.load_save_hover,
config.load_save_selected_idle,
config.load_save_selected_hover,
config.load_save_hotspots)
config.load_save_hotspots,
variant=screen)
def tb(enabled, label, clicked, selected):
@@ -289,9 +307,14 @@ init python:
ime.close()
result = ui.interact()
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
@@ -309,7 +332,7 @@ label save_screen:
fn = _file_picker("save", True)
if renpy.can_load(fn):
if not layout.yesno_prompt("save", u"Are you sure you want to overwrite your save?"):
if not layout.yesno_prompt("save", layout.OVERWRITE_SAVE):
continue
renpy.save(fn, extra_info=store.save_name)
@@ -322,7 +345,7 @@ label load_screen:
fn = _file_picker("load", False)
if _load_prompt:
if not layout.yesno_prompt("load", u"Loading will lose unsaved progress.\nAre you sure you want to do this?"):
if not layout.yesno_prompt("load", layout.LOADING):
continue
renpy.load(fn)
+45 -20
View File
@@ -1,13 +1,20 @@
# 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 = None
config.main_menu_ground = { }
# The selected image.
config.main_menu_selected = None
# 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.
@@ -16,7 +23,10 @@ init python:
# - 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 = [ ]
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:
@@ -28,27 +38,42 @@ label main_menu_screen:
# Show the background.
ui.window(style='mm_root')
ui.null()
rv = renpy.imagemap(
ime = _ImageMapper(
None,
config.main_menu_ground,
config.main_menu_idle,
config.main_menu_selected,
config.main_menu_hotspots)
for e in config.main_menu:
name = e[0]
act = e[1]
enable = e[2]
config.main_menu_idle,
config.main_menu_selected,
config.main_menu_hotspots,
navigation=False,
variant=_main_menu_variant)
if name == rv:
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 isinstance(act, basestring):
act = ui.jumpsoutofcontext(act)
act()
if not eval(enabled):
act = None
break
else:
ui.jumpsoutofcontext(rv)()
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
+3
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('navigation')
+4 -1
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
@@ -127,7 +130,7 @@ init python:
ime.bar("Voice Volume", 128, int(_preferences.get_volume('voice') * 128), set_voice)
ime.close()
ui.interact()
ui.interact(mouse="gamemenu")
label preferences_screen:
+17 -5
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python hide:
layout.provides('yesno_prompt')
@@ -8,15 +11,18 @@ init python hide:
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)")
# Configuration variables
# 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_hotspots = None
config.yesno_prompt_message_images = { }
def yesno_prompt(screen, message):
renpy.transition(config.intra_transition)
ime = _ImageMapper(
screen,
config.yesno_prompt_ground,
@@ -31,9 +37,15 @@ init python hide:
ime.close()
layout.prompt(message, "yesno")
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()
rv = ui.interact(mouse="gamemenu")
renpy.transition(config.intra_transition)
return rv
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
+128 -116
View File
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('load_save')
@@ -69,125 +72,134 @@ init python:
def _file_picker(screen):
@renpy.curry
def hovered(thumbnail):
if __session.thumbnail is not thumbnail:
__session.thumbnail = thumbnail
renpy.restart_interaction()
while True:
@renpy.curry
def unhovered(thumbnail):
if __session.thumbnail is thumbnail:
__session.thumbnail = None
renpy.restart_interaction()
@renpy.curry
def hovered(thumbnail):
if __session.thumbnail is not thumbnail:
__session.thumbnail = thumbnail
renpy.restart_interaction()
__session.thumbnail = None
layout.navigation(screen)
newest = None
newest_time = None
@renpy.curry
def unhovered(thumbnail):
if __session.thumbnail is thumbnail:
__session.thumbnail = None
renpy.restart_interaction()
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(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 "")
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:
rv = ui.interact()
finally:
__session.scrollbar_position = adj.value
__session.thumbnail = None
return rv
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:
@@ -197,7 +209,7 @@ label save_screen:
fn = _file_picker("save")
if renpy.can_load(fn):
if not layout.yesno_prompt("save", u"Are you sure you want to overwrite your save?"):
if not layout.yesno_prompt("save", layout.OVERWRITE_SAVE):
continue
renpy.save(fn, extra_info=store.save_name)
@@ -211,7 +223,7 @@ label load_screen:
fn = _file_picker("load")
if _load_prompt:
if not layout.yesno_prompt("load", u"Loading will lose unsaved progress.\nAre you sure you want to do this?"):
if not layout.yesno_prompt("load", layout.LOADING):
continue
renpy.load(fn)
@@ -1,3 +1,6 @@
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
# See LICENSE.txt for license details.
init python:
layout.provides('preferences')
Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

-106
View File
@@ -1,106 +0,0 @@
# This file contains the code that demonstrates animation.
init:
# A simple animation. We interleave the displayables we want to
# show with the times we want to show them for.
image eileen animated = Animation(
"eileen_vhappy.png", 1.0,
"eileen_happy.png", 1.0)
image transanimation = anim.TransitionAnimation(
im.Scale("whitehouse.jpg", 400, 300), 1.0, dissolve,
im.Scale("washington.jpg", 400, 300), 1.0, dissolve)
# The blink animation.
image blinking text = anim.Blink(Text("Blink", color="#ff0", size=72))
# A state machine-based animation.
image smanim = anim.SMAnimation(
# The name of the starting state.
"r",
# The states we use, and the displayables we show during those
# states.
anim.State("r", "#f00"),
anim.State("g", "#0f0"),
anim.State("b", "#00f"),
# The edges, given as a state, a time we remain in that state for,
# the new state, and the time it takes to transition between the
# two of them.
#
# dissolve only works with solid images. move is also useful here.
anim.Edge("r", .5, "g", dissolve),
anim.Edge("r", .5, "b", dissolve),
anim.Edge("g", .5, "r", dissolve),
anim.Edge("g", .5, "b", dissolve),
anim.Edge("b", .5, "r", dissolve),
anim.Edge("b", .5, "g", dissolve),
)
label demo_animation:
e "Ren'Py supports a number of ways of creating animations."
e "These animations let you vary images, independent of the user's clicks."
show eileen animated
e "For example, I'm switching my expression back and forth, once a second."
e "Even though you clicked, I'm still doing it."
e "This is an example of the Animation function at work."
show eileen happy
e "The Animation function is limited to simple lists of images, with fixed delays between them."
e "The sequence can repeat, or can stop after one go-through."
show eileen happy at right
show transanimation at Position(xpos=50, ypos=50, xanchor=0, yanchor=0)
with moveinleft
e "The anim.TransitionAnimation function is similar, but it lets you specify a transition between frames."
show eileen happy
hide transanimation
with moveoutleft
e "If you want more control, you can use the anim.SMAnimation function."
e "It can randomly change images, and even apply transitions to changes."
scene smanim
show eileen happy
with dissolve
e "Here, we are randomly dissolving the background between red, green, and blue images."
e "Psychadelic."
scene bg washington
show eileen happy
with dissolve
e "It's probably best if we stop here, before somebody's brain explodes."
show blinking text at Position(xalign=.5, yalign=.7)
e "Finally, there's anim.Blink, which can be used to blink things in and out."
e "I don't know why you'd want to do that to a character, but blinking text seems reasonable for signs and things like that."
hide blinking text
with dissolve
return
-135
View File
@@ -1,135 +0,0 @@
# This file contains some of the basics of Ren'Py. This is stuff you'll use in
# just about every game.
# First, we have an init block that contains many of the definitions we
# use in the game
init:
# Here we define the backgrounds that are used by the demo.
image bg washington = "washington.jpg"
image bg whitehouse = "whitehouse.jpg"
# And this is the character art we use in the demo.
image eileen happy = "eileen_happy.png"
image eileen vhappy = "eileen_vhappy.png"
image eileen concerned = "eileen_concerned.png"
# Now, we declare the characters.
$ e = Character('Eileen', color="#c8ffc8")
# In a real game, we would have:
#
# label start:
#
# here. But since we are inside the demo game, we have to use a different
# label.
label demo_basics:
e "This is our demonstration of the basics of using Ren'Py. You may want to click the button at the upper-right of the screen, to follow along."
"Somehow, I realize that Ren'Py supports narration."
e "Ren'Py supports dialogue, as long as you declare a character first. If it didn't I wouldn't be able to talk to you."
e "Ren'Py also supports menus, which let you make decisions based on user input."
menu:
e "Do you think you'd ever use menus in a game?"
"Yes.":
jump about_menus_yes
"No.":
jump about_menus_no
"I'm not ready to make that decision yet.":
jump about_menus_unsure
label about_menus_yes:
$ about_menus_choice = "yes"
e "Menus are the most important way of providing interactivity to a game."
jump about_menus_done
label about_menus_no:
$ about_menus_choice = "no"
e "That's okay, Ren'Py has been used to make a number of linear games, which we call kinetic novels."
jump about_menus_done
label about_menus_unsure:
$ about_menus_choice = "unsure"
e "Well, it doesn't really matter. Whatever you decide, Ren'Py is ready for you."
jump about_menus_done
label about_menus_done:
e "Ren'Py wouldn't be much of a visual novel engine if it didn't support images."
scene bg whitehouse
with dissolve
e "The scene statement clears the screen, and optionally lets you place a single new image on the screen."
show eileen happy
with dissolve
e "The show statement shows images to the user."
show eileen vhappy
with dissolve
e "Showing an image with the same tag, the same first part of the name, as an already-show image replaces that image."
show eileen happy at right
with dissolve
e "Images can be shown at different locations on the screen, and you can show as many images on the screen as you want."
hide eileen happy
with dissolve
e "The hide statement hides images, although with scene statement clearing the screen and the show statement replacing images, it's rarely necessary to do so."
scene bg washington
show eileen happy
with dissolve
e "Finally, the with statement is what we use to perform a transition from one screen to the next."
e "That's all you need to make a simple game, like a kinetic novel."
e "But I would be remiss if I didn't mention that Ren'Py can store data, and make decisions based on it."
if about_menus_choice == "yes":
e "For example, I remember you wanted to use menus in your game."
elif about_menus_choice == "no":
e "For example, I remember you didn't want to use menus."
else:
e "For example, I remember you weren't sure about menus."
e "Ren'Py embeds the Python programming language, which lets you do some very sophisticated things."
e "But you don't need learn Python if you don't want to."
return
-103
View File
@@ -1,103 +0,0 @@
# This file demonstrates the Ren'Py User Experience... the features you get
# for free by choosing to use Ren'Py as a visual novel engine.
init:
image popup prefs = "prefs.png"
image popup save = "save.png"
label demo_experience:
e "One of the goals of Ren'Py is to provide visual novel players with a good user experience."
e "To ensure this, there are a number of features that are included as part of every Ren'Py game. Here, we'll show off some of these features."
e "Skipping can be turned on from the game menu, or when the user presses the Tab key. It is also enabled while the user holds down either Ctrl key."
e "By default it only skips read text, so if it's your first time reading this, it won't do anything. That can be changed from the game menu."
e "On the second and later times reading a screen of text, it will skip right through it."
e "Rollback is a feature that lets you go back in time to previous screens, letting you re-read text."
menu:
e "Would you like to hear more about rollback?"
"Yes.":
jump demo_rollback
"No.":
jump demo_rollback_done
label demo_rollback:
e "You can invoke a rollback by scrolling the mouse wheel up, or by pushing the page up key. That'll bring you back to the previous screen."
e "While at a previous screen, you can roll forward by scrolling the mouse wheel down, or pushing the page down key."
e "Rolling forward through a menu will make the same choice you did last time. You can also make a different choice, if you change your mind."
e "You can try it by rolling back through the last menu, and saying 'No'."
e "Press page up, or scroll up the mouse wheel."
show eileen concerned
e "Well, are you going to try it?"
e "Your loss."
e "Moving on."
show eileen happy
label demo_rollback_done:
e "Now, let me show off the game menu. You can access the game menu by right clicking, or by hitting escape. You can get back by doing the same thing, or by clicking \"Return\"."
e "The game menu lets you do many things."
show popup save at Position(ypos=.1, yanchor=0, xpos=0, xanchor=1.0)
with None
show popup save at Position(xpos=.1, ypos=.1, xanchor=0, yanchor=0)
show eileen happy at right
with move
e "The save screen lets you save a game, while the load screen lets you load the game back in."
e "Unlike many game engines, Ren'Py supports an unlimited number of save slots."
show popup prefs at Position(xpos=.1, ypos=.1, xanchor=0, yanchor=0)
with dissolve
e "The preferences screen lets the end-user change some aspects of the behavior of Ren'Py."
e "The user can choose if the game runs in a window, or fullscreen."
e "By setting transitions to None, a user can eliminate transitions entirely."
e "A user can choose if the skipping feature skips all messages, or only seen messages, and if it stops when an in-game menu is selected."
e "When the text speed setting isn't the maximum, text will be drawn onto the screen one character at a time."
e "The auto-forward time setting controls how long we will wait before automatically advancing through text."
e "The auto-forward time is adjusted by the length of the text being shown."
e "Finally, we allow the user to choose the volume for music, voice, and sound effects."
e "From the game menu, the user can return to the game, begin skipping, return to the main menu, or quit entirely."
show popup save at Position(ypos=.1, yanchor=0, xpos=0, xanchor=1.0)
show eileen happy at center
with move
hide popup save
e "And that's part of how Ren'Py gives end-users the experience they expect."
return
-166
View File
@@ -1,166 +0,0 @@
init:
# Defines a big image we can pan over.
image bg onememorial = "1memorial.jpg"
# Defines a SnowBlossom object, which uses particle motion to show falling
# cherry blossom petals.
image snowblossom = SnowBlossom(anim.Filmstrip("sakura.png", (20, 20), (2, 1), .15), fast=True)
# Defines the magic circle image.
image magic_circle = "magic.png"
# Defines an image that zooms between various sizes.
image logo sizezoom = Animation(
At("logo.png", SizeZoom((100, 300), (300, 100), 1, opaque=False)), 1,
At("logo.png", SizeZoom((300, 100), (100, 300), 1, opaque=False)), 1,
)
# Defines a spline motion.
init python:
spline = SplineMotion([
((-0.042, 0.523,),),
((0.768, 0.296,), (0.082, 0.507,), (0.772, 0.573,),),
((0.292, 0.304,), (0.766, 0.112,), (0.296, 0.123,),),
((1.152, 0.509,), (0.288, 0.555,), (1.076, 0.499,),),
], 3.0, anchors=(0.5, 0.5))
label demo_movement:
e "I'm not stuck standing in the middle of the screen, even though I like being the center of attention."
e "Positions, given with an at clause, specify where I'm standing, while the 'move' transition moves around images that have changed position."
e "For example..."
show eileen happy at left
with move
e "The left position has my left side border the left side of the screen."
show eileen happy at center
with move
e "I can also move to the center..."
show eileen happy at right
with move
e "and the right."
e "We don't limit you to these positions either. You can always create your own Position objects."
# This is necessary to restart the time at which we are
# shown.
hide eileen happy
show eileen happy at Move((1.0, 1.0, 1.0, 1.0),
(0.0, 1.0, 0.0, 1.0),
4.0, repeat=True, bounce=True)
e "It's also possible to have a movement happen while showing dialogue on the screen, using the Move function."
e "Move can repeat a movement, and even have it bounce back and forth, like I'm doing now."
show eileen happy at Move((.25, 1.0, 0.0, 1.0),
(.75, 1.0, 1.0, 1.0),
10.0, repeat=True, bounce=True, subpixel=True)
with dissolve
e "Our subpixel mode allows slow moves, of less than a few pixels a second, to be very accurate."
scene bg onememorial at Pan((0, 800), (0, 0), 10.0)
with dissolve
e "We can pan around an image larger than the screen, using the Pan function in an at clause. That's what we're doing now."
scene bg whitehouse
with dissolve
# spline is defined near the top of this file.
show logo base at spline
e "SplineMotion allows for more complex movements to be defined."
hide logo base
scene bg whitehouse at Zoom((800, 600), (0, 0, 800, 600), (225, 150, 400, 300), 1.0)
e "We can zoom into images..."
scene bg whitehouse at Zoom((800, 600), (225, 150, 400, 300), (0, 0, 800, 600), 1.0)
e "... and zoom back out of them again."
scene bg whitehouse
show eileen happy at FactorZoom(1.0, 0.5, 1.0, opaque=False), center
e "We can also zoom images by a factor..."
show eileen happy at FactorZoom(0.5, 1.0, 1.0, opaque=False), center
e "... and zoom {i}them{/i} out again."
show eileen happy at left
# logo sizezoom is defined at the top of this file.
show logo sizezoom at Position(xalign=.75, yalign=.4)
with moveinright
e "We can scale images to arbitrary sizes."
show eileen happy at center
hide logo sizezoom
with moveoutright
with Pause(.5)
$ renpy.layer_at_list([ Zoom((800, 600), (0, 0, 800, 600), (200, 0, 400, 300), 1)])
with Pause(1)
$ renpy.layer_at_list([ Zoom((800, 600), (200, 0, 400, 300), (0, 0, 800, 600), 1)])
with Pause(1)
$ renpy.layer_at_list([ ])
e "We can apply motions to a layer as a whole."
show eileen happy
show magic_circle at RotoZoom(0, 360, 5, 0, 1, 1, rot_repeat=True, rot_anim_timebase=True, opaque=False, xalign=0.5, yalign=0.5)
with Pause(1)
e "We can rotate and zoom images in a single operation."
e "And when we're no longer feeling so occult, we can zoom them back out again."
show magic_circle at RotoZoom(0, 360, 5, 1, 0, 1, rot_repeat=True, rot_anim_timebase=True, opaque=False, xalign=0.5, yalign=0.5)
with Pause(1)
hide magic_circle
show eileen happy
show logo base at Position(xpos=250, ypos=300, xanchor=0.5, yanchor=0.5), Revolve(0, 360, 4, repeat=True) behind eileen
with dissolve
"We can also revolve an image around in a circle."
show bg washington
hide logo base
show snowblossom
with dissolve
e "Finally, Ren'Py has a particle motion system, that can be used for things like falling cherry blossoms, falling snow, and rising bubbles."
e "The particle motion system uses a factory to create particles over the course of an interaction."
e "While the SnowBlossom function wraps a factory that provides convenient support for things rising and falling in straight lines, it's also possible to define your own."
e "The sky's the limit."
e "Or the ground, in the case of these cherry blossoms."
hide snowblossom
with dissolve
return
-57
View File
@@ -1,57 +0,0 @@
# This file contains demonstrations of Ren'Py's multimedia
# support. Right now, this is just showing off sound and music, but
# Ren'Py does support movies, and we'll add them sometime later.
image movie = Movie(size=(320, 240), xpos=475, ypos=50, xanchor=0, yanchor=0)
label demo_multimedia:
e "Ren'Py supports a number of multimedia functions."
e "You're probably hearing music playing in the background."
# This stops the music, and fades it out.
stop music fadeout 0.5
e "We can stop it, with a fadeout..."
# This plays music.
play music "mozart.ogg"
e "... and start it playing again."
# This plays a sound effect.
play sound "18005551212.ogg"
e "We can play sound effects on top of the music."
$ renpy.music.set_pan(-1, 0)
$ renpy.music.set_pan( 1, 2)
e "We can pan the music back and forth."
$ renpy.music.set_pan(0, .5)
e "Voice support is included as part of Ren'Py, although we don't yet have a demonstration."
$ renpy.music.set_volume(0, .5)
e "Finally, we support playing movie files."
show movie behind eileen
play movie "shuttle.ogv"
e "We can put a movie on the screen with text and other images."
stop movie
hide movie
e "We can also play the movie in fullscreen... but with this tiny movie we're using as an example, it's going to look bad."
$ renpy.movie_cutscene("shuttle.ogv", stop_music=False)
$ renpy.music.set_volume(1, 1.0)
e "That's about it for multimedia."
return
Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.
-58
View File
@@ -1,58 +0,0 @@
# This file contains the script for the Ren'Py demo game. Execution starts at
# the start label.
#
# Declarations of characters and images used throughout the game can be found
# in demo_basics.rpy. Options can be set in options.rpy.
# The game starts here.
label start:
scene bg washington
show eileen vhappy
with dissolve
# Start the background music playing.
play music "mozart.ogg"
window show
e "Hi, and welcome to the Ren'Py demo game."
show eileen happy
e "My name is Eileen, and I'm here to demonstrate some of the features of the Ren'Py visual novel engine."
# Show the editor button, which is defined in editor.rpy.
$ show_editor_button = True
e "See that button in the upper-right corner of the screen?"
e "It shows where we are in the script. You can click it, and we'll try to open the file in a text editor."
e "It's an easy way to see how you can use the features I'm showing off."
e "We'll only show it for code that's intended to be easy to understand."
call demos from _call_demos_1
e "Thank you for viewing the Ren'Py demo."
e "If you'd like to see a full Ren'Py game, go to the launcher and choose \"Select Project\", then \"the_question\"."
e "You can download new versions of Ren'Py from http://www.renpy.org/. For help and discussion, check out the Lemma Soft Forums, at http://lemmasoft.renai.us/."
e "We'd like to thank Piroshki for contributing character art... I've never looked better. We also thank Jake for the magic circle."
e "The background music was generated using a Musikalisches Würfelspiel attributed to Mozart... even though that's probably wrong."
show eileen vhappy
e "We look forward to seeing what you can make with this! Good luck!"
window hide
# Returning from the top level quits the game.
return
+6 -2
View File
@@ -121,7 +121,7 @@ def main():
os.chmod("./renpy.app/Contents/MacOS/Ren'Py Launcher", 0755)
# Compile the various games
for i in [ 'demo/game', 'launcher', 'template/game', 'the_question/game' ]:
for i in [ 'tutorial/game', 'launcher', 'template/game', 'the_question/game' ]:
os.system("./renpy.sh --compile --game " + i)
@@ -133,7 +133,7 @@ def main():
files.extend(tree("common"))
more_files.append("console.exe")
files.extend(tree("launcher"))
files.extend(tree("demo"))
files.extend(tree("tutorial"))
# files.extend(tree("dse"))
files.extend(tree("the_question"))
@@ -172,6 +172,9 @@ def main():
"subpixel.c",
"winmixer.c",
"winmixer.pyx",
"_renpybidi.c",
"renpybidicore.c",
"_renpybidi.pyx",
]
for i in module_files:
@@ -229,6 +232,7 @@ def main():
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()
+102 -87
View File
@@ -2,19 +2,16 @@
<head>
<title>README</title>
<style>
HTML {
background: #eed;
}
BODY {
background: #fff;
margin: 0px 10% 0px 10%;
border-left: 1px solid #888;
border-right: 1px solid #888;
padding-left: 4em;
color: #444;
padding-left: 20%;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-right: 20%;
font-family: sans-serif;
line-height: 1.6em;
}
DT {
@@ -22,92 +19,110 @@ font-weight: bold;
margin-top: .33em;
}
H3 {
color: #600;
H2 {
color: #000;
margin-left: -2.5em;
}
H3 {
color: #000;
margin-left: -1.5em;
}
.editsection {
display: none;
}
</style>
</head>
<body>
<div id="renpy_help"></div>
<p><a name="Basic_Help" id="Basic_Help"></a></p>
<h2><span class="mw-headline">Basic Help</span></h2>
<p>To advance through the game, <tt>left-click</tt> or press the <tt>space</tt> or <tt>enter</tt> keys. When at a menu, <tt>left-click</tt> to make a choice, or use the arrow keys to select a choice and <tt>enter</tt> to activate it.</p>
<p><a name="Game_Menu" id="Game_Menu"></a></p>
<h3><span class="mw-headline">Game Menu</span></h3>
<p>When playing a game, <tt>right-click</tt> or press the <tt>escape</tt> key to enter the game menu. The game menu gives the following choices:</p>
<dl>
<dt>Return</dt>
<dd>Returns to the game.</dd>
<dt>Save Game</dt>
<dd>Allows you to save a game by clicking on a save slot.</dd>
<dt>Load Game</dt>
<dd>Allows you to load a game by clicking on a save slot. Clicking on "Auto" accesses the automatic save slots.</dd>
<dt>Preferences</dt>
<p><a name="Basic_Help" id="Basic_Help"></a></p>
<h2><span class="editsection">[<a href="/w/index.php?title=renpy/Help&amp;action=edit&amp;section=1" title="Edit section: Basic Help">edit</a>]</span> <span class="mw-headline">Basic Help</span></h2>
<p>To advance through the game, <tt>left-click</tt> or press the <tt>space</tt> or <tt>enter</tt> keys. When at a menu, <tt>left-click</tt> to make a choice, or use the arrow keys to select a choice and <tt>enter</tt> to activate it.</p>
<p><a name="Game_Menu" id="Game_Menu"></a></p>
<h3><span class="editsection">[<a href="/w/index.php?title=renpy/Help&amp;action=edit&amp;section=2" title="Edit section: Game Menu">edit</a>]</span> <span class="mw-headline">Game Menu</span></h3>
<p>When playing a game, <tt>right-click</tt> or press the <tt>escape</tt> key to enter the game menu. The game menu gives the following choices:</p>
<dl>
<dt>Return</dt>
<dd>Returns to the game.</dd>
<dt>Save Game</dt>
<dd>Allows you to save a game by clicking on a save slot.</dd>
<dt>Load Game</dt>
<dd>Allows you to load a game by clicking on a save slot. Clicking on "Auto" accesses the automatic save slots.</dd>
<dt>Preferences</dt>
<dd>Changes the game preferences (options/configuration):
<dl>
<dt>Display</dt>
<dd>Switches between fullscreen and windowed mode.</dd>
<dt>Transitions</dt>
<dd>Controls the display of transitions between game screens.</dd>
<dt>Text Speed</dt>
<dd>Controls the rate at which text displays. The further to the right this slider is, the faster the text will display. All the way to the right causes text to be shown instantly.</dd>
<dt>Joystick</dt>
<dd>Lets you control the game using a joystick.</dd>
<dt>Skip</dt>
<dd>Chooses between skipping messages that have been already seen (in any play through the game), and skipping all messages.</dd>
<dt>Begin Skipping</dt>
<dd>Returns to the game, while skipping.</dd>
<dt>After Choices</dt>
<dd>Controls if skipping stops upon reaching a menu.</dd>
<dt>Auto-Forward Time</dt>
<dd>Controls automatic advance. The further to the left this slider is, the shorter the amount of time before the game advances. All the way to the right means text will never auto-forward.</dd>
<dt>Music, Sound, and Voice Volume</dt>
<dd>Controls the volume of the Music, Sound effect, and Voice channels, respectively. The further to the right these are, the louder the volume.</dd>
</dl>
</dd>
</dl>
<dl>
<dt>Main Menu</dt>
<dd>Returns to the main menu, ending the current game.</dd>
<dt>Help</dt>
<dd>Shows this help screen.</dd>
<dt>Quit</dt>
<dd>Exits the game; the game will be closed and ended.</dd>
</dl>
<p><a name="Key_and_Mouse_Bindings" id="Key_and_Mouse_Bindings"></a></p>
<h3><span class="mw-headline">Key and Mouse Bindings</span></h3>
<dl>
<dt>Left-click, Enter</dt>
<dd>Advances through the game, activates menu choices, buttons, and sliders.</dd>
<dt>Space</dt>
<dd>Advances through the game, but does not activate choices.</dd>
<dt>Arrow Keys</dt>
<dd>Selects menu choices, buttons, and sliders.</dd>
<dt>Ctrl</dt>
<dd>Causes skipping to occur while the ctrl key is held down.</dd>
<dt>Tab</dt>
<dd>Toggles skipping, causing it to occur until tab is pressed again.</dd>
<dt>Mousewheel-Up, PageUp</dt>
<dd>Causes rollback to occur. Rollback reverses the game back in time, showing prior text and even allowing menu choices to be changed.</dd>
<dt>Mousewheel-Down, PageDown</dt>
<dd>Causes rollforward to occur, cancelling out a previous rollback.</dd>
<dt>Right-click, Escape</dt>
<dd>Enters the game menu. When in the game menu, returns to the game.</dd>
<dt>Middle-click, H</dt>
<dd>Hides the text window and other transient displays.</dd>
<dt>F</dt>
<dd>Toggles fullscreen mode</dd>
<dt>S</dt>
<dd>Takes a screenshot, saving it in a file named screenshotxxxx.png, where xxxx is a serial number.</dd>
<dt>Alt-H, Command-H</dt>
<dd>Hides (iconifies) the window.</dd>
<dt>Alt-F4, Command-Q</dt>
<dd>Quits the game.</dd>
</dl>
<p><a name="Legal_Notice" id="Legal_Notice"></a></p>
<h2><span class="mw-headline">Legal Notice</span></h2>
<p>This game uses source code from a number of open source projects. For a list, and a location where the source code can be downloaded from, please view the <a href="./renpy/LICENSE.txt">LICENSE.txt</a> file in the renpy directory.</p>
<dl>
<dt>Display</dt>
<dd>Switches between fullscreen and windowed mode.</dd>
<dt>Transitions</dt>
<dd>Controls the display of transitions between game screens.</dd>
<dt>Text Speed</dt>
<dd>Controls the rate at which text displays. The further to the right this slider is, the faster the text will display. All the way to the right causes text to be shown instantly.</dd>
<dt>Joystick</dt>
<dd>Lets you control the game using a joystick.</dd>
<dt>Skip</dt>
<dd>Chooses between skipping messages that have been already seen (in any play through the game), and skipping all messages.</dd>
<dt>Begin Skipping</dt>
<dd>Returns to the game, while skipping.</dd>
<dt>After Choices</dt>
<dd>Controls if skipping stops upon reaching a menu.</dd>
<dt>Auto-Forward Time</dt>
<dd>Controls automatic advance. The further to the left this slider is, the shorter the amount of time before the game advances. All the way to the right means text will never auto-forward.</dd>
<dt>Music, Sound, and Voice Volume</dt>
<dd>Controls the volume of the Music, Sound effect, and Voice channels, respectively. The further to the right these are, the louder the volume.</dd>
</dl>
</dd>
</dl>
<dl>
<dt>Main Menu</dt>
<dd>Returns to the main menu, ending the current game.</dd>
<dt>Help</dt>
<dd>Shows this help screen.</dd>
<dt>Quit</dt>
<dd>Exits the game; the game will be closed and ended.</dd>
</dl>
<p><a name="Key_and_Mouse_Bindings" id="Key_and_Mouse_Bindings"></a></p>
<h3><span class="editsection">[<a href="/w/index.php?title=renpy/Help&amp;action=edit&amp;section=3" title="Edit section: Key and Mouse Bindings">edit</a>]</span> <span class="mw-headline">Key and Mouse Bindings</span></h3>
<dl>
<dt>Left-click, Enter</dt>
<dd>Advances through the game, activates menu choices, buttons, and sliders.</dd>
<dt>Space</dt>
<dd>Advances through the game, but does not activate choices.</dd>
<dt>Arrow Keys</dt>
<dd>Selects menu choices, buttons, and sliders.</dd>
<dt>Ctrl</dt>
<dd>Causes skipping to occur while the ctrl key is held down.</dd>
<dt>Tab</dt>
<dd>Toggles skipping, causing it to occur until tab is pressed again.</dd>
<dt>Mousewheel-Up, PageUp</dt>
<dd>Causes rollback to occur. Rollback reverses the game back in time, showing prior text and even allowing menu choices to be changed.</dd>
<dt>Mousewheel-Down, PageDown</dt>
<dd>Causes rollforward to occur, cancelling out a previous rollback.</dd>
<dt>Right-click, Escape</dt>
<dd>Enters the game menu. When in the game menu, returns to the game.</dd>
<dt>Middle-click, H</dt>
<dd>Hides the text window and other transient displays.</dd>
<dt>F</dt>
<dd>Toggles fullscreen mode</dd>
<dt>S</dt>
<dd>Takes a screenshot, saving it in a file named screenshotxxxx.png, where xxxx is a serial number.</dd>
<dt>Alt-H, Command-H</dt>
<dd>Hides (iconifies) the window.</dd>
<dt>Alt-F4, Command-Q</dt>
<dd>Quits the game.</dd>
<dt>Delete</dt>
<dd>When a save slot is selected, deletes that save slot.</dd>
</dl>
<p><a name="Legal_Notice" id="Legal_Notice"></a></p>
<h2><span class="editsection">[<a href="/w/index.php?title=renpy/Help&amp;action=edit&amp;section=4" title="Edit section: Legal Notice">edit</a>]</span> <span class="mw-headline">Legal Notice</span></h2>
<p>This game uses source code from a number of open source projects. For a list, and a location where the source code can be downloaded from, please view the LICENSE.txt file in the renpy directory, or visit <a href="http://www.renpy.org/wiki/renpy/License" class="external free" title="http://www.renpy.org/wiki/renpy/License" rel="nofollow">http://www.renpy.org/wiki/renpy/License</a> .</p>
</body>
</html>
-3
View File
@@ -1,6 +1,3 @@
init -1 python:
style_backup = renpy.style.backup()
init python:
import codecs
+92 -8
View File
@@ -7,9 +7,12 @@ init python:
import tarfile
import time
import sys
import struct
import zlib
zlib.Z_DEFAULT_COMPRESSION = 9
import binascii
import pefile
# These are files that are ignored wherever they are found in a
@@ -130,8 +133,11 @@ init python:
dirs[:] = [ i for i in dirs if include(i, is_root) ]
rv = [ (a.replace("\\", "/"), b.replace("\\", "/")) for a, b in rv ]
return rv
def make_zip(t, filename, files, file_data):
"""
This creates `filename`.zip, containing `files`, placed in the
@@ -144,7 +150,7 @@ init python:
fn = os.path.join(os.path.dirname(project.path), filename)
zf = zipfile.ZipFile(fn + ".zip", "w", zipfile.ZIP_DEFLATED)
zf = MyZipFile(fn + ".zip", "w", zipfile.ZIP_DEFLATED)
for i, (fn, an) in enumerate(files):
@@ -156,7 +162,7 @@ init python:
zi = zipfile.ZipInfo(filename + an)
s = os.stat(fn)
zi.date_time = time.gmtime(s.st_mtime)[:6]
zi.date_time = time.gmtime(s.st_mtime)[:6]
zi.compress_type = zipfile.ZIP_DEFLATED
zi.create_system = 3
@@ -169,10 +175,9 @@ init python:
if fn in file_data:
data = file_data[fn]
zf.writestr(zi, data)
else:
data = file(fn, "rb").read()
zf.writestr(zi, data)
zf.write_file_with_zipinfo(fn, zi)
zf.close()
@@ -365,6 +370,11 @@ label distribute:
project.save()
base_name = base_name.encode("utf-8")
executable_name = executable_name.encode("utf-8")
ignore_extensions = ignore_extensions.encode("utf-8")
documentation_extensions = documentation_extensions.encode("utf-8")
# Convert some of these to more useful formats.
ignore_extensions = [ i.strip() for i in ignore_extensions.split() ]
documentation_extensions = [ i.strip() for i in documentation_extensions.split() ]
@@ -386,8 +396,11 @@ label distribute:
######################################################################
# Multi files.
rb = config.renpy_base + "/"
rb = config.renpy_base.replace("\\", "/") + "/"
# Project files.
multi_files.extend(tree(project.path, "/", root=True, exclude_suffix=ignore_extensions))
multi_files.append((rb + "renpy.py", "/" + executable_name + ".py"))
@@ -509,7 +522,6 @@ label distribute:
break
else:
macapp_files.append((fn, an))
make_zip(
_(u"Building Macintosh..."),
@@ -542,3 +554,75 @@ label distribute:
interact()
init python:
class MyZipFile(zipfile.ZipFile):
"""
Modified ZipFile class that can insert a file into the archive,
using a supplied ZipInfo object. Code comes from the writestr
and write methods of ZipFile.
"""
def write_file_with_zipinfo(self, filename, zinfo, compress_type=None):
"""Put the bytes from filename into the archive under the name
arcname."""
st = os.stat(filename)
if compress_type is None:
zinfo.compress_type = self.compression
else:
zinfo.compress_type = compress_type
zinfo.file_size = st.st_size
zinfo.flag_bits = 0x00
zinfo.header_offset = self.fp.tell() # Start of header bytes
self._writecheck(zinfo)
self._didModify = True
fp = open(filename, "rb")
# Must overwrite CRC and sizes with correct data later
zinfo.CRC = CRC = 0
zinfo.compress_size = compress_size = 0
zinfo.file_size = file_size = 0
self.fp.write(zinfo.FileHeader())
if zinfo.compress_type == zipfile.ZIP_DEFLATED:
cmpr = zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
zlib.DEFLATED, -15)
else:
cmpr = None
while 1:
buf = fp.read(1024 * 64)
if not buf:
break
file_size = file_size + len(buf)
CRC = binascii.crc32(buf, CRC)
if cmpr:
buf = cmpr.compress(buf)
compress_size = compress_size + len(buf)
self.fp.write(buf)
fp.close()
if cmpr:
buf = cmpr.flush()
compress_size = compress_size + len(buf)
self.fp.write(buf)
zinfo.compress_size = compress_size
else:
zinfo.compress_size = file_size
zinfo.CRC = CRC
zinfo.file_size = file_size
# Seek backwards and write CRC and file sizes
position = self.fp.tell() # Preserve current position in file
self.fp.seek(zinfo.header_offset + 14, 0)
self.fp.write(struct.pack("<lLL", zinfo.CRC, zinfo.compress_size,
zinfo.file_size))
self.fp.seek(position, 0)
self.filelist.append(zinfo)
self.NameToInfo[zinfo.filename] = zinfo
+10 -2
View File
@@ -26,7 +26,12 @@ init python:
# Should we set up the editor? How about the transient editor?
set_editor = "RENPY_EDITOR" not in os.environ
set_editor_transient = "RENPY_EDITOR_TRANSIENT" not in os.environ
if set_editor and not set_editor_transient:
config.editor_transient = config.editor
os.environ['RENPY_EDITOR_TRANSIENT'] = config.editor
set_editor_transient = False
def scan_editor(ef):
"""
Scans a single editor file to get the meta-information. If it
@@ -84,6 +89,9 @@ init python:
Sets the system up to respect the value containined in
persistent.editor.
"""
if not set_editor:
return
ef = None
@@ -100,7 +108,7 @@ init python:
"persistent" : persistent,
"base" : os.path.dirname(ef),
}
execfile(ef, ctx, ctx)
if set_editor:
+49 -19
View File
@@ -1,12 +1,50 @@
# This file contains the various components of the launcher interface.
init python:
init -11 python:
style.launcher_base = Style(style.default)
style.launcher_text = Style(style.launcher_base)
style.launcher_text.size = 15
style.launcher_text.color = "#333"
style.launcher_text.justify = True
style.launcher_title = Style(style.launcher_base)
style.launcher_title.size = 26
style.launcher_title.color = "#333"
style.launcher_button_text = Style(style.launcher_base)
style.launcher_button_text.size = 20
style.launcher_button_text.color = "#03c"
style.launcher_button_text.hover_color = "#088"
style.launcher_button_text.insensitive_color = "#aaa"
style.launcher_button_text.minwidth = 250
style.launcher_small_button_text = Style(style.launcher_button_text)
style.launcher_small_button_text.size = 15
style.launcher_tooltip = Style(style.default)
style.launcher_tooltip.color = "#fff"
style.launcher_tooltip.size = 14
init 11 python hide:
props = { }
for i in style.default.properties:
props.update(i)
if props["font"] == "DejaVuSans.ttf":
style.launcher_base.setdefault(font="DejaVuSerif.ttf")
init 11 python:
import time
# Settings.
config.developer = True
# Make backup of styles.
style_backup = renpy.style.backup()
# Style customizations. These need to be in a function so that we can
# change them when we're choosing a theme.
@@ -18,9 +56,7 @@ init python:
style.hyperlink_text.hover_color = "#00c"
style.hyperlink_text.size = 15
style.hyperlink_text.underline = False
style.hyperlink_text.font = "DejaVuSerif.ttf"
customize_styles()
tooltip = _(u"Welcome!")
@@ -75,16 +111,16 @@ init python:
"""
ui.window(style="default", bottom_margin=4, top_margin=12)
ui.text(s, size=26, color="#333", font="DejaVuSerif.ttf")
ui.text(s, style="launcher_title")
def text(s):
"""
Display text on the screen.
"""
ui.text(s, size=15, color="#333", font="DejaVuSerif.ttf", justify=True)
ui.text(s, style="launcher_text")
def button(s, clicked=None, subtitle="", hovered=None, unhovered=None, size=20):
def button(s, clicked=None, subtitle="", hovered=None, unhovered=None):
"""
Displays a button with caption `s`.
"""
@@ -100,9 +136,7 @@ init python:
hovered=hovered, unhovered=unhovered,
top_padding=3, bottom_padding=3)
ui.text(s, style="default", size=size,
color="#03c", hover_color="00c", insensitive_color="#aaa",
font="DejaVuSerif.ttf", minwidth=250)
ui.text(s, style="launcher_button_text")
def small_button(s, clicked=None, subtitle="", hovered=None, unhovered=None):
"""
@@ -119,9 +153,7 @@ init python:
hovered=hovered, unhovered=unhovered,
top_padding=0, bottom_padding=0)
ui.text(s, style="default", size=15,
color="#03c", hover_color="00c", insensitive_color="#aaa",
font="DejaVuSerif.ttf", minwidth=250)
ui.text(s, style="launcher_small_button_text")
def toggle_button(s, checked, clicked=None, subtitle=""):
"""
@@ -132,17 +164,15 @@ init python:
unhovered = untooltips(subtitle)
if checked:
s = u"\u25a3 " + s
s = u"{font=DejaVuSans.ttf}\u25a3{/font} " + s
else:
s = u"\u25a1 " + s
s = u"{font=DejaVuSans.ttf}\u25a1{/font} " + s
ui.button(style="default", clicked=clicked,
hovered=hovered, unhovered=unhovered,
top_padding=0, bottom_padding=0)
ui.text(s, style="default", size=15,
color="#03c", hover_color="00c", insensitive_color="#aaa",
font="DejaVuSerif.ttf", minwidth=250)
ui.text(s, style="launcher_small_button_text")
def scrolled(cancel, yadj=None):
+5 -2
View File
@@ -29,9 +29,12 @@ label new_project:
_(u"Please wait while we create the project."))
template = os.path.join(config.renpy_base, "template")
shutil.copytree(template, path)
try:
shutil.copytree(template, path)
except OSError, e:
error(_(u"Could not create the project directory. The error was: %s") % unicode(e))
launcherinfo = os.path.join(path, "launcherinfo.py")
if os.path.exists(launcherinfo):
os.unlink(launcherinfo)
+4 -1
View File
@@ -9,8 +9,11 @@ label options:
title(_(u"Launcher Options"))
editor = persistent.editor
if not set_editor:
editor = _(u"Using RENPY_EDITOR")
text_variable(_("Text Editor"), persistent.editor, "editor",
text_variable(_("Text Editor"), editor, "editor",
_(u"Change the default text editor."))
ui.null(height=15)
+19 -3
View File
@@ -110,7 +110,7 @@ init python:
project_dirs = [ config.renpy_base ]
if persistent.projects_directory:
if persistent.projects_directory and persistent.projects_directory not in project_dirs:
project_dirs.append(persistent.projects_directory)
for d in project_dirs:
@@ -148,7 +148,7 @@ init python:
return
for i in projects:
if i.name == "demo":
if i.name == "tutorial":
i.select()
return
@@ -193,6 +193,21 @@ label select_project:
interact()
label launch_tutorial:
python hide:
if sys.platform == "win32" and sys.argv[0].lower().endswith(".exe"):
proc = subprocess.Popen([sys.argv[0], tutorial_path])
else:
proc = subprocess.Popen([sys.executable, sys.argv[0], tutorial_path])
set_tooltip(_(u"Tutorial game has been launched."))
jump top
label launch:
python hide:
@@ -269,7 +284,8 @@ label lint:
lf = file("lint.txt", "w+")
if hasattr(sys, "winver") and sys.argv[0].lower().endswith(".exe"):
proc = subprocess.Popen([config.renpy_base + "/console.exe", "--lint", project.path], stdin=lf, stdout=lf, stderr=lf)
CREATE_NO_WINDOW=0x08000000
proc = subprocess.Popen([config.renpy_base + "/console.exe", "--lint", project.path], stdin=lf, stdout=lf, stderr=lf, creationflags=CREATE_NO_WINDOW)
else:
proc = subprocess.Popen([sys.executable, sys.argv[0], "--lint", project.path], stdout=lf)
+9 -3
View File
@@ -1,7 +1,8 @@
init python:
import os
import subprocess
try:
import EasyDialogs
except ImportError:
@@ -25,7 +26,8 @@ label choose_projects_directory:
if path is None:
path = os.path.dirname(config.renpy_base)
path = os.environ.get("RENPY_DEFAULT_PROJECTS_DIRECTORY", path)
if EasyDialogs:
@@ -37,8 +39,12 @@ label choose_projects_directory:
try:
env = os.environ.copy()
if 'RENPY_OLD_LD_LIBRARY_PATH' in env:
env['LD_LIBRARY_PATH'] = env['RENPY_OLD_LD_LIBRARY_PATH']
zen = subprocess.Popen([ "zenity", "--title=Select Projects Directory", "--file-selection", "--directory", "--filename=" + path ],
stdout=subprocess.PIPE)
env=env, stdout=subprocess.PIPE)
choice = zen.stdout.read()
zen.wait()
+28 -1
View File
@@ -1,3 +1,7 @@
init python:
tutorial_path = config.renpy_base + "/tutorial"
tutorial_exists = os.path.isdir(tutorial_path)
label main_menu:
return
@@ -64,7 +68,7 @@ label top:
title(_(u"Ren'Py"))
ui.grid(2, 3, transpose=True)
ui.grid(2, 4, transpose=True)
button(_(u"Select Project"),
ui.jumps("select_project"),
@@ -74,6 +78,10 @@ label top:
ui.jumps("new_project"),
_(u"Create a new project."))
button(_(u"Ren'Py Games List"),
ui.jumps("renpy_games_list"),
_(u"Visit the Ren'Py games list, at http://games.renpy.org."))
button(_(u"Quit"),
renpy.quit,
_(u"Causes the launcher to exit."))
@@ -86,7 +94,18 @@ label top:
ui.jumps("documentation"),
_(u"Open the Ren'Py documentation in a web browser."))
if tutorial_exists:
button(_(u"Tutorial Game"),
ui.jumps("launch_tutorial"),
_(u"Launches the Ren'Py tutorial game."))
else:
ui.null()
ui.null()
ui.close()
ui.close()
@@ -107,6 +126,14 @@ label documentation:
jump top
label renpy_games_list:
python hide:
import webbrowser
webbrowser.open_new("http://games.renpy.org")
set_tooltip(_(u"Now showing the Ren'Py Games List in your web browser."))
jump top
label confirm_quit:
$ renpy.quit()
+1 -1
View File
@@ -1,3 +1,3 @@
init -999:
$ config.script_version = (6, 9, 3)
$ config.script_version = (6, 10, 2)
+191 -174
View File
@@ -3,190 +3,207 @@ init python:
TRANSLATION_STRINGS = [
u'Developer Menu',
u'Return to the developer menu',
u'Skip Mode',
u'Fast Skip Mode',
u'Please click to continue.',
u'Start Game',
u'Load Game',
u'Preferences',
u'Help',
u'Quit',
u'Return',
u'Save Game',
u'Main Menu',
u'Are you sure you want to quit?',
u'Are you sure you want to return to the main menu?\\nThis will lose unsaved progress.',
u'Begin Skipping',
u'Empty Slot.',
u'Previous',
u'Next',
u'Yes',
u'No',
u'Loading will lose unsaved progress.\\nAre you sure you want to do this?',
u'Are you sure you want to overwrite your save?',
u'The error message was:',
u'You may want to try saving in a different slot, or playing for a while and trying again later.',
u'Save Failed.',
u'Continue Game',
u'Test',
u'Left',
u'Right',
u'Up',
u'Down',
u'Not Assigned',
u'Select/Dismiss',
u'Rollback',
u'Hold to Skip',
u'Joystick Mapping',
u'Move the joystick or press a joystick button to create the mapping. Click the mouse to remove the mapping.',
u'Toggle Skip',
u'Hide Text',
u'Menu',
u'Display',
u'Window',
u'Fullscreen',
u'Transitions',
u'All',
u'Some',
u'None',
u'Skip',
u'Seen Messages',
u'All Messages',
u'After Choices',
u'Stop Skipping',
u'Keep Skipping',
u'Text Speed',
u'Auto-Forward Time',
u'Music Volume',
u'Sound Volume',
u'Joystick...',
u'Joystick Configuration',
u'Voice Volume',
u'Auto',
u'Quick',
u'The patterns did not match any files, so no archive was created.',
u'Archiving Files...',
u'Success',
u'The files have been added to the archive, and moved into the \\"archived\\" directory. Future runs of the archiver will archive files in both the \\"game\\" and \\"archived\\" directories.',
u'Archiver',
u'The archiver allows you to obfuscate your game by including files in an archive file.',
u'Archive Name:',
u'The name of the archive to create.',
u'Include Patterns:',
u'Files matching these patterns are included in the archive.',
u'Exclude Patterns:',
u'Files matching these patterns are excluded from the archive.',
u'Archive',
u'Build the archive.',
u'Cancel',
u'Archive Name',
u'The name of the archive file to create, without the .rpa extension.\\n\\nThe \\"data\\" archive is loaded automatically. Other archives must be added to config.archives.',
u'Include Patterns',
u'This is a space-separated list of file patterns. Files matching these patterns are added to the archive.\\n\\nAsterisks (*) can be used as a wildcard.',
u'This is a space-separated list of file patterns. Files matching these patterns are excluded from the archive. If a file is matched by both an exclude and include pattern, the exclude takes precedence.\\n\\nAsterisks (*) can be used as a wildcard.',
u'Scanning Files...',
u'Could not modify options.rpy. Perhaps it was changed too much.',
u'Theme changed to %s.',
u'Planetarium',
u'The options.rpy file does not exist in the game directory, so this launcher cannot change the theme.',
u"Are you sure?",
u"Are you sure you want to delete this save?",
u"Are you sure you want to overwrite your save?",
u"Loading will lose unsaved progress.\nAre you sure you want to do this?",
u"Are you sure you want to quit?",
u"Are you sure you want to return to the main menu?\nThis will lose unsaved progress.",
u"Skip Mode",
u"Fast Skip Mode",
u"Please click to continue.",
u"Start Game",
u"Load Game",
u"Preferences",
u"Help",
u"Quit",
u"Return",
u"Save Game",
u"Main Menu",
u"Begin Skipping",
u"Empty Slot.",
u"Previous",
u"Next",
u"Yes",
u"No",
u"The error message was:",
u"You may want to try saving in a different slot, or playing for a while and trying again later.",
u"Save Failed.",
u"Continue Game",
u"Test",
u"Left",
u"Right",
u"Not Assigned",
u"Up",
u"Down",
u"Select/Dismiss",
u"Joystick Mapping",
u"Move the joystick or press a joystick button to create the mapping. Click the mouse to remove the mapping.",
u"Rollback",
u"Hold to Skip",
u"Toggle Skip",
u"Hide Text",
u"Menu",
u"Display",
u"Window",
u"Fullscreen",
u"Transitions",
u"All",
u"Some",
u"None",
u"Skip",
u"Seen Messages",
u"All Messages",
u"After Choices",
u"Stop Skipping",
u"Keep Skipping",
u"Text Speed",
u"Auto-Forward Time",
u"Music Volume",
u"Sound Volume",
u"Joystick...",
u"Joystick Configuration",
u"Voice Volume",
u"Developer Menu",
u"Return to the developer menu",
u"Reload Game (Shift+R)",
u"Variable Viewer",
u"Theme Test",
u"Style Hierarchy",
u"FPS Meter",
u"Image Location Picker",
u"Done",
u"Auto",
u"Quick",
u"The patterns did not match any files, so no archive was created.",
u"Archiving Files...",
u"Success",
u"The files have been added to the archive, and moved into the \"archived\" directory. Future runs of the archiver will archive files in both the \"game\" and \"archived\" directories.",
u"Archiver",
u"The archiver allows you to obfuscate your game by including files in an archive file.",
u"Archive Name:",
u"The name of the archive to create.",
u"Include Patterns:",
u"Files matching these patterns are included in the archive.",
u"Exclude Patterns:",
u"Files matching these patterns are excluded from the archive.",
u"Archive",
u"Build the archive.",
u"Cancel",
u"Archive Name",
u"The name of the archive file to create, without the .rpa extension.\n\nThe \"data\" archive is loaded automatically. Other archives must be added to config.archives.",
u"Include Patterns",
u"This is a space-separated list of file patterns. Files matching these patterns are added to the archive.\n\nAsterisks (*) can be used as a wildcard.",
u"This is a space-separated list of file patterns. Files matching these patterns are excluded from the archive. If a file is matched by both an exclude and include pattern, the exclude takes precedence.\n\nAsterisks (*) can be used as a wildcard.",
u"Scanning Files...",
u"Could not modify options.rpy. Perhaps it was changed too much.",
u"Theme changed to %s.",
u"Planetarium",
u"The options.rpy file does not exist in the game directory, so this launcher cannot change the theme.",
u"Themes control the basic look of interface elements. You'll be able to pick a color scheme next.",
u'Choose Theme',
u'Please choose a color scheme for your project.',
u'Choose Color Scheme',
u'Building Distributions',
u'Base Name:',
u'Used to generate the names of directories and archive files.',
u'Executable Name:',
u'Used to generate the names of executables and runnable programs.',
u'Ignore Extensions:',
u'Files with these extensions will not be included in the distributions.',
u'Documentation Extensions:',
u'Files with these extensions will be treated as documentation, when building the Macintosh application.',
u'Distributions to Build:',
u'Windows x86',
u'Zip distribution for the 32-bit Windows platform.',
u'Linux x86',
u'Tar.Bz2 distribution for the Linux x86 platform.',
u'Macintosh Universal',
u'Single application distribution for the Macintosh x86 and ppc platforms.',
u'Windows/Linux/Mac Combined',
u'Zip distribution for the Windows x86, Linux x86, Macintosh x86 and Macintosh ppc platforms.',
u'Build',
u'Start building the distributions.',
u'Base Name',
u'Please enter in the base name for your distribution. This name is used to generate the names of directories and archive files. Usually, this is the name of your game, plus a version number, like \\"moonlight-1.0\\".',
u'Executable Name',
u'Please enter a name for the executables in your distribution. This should not include an extension, as that will be added automatically.',
u'Ignore Extensions',
u'Please enter a space-separated list of file extensions. Files with these extensions will not be included in the built distributions.',
u'Documentation Extensions',
u'Please enter a space separated list of documentation extensions. Files in the base directory with these extensions will have a second copy stored outside of the Macintosh application.',
u'Scanning...',
u'Building Windows...',
u'Building Linux...',
u'Building Macintosh...',
u'Building Combined...',
u"Choose Theme",
u"Please choose a color scheme for your project.",
u"Choose Color Scheme",
u"Building Distributions",
u"I've just performed a lint on your project. If it contains errors, you should say no and fix them.\nPlease also check {a=http://www.renpy.org/wiki/renpy/Download_Ren'Py}www.renpy.org{/a} to see if updates or fixes are available.\n\nDo you want to continue?",
u"Base Name:",
u"Used to generate the names of directories and archive files.",
u"Executable Name:",
u"Used to generate the names of executables and runnable programs.",
u"Ignore Extensions:",
u"Files with these extensions will not be included in the distributions.",
u"Documentation Extensions:",
u"Files with these extensions will be treated as documentation, when building the Macintosh application.",
u"Distributions to Build:",
u"Windows x86",
u"Zip distribution for the 32-bit Windows platform.",
u"Linux x86",
u"Tar.Bz2 distribution for the Linux x86 platform.",
u"Macintosh Universal",
u"Single application distribution for the Macintosh x86 and ppc platforms.",
u"Windows/Linux/Mac Combined",
u"Zip distribution for the Windows x86, Linux x86, Macintosh x86 and Macintosh ppc platforms.",
u"Build",
u"Start building the distributions.",
u"Base Name",
u"Please enter in the base name for your distribution. This name is used to generate the names of directories and archive files. Usually, this is the name of your game, plus a version number, like \"moonlight-1.0\".",
u"Executable Name",
u"Please enter a name for the executables in your distribution. This should not include an extension, as that will be added automatically.",
u"Ignore Extensions",
u"Please enter a space-separated list of file extensions. Files with these extensions will not be included in the built distributions.",
u"Documentation Extensions",
u"Please enter a space separated list of documentation extensions. Files in the base directory with these extensions will have a second copy stored outside of the Macintosh application.",
u"Scanning...",
u"Building Windows...",
u"Building Linux...",
u"Building Macintosh...",
u"Building Combined...",
u"Thank you for choosing Ren'Py.",
u"The distributions have been built. Be sure to test them before release.\\n\\nNote that unpacking and repacking the Macintosh, Linux, or Combined distributions on Windows is not supported.\\n\\nPlease announce your release at the {a=http://lemmasoft.renai.us/forums/}Lemma Soft Forums{/a}, so we can add it to the Ren'Py web site.",
u'The editor has been set from the RENPY_EDITOR environment variable, and cannot be changed.',
u'Choose Editor',
u"The distributions have been built. Be sure to test them before release.\n\nNote that unpacking and repacking the Macintosh, Linux, or Combined distributions on Windows is not supported.\n\nPlease announce your release at the {a=http://lemmasoft.renai.us/forums/}Lemma Soft Forums{/a}, so we can add it to the Ren'Py web site.",
u"The editor has been set from the RENPY_EDITOR environment variable, and cannot be changed.",
u"Choose Editor",
u"Please choose the editor that will be use to edit scripts and display errors. More editors can be downloaded from {a=http://www.renpy.org/wiki/renpy/Editors}the Ren'Py website{/a}.",
u'Error',
u'Press enter when done.',
u'Welcome!',
u'The string cannot be empty. Please enter some text.',
u'Non-ASCII filenames are not allowed. This is because Zip files cannot reliably represent non-ASCII filenames.',
u'Processed %d of %d files.',
u'New Project',
u'Please type the name of your new project.',
u'Something with that name already exists in the projects directory.',
u'Creating Project',
u'Please wait while we create the project.',
u'%s Launcher',
u'Launcher Options',
u'Change the default text editor.',
u'Projects Directory',
u"Error",
u"Press enter when done.",
u"The string cannot be empty. Please enter some text.",
u"Non-ASCII filenames are not allowed. This is because Zip files cannot reliably represent non-ASCII filenames.",
u"Processed %d of %d files.",
u"Welcome!",
u"New Project",
u"Please type the name of your new project.",
u"Something with that name already exists in the projects directory.",
u"Creating Project",
u"Please wait while we create the project.",
u"%s Launcher",
u"Launcher Options",
u"Using RENPY_EDITOR",
u"Change the default text editor.",
u"Projects Directory",
u"Select the directory Ren'Py searches for projects.",
u'Select Project',
u'%s has been launched.',
u'Opening game directory:\\n%s',
u'No editor has been selected.',
u'No files to edit.',
u'Launching the editor failed.',
u'Launched editor with %d script files.',
u'Lint',
u'Lint in progress.',
u'Lint complete.',
u'Deleting persistent data.',
u'Delete Persistent',
u'Persistent data has been deleted.',
u'Choose Projects Directory',
u'Please choose the directory containing your projects.',
u"Select Project",
u"Tutorial game has been launched.",
u"%s has been launched.",
u"Opening game directory:\n%s",
u"No editor has been selected.",
u"No files to edit.",
u"Launching the editor failed.",
u"Launched editor with %d script files.",
u"Lint",
u"Lint in progress.",
u"Lint complete.",
u"Deleting persistent data.",
u"Delete Persistent",
u"Persistent data has been deleted.",
u"Choose Projects Directory",
u"Please choose the directory containing your projects.",
u"Could not run zenity. The projects directory has been set to the directory immediately above the directory containing Ren'Py.",
u"Launches the Ren'Py tutorial game.",
u"Now showing the Ren'Py documentation in your web browser.",
u'Launch',
u'Launches the project.',
u'Edit Script',
u'Edits the script of the project.',
u'Game Directory',
u"Now showing the Ren'Py Games List in your web browser.",
u"Launch",
u"Launches the project.",
u"Edit Script",
u"Edits the script of the project.",
u"Game Directory",
u"Opens the project's game directory.",
u'Check Script (Lint)',
u'Checks the script of the project for likely errors.',
u'Changes the theme used by the project.',
u'Deletes the persistent data associated with the project.',
u'Archive Files',
u'Archives files found in the game and archived directories.',
u'Build Distributions',
u'Builds distributions of the project.',
u"Check Script (Lint)",
u"Checks the script of the project for likely errors.",
u"Changes the theme used by the project.",
u"Deletes the persistent data associated with the project.",
u"Archive Files",
u"Archives files found in the game and archived directories.",
u"Build Distributions",
u"Builds distributions of the project.",
u"Ren'Py",
u'Select a project to work with.',
u'Create a new project.',
u'Causes the launcher to exit.',
u'Options',
u"Select a project to work with.",
u"Create a new project.",
u"Ren'Py Games List",
u"Visit the Ren'Py games list, at http://games.renpy.org.",
u"Causes the launcher to exit.",
u"Options",
u"Change Ren'Py launcher options.",
u"Ren'Py Help",
u"Open the Ren'Py documentation in a web browser.",
u"Tutorial Game",
]
+5742
View File
File diff suppressed because it is too large Load Diff
+9 -8
View File
@@ -62,7 +62,8 @@ cdef extern from "renpy.h":
void scale32_core(object, object,
float, float, float, float,
float, float, float, float)
float, float, float, float,
int)
void scale24_core(object, object,
float, float, float, float,
@@ -70,7 +71,7 @@ cdef extern from "renpy.h":
void transform32_core(object, object,
float, float, float, float, float, float,
int, float)
int, float, int)
void blend32_core(object, object, object, int)
@@ -94,9 +95,8 @@ import pygame
PygameSurface = pygame.Surface
# Update this in 00library.rpy as well!
def version():
return 6009000
return (6, 10, 1)
def save_png(surf, file, compress=-1):
@@ -284,7 +284,8 @@ def alpha_munge(pysrc, pydst, srcchan, dstchan, amap):
def bilinear(pysrc, pydst,
source_xoff=0.0, source_yoff=0.0, source_width=None, source_height=None,
dest_xoff=0.0, dest_yoff=0.0, dest_width=None, dest_height=None):
dest_xoff=0.0, dest_yoff=0.0, dest_width=None, dest_height=None,
precise=0):
if not isinstance(pysrc, PygameSurface):
raise Exception("bilinear requires a pygame Surface as its first argument.")
@@ -310,7 +311,7 @@ def bilinear(pysrc, pydst,
if pysrc.get_bitsize() == 32:
scale32_core(pysrc, pydst,
source_xoff, source_yoff, source_width, source_height,
dest_xoff, dest_yoff, dest_width, dest_height)
dest_xoff, dest_yoff, dest_width, dest_height, precise)
else:
scale24_core(pysrc, pydst,
@@ -332,7 +333,7 @@ def check(surf):
def transform(pysrc, pydst,
corner_x, corner_y,
xdx, ydx, xdy, ydy, a=1.0):
xdx, ydx, xdy, ydy, a=1.0, precise=0):
check(pysrc)
check(pydst)
@@ -344,7 +345,7 @@ def transform(pysrc, pydst,
corner_x, corner_y,
xdx, ydx,
xdy, ydy,
pysrc.get_shifts()[3], a)
pysrc.get_shifts()[3], a, precise)
# pydst.unlock()
# pysrc.unlock()
+1446
View File
File diff suppressed because it is too large Load Diff
+21
View File
@@ -0,0 +1,21 @@
cdef extern from "fribidi/fribidi.h":
int FRIBIDI_TYPE_LTR
int FRIBIDI_TYPE_ON
int FRIBIDI_TYPE_RTL
int FRIBIDI_TYPE_WR
int FRIBIDI_TYPE_WL
cdef extern object renpybidi_log2vis(object, int *)
WLTR = FRIBIDI_TYPE_WL
LTR = FRIBIDI_TYPE_LTR
ON = FRIBIDI_TYPE_ON
RTL = FRIBIDI_TYPE_RTL
WRTL = FRIBIDI_TYPE_WR
def log2vis(s, int direction=FRIBIDI_TYPE_ON):
s = s.encode("utf8")
s = renpybidi_log2vis(s, &direction)
return s.decode("utf8"), direction
+247 -142
View File
@@ -773,7 +773,9 @@ void scale32_core(PyObject *pysrc, PyObject *pydst,
float source_xoff, float source_yoff,
float source_width, float source_height,
float dest_xoff, float dest_yoff,
float dest_width, float dest_height) {
float dest_width, float dest_height,
int precise
) {
SDL_Surface *src;
@@ -803,9 +805,25 @@ void scale32_core(PyObject *pysrc, PyObject *pydst,
srch = src->h;
dsth = dst->h;
xdelta = 255.0 * (source_width - 1) / dest_width;
ydelta = 255.0 * (source_height - 1) / dest_height;
if (precise) {
if (dest_width > 1) {
xdelta = 256.0 * (source_width - 1) / (dest_width - 1);
} else {
xdelta = 0;
}
if (dest_height > 1) {
ydelta = 256.0 * (source_height - 1) / (dest_height - 1);
} else {
ydelta = 0;
}
} else {
xdelta = 255.0 * (source_width - 1) / dest_width;
ydelta = 255.0 * (source_height - 1) / dest_height;
}
for (y = 0; y < dsth; y++) {
unsigned char *s0;
@@ -821,14 +839,14 @@ void scale32_core(PyObject *pysrc, PyObject *pydst,
d = dstpixels + dstpitch * y;
dend = d + 4 * dstw; // bpp
sline = source_yoff * 255 + (y + dest_yoff) * ydelta;
sline = source_yoff * 256 + (y + dest_yoff) * ydelta;
s1frac = (int) sline & 255;
s0frac = 256 - s1frac;
s0 = srcpixels + (sline >> 8) * srcpitch;
s1 = s0 + srcpitch;
scol = source_xoff * 255 + dest_xoff * xdelta;
scol = source_xoff * 256 + dest_xoff * xdelta;
while (d < dend) {
@@ -960,15 +978,22 @@ void scale24_core(PyObject *pysrc, PyObject *pydst,
}
#define I(a, b, mul) ((((((b - a) * mul)) >> 8) + a) & 0xff00ff)
/** This appears to limit the expansion, such that 1/x yields a max
expansion of lg x */
#define EPSILON (1.0 / 256.0)
/****************************************************************************/
/* A similar concept to rotozoom, but implemented differently, so we
can limit the target area. */
void transform32_std(PyObject *pysrc, PyObject *pydst,
float corner_x, float corner_y,
float xdx, float ydx,
float xdy, float ydy,
int ashift, float a) {
int transform32_std(PyObject *pysrc, PyObject *pydst,
float corner_x, float corner_y,
float xdx, float ydx,
float xdy, float ydy,
int ashift,
float a,
int precise
) {
SDL_Surface *src;
SDL_Surface *dst;
@@ -978,12 +1003,13 @@ void transform32_std(PyObject *pysrc, PyObject *pydst,
int srcw, srch;
int dstw, dsth;
// The x and y source pixel coordinates, times 65536. And their
// delta-per-dest-x-pixel.
int sxi = 0, syi = 0, dsxi = 0, dsyi = 0;
unsigned char *srcpixels;
unsigned char *dstpixels;
float lsx, lsy; // The position of the current line in the source.
float sx, sy; // The position of the current pixel in the source.
src = PySurface_AsSurface(pysrc);
dst = PySurface_AsSurface(pydst);
@@ -998,81 +1024,113 @@ void transform32_std(PyObject *pysrc, PyObject *pydst,
srch = src->h;
dsth = dst->h;
unsigned int amul = (int) (a * 256);
// Compute the coloring multiplier.
unsigned int amul = (unsigned int) (a * 256);
// Compute the maximum x and y coordinates.
double maxsx = srcw - 1;
double maxsy = srch - 1;
lsx = corner_x * 65536;
lsy = corner_y * 65536;
// Deal with pre-6.10.1 versions of Ren'Py, which didn't give us
// that 1px border that allows us to be precise.
if (! precise) {
maxsx -= EPSILON;
maxsy -= EPSILON;
// If a delta is too even, subtract epsilon (towards 0) from it.
if (xdx && fabs(fmodf(1.0 / xdx, 1)) < EPSILON) {
xdx -= (xdx / fabs(xdx)) * EPSILON;
}
if (xdy && fabs(fmodf(1.0 / xdy, 1)) < EPSILON) {
xdy -= (xdy / fabs(xdy)) * EPSILON;
}
if (ydx && fabs(fmodf(1.0 / ydx, 1)) < EPSILON) {
ydx -= (ydx / fabs(ydx)) * EPSILON;
}
if (ydy && fabs(fmodf(1.0 / ydy, 1)) < EPSILON) {
ydy -= (ydy / fabs(ydy)) * EPSILON;
}
}
xdx *= 65536;
ydx *= 65536;
xdy *= 65536;
ydy *= 65536;
// Scaled subtracted srcw and srch.
float fsw = (srcw - 1) * 65536 - 1;
float fsh = (srch - 1) * 65536 - 1;
for (y = 0; y < dsth; y++, lsx += xdy, lsy += ydy) {
sx = lsx;
sy = lsy;
// Loop through every line.
for (y = 0; y < dsth; y++) {
// unsigned char *d = dstpixels + dstpitch * y;
// unsigned char *dend = d + 4 * dstw;
// The source coordinates of the leftmost pixel in the line.
double leftsx = corner_x + y * xdy;
double leftsy = corner_y + y * ydy;
float minx = 0;
float maxx = dstw - 1;
// Min and max x-extent to draw on the current line.
double minx = 0;
double maxx = dstw - 1;
if (xdx != 0) {
float d1 = -lsx / xdx;
float d2 = (fsw - lsx) / xdx;
// Figure out the x-extent based on xdx.
if (xdx) {
double x1 = (0.0 - leftsx) / xdx;
double x2 = (maxsx - leftsx) / xdx;
minx = fmaxf(minx, fminf(d1, d2));
maxx = fminf(maxx, fmaxf(d1, d2));
if (x1 < x2) {
minx = fmax(x1, minx);
maxx = fmin(x2, maxx);
} else {
minx = fmax(x2, minx);
maxx = fmin(x1, maxx);
}
} else {
if (leftsx < 0 || leftsx > maxsx) {
continue;
}
}
// Figure out the x-extent based on ydx.
if (ydx) {
double x1 = (0.0 - leftsy) / ydx;
double x2 = (maxsy - leftsy) / ydx;
if (x1 < x2) {
minx = fmax(x1, minx);
maxx = fmin(x2, maxx);
} else {
minx = fmax(x2, minx);
maxx = fmin(x1, maxx);
}
} else if ( lsx < 0 || lsx >= fsw) {
continue;
} else {
if (leftsy < 0 || leftsy > maxsy) {
continue;
}
}
if (ydx != 0) {
float d1 = -lsy / ydx;
float d2 = (fsh - lsy) / ydx;
minx = fmaxf(minx, fminf(d1, d2));
maxx = fminf(maxx, fmaxf(d1, d2));
} else if ( lsy < 0 || lsy >= fsh) {
continue;
}
if (minx > maxx) {
continue;
}
minx = ceil(minx);
maxx = floor(maxx);
if (minx >= maxx) {
continue;
}
// The start and end of line pointers.
unsigned char *d = dstpixels + dstpitch * y;
unsigned char *dend = d + 4 * (int) maxx;
// Advance start of line by 4.
d += 4 * (int) minx;
sx = lsx + minx * xdx;
sy = lsy + minx * ydx;
int sxi = (int) sx;
int syi = (int) sy;
int xdxi = (int) xdx;
int ydxi = (int) ydx;
// Starting coordinates and deltas.
sxi = (int) ((leftsx + minx * xdx) * 65536);
syi = (int) ((leftsy + minx * ydx) * 65536);
dsxi = (int) (xdx * 65536);
dsyi = (int) (ydx * 65536);
while (d <= dend) {
int px, py;
px = sxi >> 16;
py = syi >> 16;
int px = sxi >> 16;
int py = syi >> 16;
unsigned char *sp = srcpixels + py * srcpitch + px * 4;
int yfrac = (syi >> 8) & 0xff; // ((short) sy) & 0xff;
int xfrac = (sxi >> 8) & 0xff; // ((short) sx) & 0xff;
unsigned int yfrac = (syi >> 8) & 0xff; // ((short) sy) & 0xff;
unsigned int xfrac = (sxi >> 8) & 0xff; // ((short) sx) & 0xff;
unsigned int pal = *(unsigned int *) sp;
unsigned int pbl = *(unsigned int *) (sp + 4);
@@ -1104,46 +1162,53 @@ void transform32_std(PyObject *pysrc, PyObject *pydst,
dh = I(dh, rh, alpha);
* (unsigned int *) d = (dh << 8) | dl;
d += 4;
sxi += xdxi;
syi += ydxi;
sxi += dsxi;
syi += dsyi;
}
}
Py_END_ALLOW_THREADS
Py_END_ALLOW_THREADS;
// This is bogus, and only serves to ensure that the FPU
// computes these variables at the right times.
return sxi + syi + dsxi + dsyi;
}
#ifdef GCC_MMX
/****************************************************************************/
/* A similar concept to rotozoom, but implemented differently, so we
can limit the target area. */
int transform32_mmx(PyObject *pysrc, PyObject *pydst,
float corner_x, float corner_y,
float xdx, float ydx,
float xdy, float ydy,
int ashift,
float a) {
float corner_x, float corner_y,
float xdx, float ydx,
float xdy, float ydy,
int ashift,
float a,
int precise
) {
SDL_Surface *src;
SDL_Surface *dst;
int y;
int srcpitch, dstpitch;
int srcw, srch;
int dstw, dsth;
// The x and y source pixel coordinates, times 65536. And their
// delta-per-dest-x-pixel.
int sxi = 0, syi = 0, dsxi = 0, dsyi = 0;
unsigned char *srcpixels;
unsigned char *dstpixels;
float lsx, lsy; // The position of the current line in the source.
float sx, sy; // The position of the current pixel in the source.
unsigned int px, py;
unsigned int sxi, syi;
unsigned int xdxi, ydxi;
src = PySurface_AsSurface(pysrc);
dst = PySurface_AsSurface(pydst);
@@ -1163,63 +1228,101 @@ int transform32_mmx(PyObject *pysrc, PyObject *pydst,
// Compute the coloring multiplier.
unsigned int amul = (unsigned int) (a * 256);
// Compute the maximum x and y coordinates.
double maxsx = srcw - 1;
double maxsy = srch - 1;
lsx = corner_x * 65536;
lsy = corner_y * 65536;
xdx *= 65536;
ydx *= 65536;
xdy *= 65536;
ydy *= 65536;
// Scaled subtracted srcw and srch.
float fsw = (srcw - 1) * 65536 - 1;
float fsh = (srch - 1) * 65536 - 1;
for (y = 0; y < dsth; y++, lsx += xdy, lsy += ydy) {
float minx = 0;
float maxx = dstw - 1;
if (xdx != 0) {
float d1 = -lsx / xdx;
float d2 = (fsw - lsx) / xdx;
minx = fmaxf(minx, fminf(d1, d2));
maxx = fminf(maxx, fmaxf(d1, d2));
} else if ( lsx < 0 || lsx >= fsw) {
continue;
// Deal with pre-6.10.1 versions of Ren'Py, which didn't give us
// that 1px border that allows us to be precise.
if (! precise) {
maxsx -= EPSILON;
maxsy -= EPSILON;
// If a delta is too even, subtract epsilon (towards 0) from it.
if (xdx && fabs(fmodf(1.0 / xdx, 1)) < EPSILON) {
xdx -= (xdx / fabs(xdx)) * EPSILON;
}
if (ydx != 0) {
float d1 = -lsy / ydx;
float d2 = (fsh - lsy) / ydx;
minx = fmaxf(minx, fminf(d1, d2));
maxx = fminf(maxx, fmaxf(d1, d2));
} else if ( lsy < 0 || lsy >= fsh) {
continue;
if (xdy && fabs(fmodf(1.0 / xdy, 1)) < EPSILON) {
xdy -= (xdy / fabs(xdy)) * EPSILON;
}
if (minx > maxx) {
continue;
if (ydx && fabs(fmodf(1.0 / ydx, 1)) < EPSILON) {
ydx -= (ydx / fabs(ydx)) * EPSILON;
}
if (ydy && fabs(fmodf(1.0 / ydy, 1)) < EPSILON) {
ydy -= (ydy / fabs(ydy)) * EPSILON;
}
}
// Loop through every line.
for (y = 0; y < dsth; y++) {
// The source coordinates of the leftmost pixel in the line.
double leftsx = corner_x + y * xdy;
double leftsy = corner_y + y * ydy;
// Min and max x-extent to draw on the current line.
double minx = 0;
double maxx = dstw - 1;
// Figure out the x-extent based on xdx.
if (xdx) {
double x1 = (0.0 - leftsx) / xdx;
double x2 = (maxsx - leftsx) / xdx;
if (x1 < x2) {
minx = fmax(x1, minx);
maxx = fmin(x2, maxx);
} else {
minx = fmax(x2, minx);
maxx = fmin(x1, maxx);
}
} else {
if (leftsx < 0 || leftsx > maxsx) {
continue;
}
}
// Figure out the x-extent based on ydx.
if (ydx) {
double x1 = (0.0 - leftsy) / ydx;
double x2 = (maxsy - leftsy) / ydx;
if (x1 < x2) {
minx = fmax(x1, minx);
maxx = fmin(x2, maxx);
} else {
minx = fmax(x2, minx);
maxx = fmin(x1, maxx);
}
} else {
if (leftsy < 0 || leftsy > maxsy) {
continue;
}
}
minx = ceil(minx);
maxx = floor(maxx);
if (minx >= maxx) {
continue;
}
// The start and end of line pointers.
unsigned char *d = dstpixels + dstpitch * y;
unsigned char *dend = d + 4 * (int) maxx;
// Advance start of line by 4.
d += 4 * (int) minx;
sx = (lsx + minx * xdx);
sy = (lsy + minx * ydx);
sxi = (unsigned int) sx;
syi = (unsigned int) sy;
xdxi = (int) xdx;
ydxi = (int) ydx;
// Starting coordinates and deltas.
sxi = (int) ((leftsx + minx * xdx) * 65536);
syi = (int) ((leftsy + minx * ydx) * 65536);
dsxi = (int) (xdx * 65536);
dsyi = (int) (ydx * 65536);
// No floating point allowed between here and the end of the
// while loop.
@@ -1235,8 +1338,8 @@ int transform32_mmx(PyObject *pysrc, PyObject *pydst,
while (d <= dend) {
px = sxi >> 16;
py = syi >> 16;
int px = sxi >> 16;
int py = syi >> 16;
unsigned char *sp = srcpixels + py * srcpitch + px * 4;
@@ -1310,19 +1413,19 @@ int transform32_mmx(PyObject *pysrc, PyObject *pydst,
movd_r2m(mm1, *(unsigned int *)d);
d += 4;
sxi += xdxi;
syi += ydxi;
sxi += dsxi;
syi += dsyi;
}
emms();
}
Py_END_ALLOW_THREADS
Py_END_ALLOW_THREADS;
// This is bogus, and only serves to ensure that the FPU
// computes these variables at the right times.
return sxi + syi + xdxi + ydxi;
// This is bogus, and only serves to ensure that the FPU
// computes these variables at the right times.
return sxi + syi + dsxi + dsyi;
}
#endif
@@ -1332,7 +1435,9 @@ void transform32_core(PyObject *pysrc, PyObject *pydst,
float xdx, float ydx,
float xdy, float ydy,
int ashift,
float a) {
float a,
int precise
) {
#ifdef GCC_MMX
static int checked_mmx = 0;
@@ -1345,14 +1450,14 @@ void transform32_core(PyObject *pysrc, PyObject *pydst,
if (has_mmx) {
transform32_mmx(pysrc, pydst, corner_x, corner_y,
xdx, ydx, xdy, ydy, ashift, a);
xdx, ydx, xdy, ydy, ashift, a, precise);
return;
}
#endif
transform32_std(pysrc, pydst, corner_x, corner_y,
xdx, ydx, xdy, ydy, ashift, a);
xdx, ydx, xdy, ydy, ashift, a, precise);
}
+3 -2
View File
@@ -75,7 +75,8 @@ void alphamunge_core(PyObject *pysrc,
void scale32_core(PyObject *pysrc,
PyObject *pydst,
float, float, float, float,
float, float, float, float);
float, float, float, float,
int);
void scale24_core(PyObject *pysrc,
PyObject *pydst,
@@ -87,7 +88,7 @@ void transform32_core(PyObject *pysrc,
float, float,
float, float,
float, float,
int, float);
int, float, int);
void blend32_core(PyObject *pysrca,
PyObject *pysrcb,
+3 -2
View File
@@ -601,12 +601,13 @@ static void font_dealloc(PyFontObject* self)
static int font_init(PyFontObject *self, PyObject *args, PyObject *kwds)
{
int index = 0;
int fontsize;
RENPY_TTF_Font* font = NULL;
PyObject* fileobj;
self->font = NULL;
if(!PyArg_ParseTuple(args, "Oi|iff", &fileobj, &fontsize))
if(!PyArg_ParseTuple(args, "Oi|i", &fileobj, &fontsize, &index))
return -1;
if(!font_initialized)
@@ -674,7 +675,7 @@ static int font_init(PyFontObject *self, PyObject *args, PyObject *kwds)
return -1;
}
// Py_BEGIN_ALLOW_THREADS
font = RENPY_TTF_OpenFontIndexRW(rw, 1, fontsize, 0);
font = RENPY_TTF_OpenFontIndexRW(rw, 1, fontsize, index);
// Py_END_ALLOW_THREADS
#else
Py_DECREF(fileobj);
+42
View File
@@ -0,0 +1,42 @@
#include <Python.h>
#include <fribidi/fribidi.h>
/* This is easier than trying to figure out the header that alloca is */
/* defined in. */
void *alloca(size_t size);
PyObject *renpybidi_log2vis(PyObject *s, int *direction) {
char *src;
int size;
FriBidiChar *srcuni;
int unisize;
FriBidiChar *dstuni;
char *dst;
src = PyString_AsString(s);
if (src == NULL) {
return NULL;
}
size = PyString_Size(s);
srcuni = (FriBidiChar *) alloca(size * 4);
dstuni = (FriBidiChar *) alloca(size * 4);
dst = (char *) alloca(size * 4);
unisize = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, src, size, srcuni);
fribidi_log2vis(
srcuni,
unisize,
direction,
dstuni,
NULL,
NULL,
NULL);
fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, dstuni, unisize, dst);
return PyString_FromString(dst);
}
+26 -9
View File
@@ -16,7 +16,6 @@ extra_compile_args = [ "-O3", "-funroll-loops" ]
# extra_compile_args = [ "-O0", "-ggdb" ]
# extra_compile_args = [ "-O0", "-gstabs" ]
# This environment variable should have the full path to the installed
# Ren'Py dependencies.
install = os.environ.get("RENPY_DEPS_INSTALL", None)
@@ -75,7 +74,7 @@ def add_include(prefix, file):
if dir not in include_dirs:
include_dirs.append(dir)
def add_library(name):
def add_library(name, optional=False):
"""
This looks for a library named name in the <i> and <i>/lib, for all
<i> in install. When found, it adds it to library_dirs.
@@ -96,8 +95,11 @@ def add_library(name):
if dir not in library_dirs:
library_dirs.append(dir)
return
return True
if optional:
return False
print "Couldn't find library %s." % name
print "The paths searched were:"
for i in checked:
@@ -115,21 +117,24 @@ add_include("", "libavcodec/avcodec.h")
add_include("", "libswscale/swscale.h")
add_library("libSDL")
add_library("libz")
add_library("libpng")
add_library("libavformat")
add_library("libavcodec")
add_library("libavutil")
has_swscale = add_library("libswscale", True)
add_library("libfreetype")
add_library("libfribidi")
add_library("libz")
extra_link_args = [ ]
sdl_libraries = [ 'SDL' ]
sound_libraries = [ "avformat", "avcodec", "avutil", "z" ]
png_libraries = [ 'png', "z" ]
sound_libraries = [ "avformat", "avcodec", "avutil", "z" ]
if has_swscale:
sound_libraries.insert(0, "swscale")
# The following turn on optional modules.
winmixer = None
linmixer = None
@@ -168,7 +173,7 @@ renpy_font = distutils.core.Extension(
library_dirs=library_dirs,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
libraries=sdl_libraries + [ 'freetype' ],
libraries=sdl_libraries + [ 'freetype', 'z' ],
)
extensions.append(renpy_font)
@@ -197,9 +202,21 @@ if winmixer:
if linmixer:
py_modules.append('pysdlsound.linmixer')
renpybidi = distutils.core.Extension(
"_renpybidi",
["_renpybidi.c", "renpybidicore.c"],
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=['fribidi'],
)
extensions.append(renpybidi)
distutils.core.setup(
name = "renpy_module",
version = "6.9.1",
version = "6.10.1",
ext_modules = extensions,
py_modules = py_modules,
package_dir = { '' : 'lib' },
+3453
View File
File diff suppressed because it is too large Load Diff
+1825
View File
File diff suppressed because it is too large Load Diff
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 86 KiB

+9 -5
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# Copyright 2004-2007 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -25,6 +25,7 @@ import os
import os.path
import sys
import platform
import warnings
# Functions to be customized by distributors. ################################
@@ -81,9 +82,9 @@ def path_to_renpy_base():
##############################################################################
# The version of the Mac Launcher and py4renpy that we use.
macos_version = (6, 9, 3)
linux_version = (6, 9, 3)
# The version of the Mac Launcher and py4renpy that we require.
macos_version = (6, 10, 1)
linux_version = (6, 10, 1)
if __name__ == "__main__":
@@ -91,7 +92,7 @@ if __name__ == "__main__":
# Check for mac compatibility.
if "mac_version" in globals():
mac_version(macos_version)
globals()["mac_version"](macos_version)
# Check py4renpy compatibility.
try:
@@ -116,6 +117,9 @@ if __name__ == "__main__":
if os.path.exists(renpy_base + "/renpy.zip"):
sys.path.append(renpy_base + "/renpy.zip")
# Ignore warnings that happen.
warnings.simplefilter("ignore", DeprecationWarning)
# Start Ren'Py proper.
try:
+16 -7
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -27,7 +27,7 @@
# ***** ***** ***** ***** ***** ***** **** ***** ***** ***** *****
# Be sure to change script_version in launcher/script_version.rpy, too!
# Also check to see if we have to update renpy.py.
version = "Ren'Py 6.9.3a"
version = "Ren'Py 6.10.2d"
script_version = 5003000
savegame_suffix = "-LT1.save"
@@ -42,6 +42,7 @@ def import_all():
import renpy.loader
import renpy.ast
import renpy.atl
import renpy.curry
import renpy.easy
import renpy.execution
@@ -55,7 +56,8 @@ def import_all():
import renpy.display
import renpy.display.presplash
import renpy.display.iliad # Must be before scale.
import renpy.display.iliad # Must be before scale and pgrender.
import renpy.display.pgrender
import renpy.display.scale # Must be before module.
import renpy.display.module
import renpy.display.render # Most display stuff depends on this.
@@ -101,15 +103,22 @@ def import_all():
# This reloads all modules.
def reload_all():
# Shut down the cache thread.
display.im.cache.quit()
import renpy
# Shut down the cache thread.
renpy.display.im.cache.quit()
# Cleans out the RenpyImporter.
import sys
sys.meta_path.pop()
blacklist = [ "renpy", "renpy.bootstrap", "renpy.display", "renpy.display.iliad", "renpy.display.scale" ]
blacklist = [ "renpy",
"renpy.bootstrap",
"renpy.display",
"renpy.display.iliad",
"renpy.display.pgrender",
"renpy.display.scale" ]
for i in sys.modules.keys():
if i.startswith("renpy") and i not in blacklist:
+155 -44
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -92,7 +92,7 @@ class PyExpr(unicode):
return self
def __getnewargs__(self):
return (unicode(self), self.filename, self.linenumber)
return (unicode(self), self.filename, self.linenumber) # E1101
class PyCode(object):
@@ -185,8 +185,8 @@ class Node(object):
"""
self.filename, self.linenumber = loc
self.name = None
self.next = None
def diff_info(self):
"""
@@ -267,7 +267,7 @@ class Node(object):
"""
rv = Scry()
rv._next = self.next
rv._next = self.next # W0201
return rv
def say_menu_with(expression, callback):
@@ -335,7 +335,7 @@ class Say(Node):
what = self.what
if renpy.config.say_menu_text_filter:
what = renpy.config.say_menu_text_filter(what)
what = renpy.config.say_menu_text_filter(what) # E1102
say_menu_with(self.with_, renpy.game.interface.set_transition)
renpy.exports.say(who, what, interact=getattr(self, 'interact', True))
@@ -373,11 +373,11 @@ class Say(Node):
def scry(self):
rv = Node.scry(self)
rv.interacts = True
rv.interacts = True # W0201
return rv
# Copy the descriptor.
setattr(Say, "with", Say.with_)
setattr(Say, "with", Say.with_) # E1101
class Init(Node):
@@ -600,9 +600,10 @@ class Image(Node):
__slots__ = [
'imgname',
'code',
'atl',
]
def __init__(self, loc, name, expr):
def __init__(self, loc, name, expr=None, atl=None):
"""
@param name: The name of the image being defined.
@@ -613,35 +614,94 @@ class Image(Node):
super(Image, self).__init__(loc)
self.imgname = name
self.code = PyCode(expr, loc=loc, mode='eval')
if expr:
self.code = PyCode(expr, loc=loc, mode='eval')
self.atl = None
else:
self.code = None
self.atl = atl
def diff_info(self):
return (Image, tuple(self.imgname))
def get_pycode(self):
return [ self.code ]
def execute(self):
if self.code:
return [ self.code ]
else:
return [ ]
img = renpy.python.py_eval_bytecode(self.code.bytecode)
def execute(self):
# Note: We should always check that self.code is None before
# accessing self.atl, as self.atl may not always exist.
if self.code is not None:
img = renpy.python.py_eval_bytecode(self.code.bytecode)
else:
img = renpy.display.motion.ATLTransform(self.atl)
renpy.exports.image(self.imgname, img)
return self.next
class Transform(Node):
__slots__ = [
# The name of the transform.
'varname',
# The block of ATL associated with the transform.
'atl',
# The parameters associated with the transform, if any.
'parameters',
]
default_parameters = ParameterInfo([ ], [ ], None, None)
def __init__(self, loc, name, atl=None, parameters=default_parameters):
super(Transform, self).__init__(loc)
self.varname = name
self.atl = atl
self.parameters = parameters
def diff_info(self):
return (Transform, self.varname)
def execute(self):
parameters = getattr(self, "parameters", None)
if parameters is None:
parameters = Transform.default_parameters
trans = renpy.display.motion.ATLTransform(self.atl, parameters=parameters)
renpy.exports.definitions[self.varname].append((self.filename, self.linenumber, "transform"))
setattr(renpy.store, self.varname, trans)
return self.next
def predict_imspec(imspec, callback, scene=False):
"""
Call this to use the given callback to predict the image named
in imspec.
"""
if len(imspec) == 3:
name, at_list, layer = imspec
if len(imspec) == 7:
name, expression, tag, at_list, layer, zorder, behind = imspec
elif len(imspec) == 6:
name, expression, tag, at_list, layer, zorder = imspec
elif len(imspec) == 7:
name, expression, tag, at_list, layer, zorder, behind = imspec
elif len(imspec) == 3:
name, at_list, layer = imspec
if expression:
@@ -666,20 +726,23 @@ def predict_imspec(imspec, callback, scene=False):
renpy.game.context().predict_info.images.predict_show(tag or name, layer)
img.predict(callback)
def show_imspec(imspec):
if len(imspec) == 3:
def show_imspec(imspec, atl=None):
if len(imspec) == 7:
name, expression, tag, at_list, layer, zorder, behind = imspec
elif len(imspec) == 6:
name, expression, tag, at_list, layer, zorder = imspec
behind = [ ]
elif len(imspec) == 3:
name, at_list, layer = imspec
expression = None
tag = None
zorder = None
behind = [ ]
elif len(imspec) == 6:
name, expression, tag, at_list, layer, zorder = imspec
behind = [ ]
elif len(imspec) == 7:
name, expression, tag, at_list, layer, zorder, behind = imspec
if zorder is not None:
zorder = renpy.python.py_eval(zorder)
@@ -692,17 +755,23 @@ def show_imspec(imspec):
at_list = [ renpy.python.py_eval(i) for i in at_list ]
renpy.config.show(name, at_list=at_list, layer=layer,
what=expression, zorder=zorder, tag=tag, behind=behind)
renpy.config.show(name,
at_list=at_list,
layer=layer,
what=expression,
zorder=zorder,
tag=tag,
behind=behind,
atl=atl)
class Show(Node):
__slots__ = [
'imspec',
'atl',
]
def __init__(self, loc, imspec):
def __init__(self, loc, imspec, atl=None):
"""
@param imspec: A triple consisting of an image name (itself a
tuple of strings), a list of at expressions, and a layer.
@@ -711,13 +780,14 @@ class Show(Node):
super(Show, self).__init__(loc)
self.imspec = imspec
self.atl = atl
def diff_info(self):
return (Show, tuple(self.imspec[0]))
def execute(self):
show_imspec(self.imspec)
show_imspec(self.imspec, atl=getattr(self, "atl", None))
return self.next
@@ -731,9 +801,10 @@ class Scene(Node):
__slots__ = [
'imspec',
'layer',
'atl',
]
def __init__(self, loc, imgspec, layer):
def __init__(self, loc, imgspec, layer, atl=None):
"""
@param imspec: A triple consisting of an image name (itself a
tuple of strings), a list of at expressions, and a layer, or
@@ -744,6 +815,7 @@ class Scene(Node):
self.imspec = imgspec
self.layer = layer
self.atl = atl
def diff_info(self):
@@ -759,20 +831,18 @@ class Scene(Node):
renpy.config.scene(self.layer)
if self.imspec:
show_imspec(self.imspec)
show_imspec(self.imspec, atl=getattr(self, "atl", None))
return self.next
def predict(self, callback):
if self.imspec:
predict_imspec(self.imspec, callback, scene=True)
return [ self.next ]
class Hide(Node):
__slots__ = [
@@ -829,6 +899,7 @@ class Hide(Node):
return self.next
class With(Node):
__slots__ = [
@@ -836,7 +907,6 @@ class With(Node):
'paired',
]
def __setstate__(self, state):
self.paired = None
setstate(self, state)
@@ -879,7 +949,6 @@ class With(Node):
return [ self.next ]
class Call(Node):
@@ -909,6 +978,9 @@ class Call(Node):
if self.expression:
label = renpy.python.py_eval(label)
rv = renpy.game.context().call(label, return_site=self.next.name)
renpy.game.context().abnormal = True
if self.arguments:
args = [ ]
@@ -941,8 +1013,6 @@ class Call(Node):
renpy.store._kwargs = kwargs
rv = renpy.game.context().call(label, return_site=self.next.name)
renpy.game.context().abnormal = True
return rv
@@ -956,7 +1026,8 @@ class Call(Node):
rv = Node.scry(self)
rv._next = None
return rv
class Return(Node):
__slots__ = [ 'expression']
@@ -999,6 +1070,7 @@ class Return(Node):
rv = Node.scry(self)
rv._next = None
return rv
class Menu(Node):
@@ -1008,7 +1080,6 @@ class Menu(Node):
'with_',
]
def __init__(self, loc, items, set, with_):
super(Menu, self).__init__(loc)
@@ -1084,7 +1155,8 @@ class Menu(Node):
rv.interacts = True
return rv
setattr(Menu, "with", Menu.with_)
setattr(Menu, "with", Menu.with_) # E1101
# Goto is considered harmful. So we decided to name it "jump"
# instead.
@@ -1134,7 +1206,8 @@ class Jump(Node):
rv._next = renpy.game.script.lookup(self.target)
return rv
# GNDN
class Pass(Node):
@@ -1146,6 +1219,7 @@ class Pass(Node):
def execute(self):
return self.next
class While(Node):
__slots__ = [
@@ -1232,6 +1306,7 @@ class If(Node):
rv._next = None
return rv
class UserStatement(Node):
__slots__ = [ 'line', 'parsed' ]
@@ -1283,3 +1358,39 @@ class UserStatement(Node):
return rv
class Define(Node):
__slots__ = [
'varname',
'code',
]
def __init__(self, loc, name, expr):
"""
@param name: The name of the image being defined.
@param expr: An expression yielding a Displayable that is
assigned to the image.
"""
super(Define, self).__init__(loc)
self.varname = name
self.code = PyCode(expr, loc=loc, mode='eval')
def diff_info(self):
return (Define, tuple(self.varname))
def get_pycode(self):
if self.code:
return [ self.code ]
else:
return [ ]
def execute(self):
value = renpy.python.py_eval_bytecode(self.code.bytecode)
renpy.exports.definitions[self.varname].append((self.filename, self.linenumber, "define"))
setattr(renpy.store, self.varname, value)
return self.next
+1501
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
+19 -11
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -26,10 +26,10 @@
import renpy
import time
import pygame
import os
import atexit
import time
# Import the appropriate modules, or set them to None if we cannot.
@@ -48,15 +48,18 @@ if 'pss' not in disable:
if 'mix' not in disable:
try:
import winmixer as mix
import winmixer as mix; mix
except:
try:
import linmixer as mix
import linmixer as mix; mix
except:
pass
# Save the mixer, and restore it at exit.
old_wave = None
old_midi = None
if mix:
mixer_enabled = False
@@ -139,6 +142,8 @@ class MusicContext(renpy.python.RevertableObject):
def __init__(self):
super(MusicContext, self).__init__()
# The time this channel was last ordered panned.
self.pan_time = None
@@ -283,7 +288,7 @@ class Channel(object):
rv = mcd.get(self.name)
if rv is None:
rv = mcd[self.name] = MusicContext();
rv = mcd[self.name] = MusicContext()
return rv
@@ -368,6 +373,12 @@ class Channel(object):
self.playing = True
except:
# If playing failed, remove topq.filename from self.loop
# so we don't keep trying.
while topq.filename in self.loop:
self.loop.remove(topq.filename)
if renpy.config.debug_sound:
raise
else:
@@ -384,7 +395,7 @@ class Channel(object):
# Queue empty callback.
if do_callback and self.callback:
self.callback()
self.callback() # E1102
def dequeue(self, even_tight=False):
"""
@@ -424,11 +435,9 @@ class Channel(object):
pss.set_secondary_volume(self.number,
self.context.secondary_volume,
0)
self.pan_delay = 0
if not self.queue and self.callback:
self.callback()
self.callback() # E1102
def fadeout(self, secs):
@@ -591,7 +600,6 @@ def init():
def quit():
global pcm_ok
global midi_ok
global mix_ok
if not pcm_ok:
@@ -779,7 +787,7 @@ def event(ev):
if ev.type == REFRESH_EVENT:
if renpy.audio.music.get_playing("movie"):
pss.refresh_event()
# Return False, as a Movie should get this to know when to
# redraw itself.
return False
+3 -3
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -21,7 +21,6 @@
# The public API for music in games.
import time
import renpy
# A list of music channels.
@@ -34,6 +33,7 @@ from renpy.audio.audio import get_channel, get_serial
# Part of the public api:
from renpy.audio.audio import register_channel, alias_channel
register_channel; alias_channel
def play(filenames, channel="music", loop=None, fadeout=None, synchro_start=False, fadein=0, tight=None, if_changed=False):
"""
@@ -333,7 +333,7 @@ def channel_defined(channel):
"""
try:
c = renpy.audio.audio.get_channel(channel)
renpy.audio.audio.get_channel(channel)
return True
except:
return False
+1 -1
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
+37 -30
View File
@@ -26,7 +26,7 @@ import sys
# Extra things used for distribution.
def extra_imports():
import datetime
import datetime; datetime
import encodings.ascii
import encodings.utf_8
import encodings.zlib_codec
@@ -35,29 +35,29 @@ def extra_imports():
import encodings.raw_unicode_escape
import encodings.mbcs
import encodings.utf_16_be
import encodings.utf_16_le
import math
import glob
import pickle
import platform
import encodings.utf_16_le; encodings.utf_16_le
import math; math
import glob; glob
import pickle; pickle
import platform; platform
import pysdlsound
import pysdlsound.sound
import pysdlsound.winmixer
import pysdlsound.linmixer
import difflib
import shutil
import pysdlsound.linmixer; pysdlsound.linmixer
import difflib; difflib
import shutil; shutil
import renpy.tools.archiver
import renpy.tools.add_from
import tarfile
import bz2
import webbrowser
import renpy.tools.add_from; renpy.tools.add_from
import tarfile; tarfile
import bz2; bz2
import webbrowser; webbrowser
import pygame.locals
import pygame.color
import pygame.colordict
import posixpath
import pygame.colordict; pygame.colordict
import posixpath; posixpath # W0403
import ctypes
import ctypes.wintypes
import EasyDialogs
import ctypes.wintypes; ctypes.wintypes
import EasyDialogs; EasyDialogs
trace_file = None
trace_local = None
@@ -90,16 +90,18 @@ def popen_del(self, _deadstate=sys.maxint):
self.poll(_deadstate=_deadstate)
try:
import subprocess
if self.returncode is None and subprocess._active is not None:
subprocess._active.append(self)
import subprocess # W0403
if self.returncode is None and subprocess._active is not None: # E1101
subprocess._active.append(self) # E1101
except:
pass
def bootstrap(renpy_base):
global renpy
global renpy # W0602
os.environ["RENPY_BASE"] = os.path.abspath(renpy_base)
# If environment.txt exists, load it into the os.environ dictionary.
if os.path.exists(renpy_base + "/environment.txt"):
evars = { }
@@ -224,12 +226,12 @@ def bootstrap(renpy_base):
# Show the presplash.
if not options.lint and not options.compile and not options.version and not options.rmpersistent:
import renpy.display.presplash
import renpy.display.presplash # W0404
renpy.display.presplash.start(gamedir)
# Fix an exception thrown by garbage collection.
import subprocess
subprocess.Popen.__del__ = popen_del
import subprocess # W0403
subprocess.Popen.__del__ = popen_del # E1101
# If we're on a mac, install our own os.start.
if sys.platform == "darwin":
@@ -264,7 +266,7 @@ def bootstrap(renpy_base):
break
except renpy.game.UtterRestartException:
# Only works after a full restart.
report_error = renpy.display.error.ReportError()
@@ -292,6 +294,8 @@ def bootstrap(renpy_base):
if options.leak:
memory_profile()
renpy.display.im.cache.quit()
sys.exit(0)
@@ -309,6 +313,8 @@ def report_tb(out, tb):
elif 'self' in f.f_locals:
obj = f.f_locals['self']
import renpy
if isinstance(obj, renpy.execution.Context):
obj.report_tb(out)
@@ -323,12 +329,15 @@ def report_exception(e):
type, value, tb = sys.exc_info()
def safe_utf8(e):
m = e.message
try:
m = unicode(e)
except:
m = str(e)
if isinstance(m, unicode):
return m.encode("utf-8")
else:
return str(m)
return m
# Outside of the file.
traceback.print_tb(tb, None, sys.stdout)
@@ -387,8 +396,6 @@ def report_exception(e):
def memory_profile():
import renpy
print "Memory Profile"
print
print "Showing all objects in memory at program termination."
+27 -11
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -42,7 +42,8 @@ def predict_show_display_say(who, what, who_args, what_args, window_args, image=
rv.append(renpy.game.style.say_who_window.background)
if image:
rv.append(renpy.display.im.image(who, True))
if image != "<Dynamic>":
rv.append(renpy.display.im.image(who, True))
if side_image:
rv.append(renpy.display.im.image(side_image, True))
@@ -54,6 +55,7 @@ def show_display_say(who, what, who_args={}, what_args={}, window_args={},
two_window_vbox_properties={},
who_window_properties={},
say_vbox_properties={},
transform=None,
variant=None,
**kwargs):
"""
@@ -141,6 +143,10 @@ def show_display_say(who, what, who_args={}, what_args={}, window_args={},
who_args = style_args(who_args)
what_args = style_args(what_args)
window_args = style_args(window_args)
# Apply the transform.
if transform:
renpy.ui.at(transform)
if two_window:
@@ -208,9 +214,10 @@ def display_say(show_function,
with_none,
callback,
type,
checkpoint=True):
checkpoint=True,
ctc_timedpause=None,
ctc_force=False):
ctc = renpy.easy.displayable_or_none(ctc)
# If we're in fast skipping mode, don't bother with say
# statements at all.
@@ -284,10 +291,21 @@ def display_say(show_function,
# Update the properties of the what_text widget.
if pause is not None and pause < what_text.pauses:
what_ctc = ctc_pause
if what_text.pause_lengths[pause] is not None:
what_ctc = ctc_timedpause or ctc_pause
else:
what_ctc = ctc_pause
else:
what_ctc = ctc
if not (interact or ctc_force):
what_ctc = None
what_ctc = renpy.easy.displayable_or_none(what_ctc)
if what_ctc is not None:
what_ctc = what_ctc.parameterize(('ctc',), ())
# This object is called when the slow text is done.
slow_done = SlowDone(what_ctc, ctc_position, callback, interact, type, cb_args)
@@ -311,9 +329,9 @@ def display_say(show_function,
for c in callback:
c("show_done", interact=interact, type=type, **cb_args)
if behavior and afm:
behavior.set_afm_length(what_text.get_simple_length() - slow_start)
behavior.set_afm_length(what_text.get_simple_length() - slow_start) # E1103
if interact:
@@ -421,6 +439,7 @@ class ADVCharacter(object):
afm = d('afm'),
ctc = renpy.easy.displayable_or_none(d('ctc')),
ctc_pause = renpy.easy.displayable_or_none(d('ctc_pause')),
ctc_timedpause = renpy.easy.displayable_or_none(d('ctc_timedpause')),
ctc_position = d('ctc_position'),
all_at_once = d('all_at_once'),
with_none = d('with_none'),
@@ -557,9 +576,6 @@ class ADVCharacter(object):
def predict(self, what):
if self.dynamic and self.image:
return [ ]
if self.dynamic:
who = "<Dynamic>"
else:
+32 -3
View File
@@ -1,4 +1,5 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -194,6 +195,7 @@ keymap = dict(
focus_down = [ 'K_DOWN', 'joy_down' ],
# Button.
button_ignore = [ 'mousedown_1' ],
button_select = [ 'mouseup_1', 'K_RETURN', 'K_KP_ENTER', 'joy_dismiss' ],
# Input.
@@ -216,6 +218,9 @@ keymap = dict(
bar_deactivate = [ 'mouseup_1', 'K_RETURN', 'K_KP_ENTER', 'joy_dismiss' ],
bar_decrease = [ 'K_LEFT', 'joy_left' ],
bar_increase = [ 'K_RIGHT', 'joy_right' ],
# Delete a save.
save_delete = [ 'K_DELETE' ],
)
# Should we try to support joysticks?
@@ -388,9 +393,33 @@ label_callback = None
# A function that is called when the window needs to be shown.
empty_window = None
# A list of functions that are called when the window is shown.
window_overlay_functions = [ ]
# Do we support right-to-left languages?
rtl = False
# A callback for file opening.
file_open_callback = None
# The size of screenshot thumbnails. (Redefined in common/)
thumbnail_width = None
thumbnail_height = None
# The end game transition.
end_game_transition = None
# The default transform.
default_transform = None
# Various directories.
gamedir = None
basedir = None
renpy_base = None
del renpy
def init():
import renpy
global properties
import renpy # W0404
global style_properties
style_properties = renpy.style.style_properties
+1 -1
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
+1 -1
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
+5 -28
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -22,7 +22,6 @@
# This file contains support for state-machine controlled animations.
import renpy
import pygame
import random
class State(object):
@@ -77,7 +76,7 @@ class State(object):
def motion_copy(self, child):
if self.image is not None:
child = self.mage
child = self.image
return State(self.name, child, *self.atlist)
@@ -557,34 +556,12 @@ class Blink(renpy.display.core.Displayable):
rend = renpy.display.render.render(self.image, height, width, st, at)
if not renpy.display.module.can_linmap:
return rend
w, h = rend.get_size()
rv = renpy.display.render.Render(w, h)
if renpy.game.less_updates:
alpha = 1.0
oldsurf = rend.pygame_surface()
if not (oldsurf.get_masks()[3]):
oldsurf = oldsurf.convert_alpha(renpy.game.interface.display.window)
newsurf = pygame.Surface(oldsurf.get_size(), oldsurf.get_flags(), oldsurf)
# amap = renpy.display.im.ramp(0, int(alpha * 255.0))
# identity = renpy.display.im.identity
renpy.display.module.linmap(oldsurf, newsurf,
256, 256, 256, int(alpha * 256.0))
renpy.display.render.mutated_surface(newsurf)
rv.blit(newsurf, (0, 0))
rv.depends_on(rend)
rv.blit(rend, (0, 0))
rv.alpha = alpha
if not renpy.game.less_updates:
renpy.display.render.redraw(self, delay)
+150 -28
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -26,7 +26,6 @@ import renpy
from renpy.display.render import render
import pygame
from pygame.constants import *
def compile_event(key, keydown):
"""
@@ -330,9 +329,11 @@ class SayBehavior(renpy.display.layout.Null):
class Button(renpy.display.layout.Window):
keymap = { }
def __init__(self, child, style='button', clicked=None,
hovered=None, unhovered=None, role='',
time_policy=None,
time_policy=None, keymap={},
**properties):
super(Button, self).__init__(child, style=style, **properties)
@@ -343,7 +344,8 @@ class Button(renpy.display.layout.Window):
self.unhovered = unhovered
self.focusable = clicked is not None
self.role = role
self.keymap = keymap
self.time_policy_data = None
@@ -393,31 +395,59 @@ class Button(renpy.display.layout.Window):
if self.activated:
return None
rv = None
if self.hovered and not default:
return self.hovered()
rv = self.hovered()
self.set_transform_event(self.role + "hover")
self.child.set_transform_event(self.role + "hover")
return rv
def unfocus(self):
super(Button, self).unfocus()
if self.activated:
return None
if self.unhovered:
self.unhovered()
self.set_transform_event(self.role + "idle")
self.child.set_transform_event(self.role + "idle")
def per_interact(self):
if not self.clicked:
self.set_style_prefix(self.role + "insensitive_")
self.set_style_prefix(self.role + "insensitive_", True)
super(Button, self).per_interact()
def event(self, ev, x, y, st):
# If we have a child, try passing the event to it.
rv = super(Button, self).event(ev, x, y, st)
if rv is not None:
return rv
# If not focused, ignore all events.
if not self.is_focused():
return None
# Check the keymap.
for name, action in self.keymap.iteritems():
if map_event(ev, name):
rv = action()
if rv is not None:
return rv
# Ignore as appropriate:
if map_event(ev, "button_ignore") and self.clicked:
raise renpy.display.core.IgnoreEvent()
# If clicked,
if map_event(ev, "button_select") and self.clicked:
@@ -435,15 +465,20 @@ class Button(renpy.display.layout.Window):
self.activated = False
if self.is_focused():
self.set_style_prefix(self.role + "hover_")
self.set_style_prefix(self.role + "hover_", True)
else:
self.set_style_prefix(self.role + "idle_")
self.set_style_prefix(self.role + "idle_", True)
raise renpy.display.core.IgnoreEvent()
return None
def set_style_prefix(self, prefix, root):
if root:
super(Button, self).set_style_prefix(prefix, root)
# Reimplementation of the TextButton widget as a Button and a Text
# widget.
def TextButton(text, style='button', text_style='button_text',
@@ -452,39 +487,108 @@ def TextButton(text, style='button', text_style='button_text',
text = renpy.display.text.Text(text, style=text_style)
return Button(text, style=style, clicked=clicked, **properties)
# This is used for an input that takes its focus from a button.
class HoveredProxy(object):
def __init__(self, a, b):
self.a = a
self.b = b
def __call__(self):
self.a()
if self.b:
return self.b()
class Input(renpy.display.text.Text):
"""
This is a Displayable that takes text as input.
"""
changed = None
prefix = ""
suffix = ""
def __init__(self, default, length=None,
style='input_text',
allow=None,
exclude=None,
prefix="",
suffix="",
changed=None,
button=None,
**properties):
super(Input, self).__init__(default.replace("{", "{{") + "_", style=style, **properties)
super(Input, self).__init__("", style=style, **properties)
self.content = unicode(default)
self.length = length
self.allow = allow
self.exclude = exclude
self.prefix = prefix
self.suffix = suffix
self.changed = changed
self.editable = True
caretprops = { 'color' : None}
for i in properties:
if i.endswith("color"):
caretprops[i] = properties[i]
self.caret = renpy.display.image.Solid(xmaximum=1, style=style, **caretprops)
if button:
self.editable = False
button.hovered = HoveredProxy(self.enable, button.hovered)
button.unhovered = HoveredProxy(self.disable, button.unhovered)
self.update_text(self.content, self.editable)
def update_text(self, content, editable):
if content != self.content or editable != self.editable:
renpy.display.render.redraw(self, 0)
if content != self.content:
self.content = content
if self.changed:
self.changed(content)
self.editable = editable
if editable:
self.set_text([self.prefix, content.replace("{", "{{"), self.suffix, self.caret])
else:
self.set_text([self.prefix, content.replace("{", "{{"), self.suffix ])
def enable(self):
self.update_text(self.content, True)
def disable(self):
self.update_text(self.content, False)
def event(self, ev, x, y, st):
if not self.editable:
return None
if map_event(ev, "input_backspace"):
if self.content:
self.content = self.content[:-1]
self.set_text(self.content.replace("{", "{{") + "_")
if self.content:
content = self.content[:-1]
self.update_text(content, self.editable)
renpy.display.render.redraw(self, 0)
elif map_event(ev, "input_enter"):
return self.content
if not self.changed:
return self.content
elif ev.type == KEYDOWN and ev.unicode:
elif ev.type == pygame.KEYDOWN and ev.unicode:
if ord(ev.unicode[0]) < 32:
return None
@@ -497,10 +601,9 @@ class Input(renpy.display.text.Text):
if self.exclude and ev.unicode in self.exclude:
raise renpy.display.core.IgnoreEvent()
self.content += ev.unicode
content = self.content + ev.unicode
self.set_text(self.content.replace("{", "{{") + "_")
renpy.display.render.redraw(self, 0)
self.update_text(content, self.editable)
raise renpy.display.core.IgnoreEvent()
@@ -513,6 +616,8 @@ adj_registered = { }
class Adjustment(renpy.object.Object):
def __init__(self, range=1, value=0, step=None, page=0, changed=None, adjustable=True, ranged=None):
super(Adjustment, self).__init__()
self._value = value
self._range = range
self._page = page
@@ -595,14 +700,14 @@ class Bar(renpy.display.core.Displayable):
__version__ = 1
def after_upgrade(version):
def after_upgrade(self, version):
if version < 1:
self.adjustment = Adjustment(self.range, self.value, changed=self.changed)
self.adjustment = Adjustment(self.range, self.value, changed=self.changed) # E1101
self.adjustment.register(self)
del self.range
del self.value
del self.changed
del self.range # E1101
del self.value # E1101
del self.changed # E1101
def __init__(self,
range=None,
@@ -630,6 +735,12 @@ class Bar(renpy.display.core.Displayable):
self.adjustment = adjustment
self.focusable = adjustment.adjustable
# These are set when we are first rendered.
self.thumb_dim = 0
self.height = 0
self.width = 0
self.hidden = False
def visit(self):
return [ self.style.fore_bar, self.style.aft_bar, self.style.thumb, self.style.thumb_shadow ]
@@ -652,7 +763,7 @@ class Bar(renpy.display.core.Displayable):
self.hidden = True
return renpy.display.render.Render(width, height)
elif self.style.unscrollable == "insensitive":
self.set_style_prefix("insensitive_")
self.set_style_prefix("insensitive_", True)
self.hidden = False
@@ -745,8 +856,18 @@ class Bar(renpy.display.core.Displayable):
rv.add_focus(self, None, 0, 0, width, height)
return rv
def focus(self, default=False):
super(Bar, self).focus(default)
self.set_transform_event("hover")
def unfocus(self):
super(Bar, self).unfocus()
self.set_transform_event("idle")
def event(self, ev, x, y, st):
if not self.focusable:
@@ -782,7 +903,7 @@ class Bar(renpy.display.core.Displayable):
if map_event(ev, "bar_increase"):
value += self.adjustment.step
if ev.type in (MOUSEMOTION, MOUSEBUTTONUP, MOUSEBUTTONDOWN):
if ev.type in (pygame.MOUSEMOTION, pygame.MOUSEBUTTONUP, pygame.MOUSEBUTTONDOWN):
if self.style.bar_vertical:
@@ -822,7 +943,8 @@ class Bar(renpy.display.core.Displayable):
return self.adjustment.change(value)
return None
class Conditional(renpy.display.layout.Container):
"""
This class renders its child if and only if the condition is
+310 -96
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -25,7 +25,6 @@
import renpy
import pygame
from pygame.constants import *
import sys
import os
import time
@@ -44,10 +43,13 @@ cpu_idle = threading.Event()
cpu_idle.clear()
# Need to be +4, so we don't interfere with FFMPEG's events.
TIMEEVENT = USEREVENT + 4
PERIODIC = USEREVENT + 5
JOYEVENT = USEREVENT + 6
REDRAW = USEREVENT + 7
TIMEEVENT = pygame.USEREVENT + 4
PERIODIC = pygame.USEREVENT + 5
JOYEVENT = pygame.USEREVENT + 6
REDRAW = pygame.USEREVENT + 7
# All events except for TIMEEVENT and REDRAW
ALL_EVENTS = [ i for i in range(0, REDRAW + 1) if i != TIMEEVENT and i != REDRAW ]
# The number of msec between periodic events.
PERIODIC_INTERVAL = 50
@@ -91,8 +93,14 @@ class Displayable(renpy.object.Object):
focusable = False
full_focus_name = None
role = ''
# The event we'll pass on to our parent transform.
transform_event = None
# Can we change our look in response to transform_events?
transform_event_responder = False
def __init__(self, focus=None, default=False, style='default', **properties):
def __init__(self, focus=None, default=False, style='default', **properties): # W0231
self.style = renpy.style.Style(style, properties, heavy=True)
self.focus_name = focus
self.default = default
@@ -110,13 +118,14 @@ class Displayable(renpy.object.Object):
i.find_focusable(callback, focus_name)
def focus(self, default=False):
"""
Called to indicate that this widget has the focus.
"""
if not self.activated:
self.set_style_prefix(self.role + "hover_")
self.set_style_prefix(self.role + "hover_", True)
if not default and not self.activated:
if self.style.sound:
@@ -128,23 +137,27 @@ class Displayable(renpy.object.Object):
"""
if not self.activated:
self.set_style_prefix(self.role + "idle_")
self.set_style_prefix(self.role + "idle_", True)
def is_focused(self):
if renpy.display.focus.grab and renpy.display.focus.grab is not self:
return
return renpy.game.context().scene_lists.focused is self
def set_style_prefix(self, prefix):
def set_style_prefix(self, prefix, root):
"""
Called to set the style prefix of this widget and its child
widgets, if any.
`root` - True if this is the root of a style tree, False if this
hass been passed on to a child.
"""
if prefix == self.style.prefix:
return
# if prefix == self.style_prefix:
# return
self.style.set_prefix(prefix)
renpy.display.render.redraw(self, 0)
@@ -208,7 +221,7 @@ class Displayable(renpy.object.Object):
while worklist:
d = worklist.pop(0)
if d is None:
continue
@@ -324,6 +337,7 @@ class Displayable(renpy.object.Object):
xoff += xoffset
yoff += yoffset
if subpixel:
dest.subpixel_blit(surf, (xoff, yoff), main=main)
else:
@@ -331,6 +345,43 @@ class Displayable(renpy.object.Object):
return xoff, yoff
def set_transform_event(self, event):
"""
Sets the transform event of this displayable to event.
"""
if event == self.transform_event:
return
self.transform_event = event
if self.transform_event_responder:
renpy.display.render.redraw(self, 0)
def hide(self, st, at):
"""
Returns None if this displayable is ready to be hidden, or
a replacement displayable if it doesn't want to be hidden
quite yet.
"""
return None
def show(self):
"""
Called when the displayable is added to a scene list.
"""
def get_parameterized(self):
"""
If this is a ImageReference to a parameterized image, return
the get_parameterized() of the parameterized image. Otherwise,
return this displayable.
"""
return self
class ImagePredictInfo(renpy.object.Object):
"""
This stores information involved in image prediction.
@@ -342,6 +393,8 @@ class ImagePredictInfo(renpy.object.Object):
def __init__(self, ipi=None):
super(ImagePredictInfo, self).__init__()
# layer -> (tag -> image name)
self.images = { }
@@ -382,7 +435,7 @@ class SceneLists(renpy.object.Object):
things to the user.
"""
__version__ = 2
__version__ = 3
def after_setstate(self):
for i in renpy.config.layers + renpy.config.top_layers:
@@ -401,16 +454,24 @@ class SceneLists(renpy.object.Object):
self.at_list[i] = { }
self.layer_at_list[i] = (None, [ ])
if version < 3:
self.shown_window = False
def __init__(self, oldsl, ipi):
super(SceneLists, self).__init__()
# Has a window been shown as part of these scene lists?
self.shown_window = False
# A map from layer name -> list of
# (key, zorder, show time, animation time, displayable)
self.layers = { }
self.at_list = { }
self.layer_at_list = { }
self.image_predict_info = ipi
if oldsl:
for i in renpy.config.layers + renpy.config.top_layers:
@@ -447,10 +508,7 @@ class SceneLists(renpy.object.Object):
"""
for i in renpy.config.transient_layers:
self.layers[i] = [ ]
self.at_list[i].clear()
self.image_predict_info.images[i].clear()
self.layer_at_list[i] = (None, [ ])
self.clear(i, True)
def transient_is_empty(self):
"""
@@ -467,7 +525,28 @@ class SceneLists(renpy.object.Object):
return True
def add(self, layer, thing, key=None, zorder=0, behind=[ ], at_list=[ ], name=None):
def transform_state(self, old_thing, new_thing):
"""
If the old thing is a transform, then move the state of that transform
to the new thing.
"""
if old_thing is None:
return new_thing
old_transform = old_thing.get_parameterized()
if not isinstance(old_transform, renpy.display.motion.Transform):
return new_thing
new_transform = new_thing.get_parameterized()
if not isinstance(new_transform, renpy.display.motion.Transform):
new_thing = new_transform = renpy.display.motion.Transform(child=new_thing)
new_transform.take_state(old_transform)
return new_thing
def add(self, layer, thing, key=None, zorder=0, behind=[ ], at_list=[ ], name=None, atl=None, default_transform=None):
"""
This is called to add something to a layer. Layer is
the name of the layer that we need to add the thing to,
@@ -503,18 +582,44 @@ class SceneLists(renpy.object.Object):
at = None
st = None
if atl:
thing = renpy.display.motion.ATLTransform(atl, child=thing)
if key is not None:
hidekey = "hide$" + key
for index, (k, zo, st, at, d) in enumerate(l):
if k == key:
break
# If we're adding something with the same name as something
# that's hiding, remove the hiding thing.
if k == hidekey:
l.pop(index)
index = None
at = None
else:
index = None
at = None
st = None
if index is not None:
if zorder == zo:
old_thing = l[index][4]
# If the old thing was a transform, make sure the new thing
# is a transform, and then take the transform state.
thing = self.transform_state(old_thing, thing)
thing.set_transform_event("replace")
thing.show()
if zorder == zo: # W0631
l[index] = (key, zorder, st, at, thing)
return
else:
@@ -530,8 +635,12 @@ class SceneLists(renpy.object.Object):
else:
index = len(l)
thing = self.transform_state(default_transform, thing)
thing.set_transform_event("show")
thing.show()
l.insert(index, (key, zorder, st, at, thing))
def remove(self, layer, thing):
"""
Thing is either a key or a displayable. This iterates through the
@@ -546,22 +655,67 @@ class SceneLists(renpy.object.Object):
raise Exception("Trying to remove something from non-existent layer '%s'." % layer)
l = self.layers[layer]
l = [ (k, zo, st, at, d) for k, zo, st, at, d in l if k != thing if d is not thing ]
self.layers[layer] = l
newl = [ ]
now = get_time()
for i in l:
k, zo, st, at, d = i
if k == thing or d is thing:
# Should we keep this around while hiding it?
if k:
st = st or now
at = at or now
d = d.hide(now - st, now - at)
if d is not None:
k = "hide$" + k
newl.append((k, zo, st, at, d))
continue
newl.append(i)
self.layers[layer] = newl
self.at_list[layer].pop(thing, None)
self.image_predict_info.images[layer].pop(thing, None)
def clear(self, layer):
def clear(self, layer, hide=False):
"""
Clears the named layer, making it empty.
If hide is True, then objects are hidden. Otherwise, they are
totally wiped out.
"""
if layer not in self.layers is None:
raise Exception("Trying to clear non-existent layer '%s'." % layer)
now = get_time()
l = self.layers[layer]
newl = [ ]
self.layers[layer] = [ ]
for i in l:
k, zo, st, at, d = i
# Should we keep this around while hiding it?
if hide and k:
st = st or now
at = at or now
d = d.hide(now - st, now - at)
if d is not None:
k = "hide$" + k
newl.append((k, zo, st, at, d))
continue
self.layers[layer] = newl
self.at_list[layer].clear()
self.image_predict_info.images[layer].clear()
self.layer_at_list[layer] = (None, [ ])
@@ -586,7 +740,7 @@ class SceneLists(renpy.object.Object):
ll.append((k, zo, st or time, at or time, d))
l[:] = ll
def showing(self, layer, name):
"""
@@ -608,7 +762,11 @@ class SceneLists(renpy.object.Object):
if at_list:
for a in at_list:
rv = a(rv)
if isinstance(a, renpy.display.motion.Transform):
rv = a(child=rv)
else:
rv = a(rv)
f = renpy.display.layout.MultiBox(layout='fixed')
f.add(rv, time, time)
@@ -616,8 +774,36 @@ class SceneLists(renpy.object.Object):
rv.layer_name = layer
return rv
def remove_hidden(self):
"""
Goes through all of the layers, and removes things that are
hidden and are no longer being kept alive by their hide
methods.
"""
now = get_time()
for l in self.layers:
newl = [ ]
for i in self.layers[l]:
name, zo, st, at, d = i
if name and name.startswith("hide$") and st and at:
d = d.hide(now - st, now - at)
if d is None:
continue
i = (name, zo, st, at, d)
newl.append(i)
self.layers[l] = newl
class Display(object):
"""
This is responsible for managing the display window.
@@ -626,10 +812,6 @@ class Display(object):
@ivar window: The window that is being presented to the user.
@ivar sample_surface: A sample surface that is optimized for fast
blitting to the window, with alpha. Used to create other surfaces
from.
@ivar fullscreen: Is the window in fullscreen mode?
@ivar mouse: The mouse image, if we have one, or None if
@@ -653,7 +835,6 @@ class Display(object):
"""
def __init__(self, interface):
self.interface = interface
@@ -700,7 +881,7 @@ class Display(object):
# Convert the aspect ratio to be square.
iw, ih = im.get_size()
imax = max(iw, ih)
square_im = renpy.display.scale.PygameSurface((imax, imax), pygame.SRCALPHA, depth=32)
square_im = renpy.display.pgrender.surface_unscaled((imax, imax), True)
square_im.blit(im, ( (imax-iw)/2, (imax-ih)/2 ))
im = square_im
@@ -715,7 +896,7 @@ class Display(object):
# If we're in fullscreen mode, and changing to another mode, go to
# windowed mode first.
s = pygame.display.get_surface()
if s and (s.get_flags() & FULLSCREEN):
if s and (s.get_flags() & pygame.FULLSCREEN):
fullscreen = False
self.fullscreen = fullscreen
@@ -748,37 +929,31 @@ class Display(object):
if w < renpy.config.screen_width or h < renpy.config.screen_height:
continue
fsflag = FULLSCREEN
fsflag = pygame.FULLSCREEN
width = w
height = h
self.screen_xoffset = (width - renpy.config.screen_width) / 2
self.screen_yoffset = (height - renpy.config.screen_height) / 2
elif fullscreen:
fsflag = FULLSCREEN
fsflag = pygame.FULLSCREEN
# If a window exists of the right size and flags, use it. Otherwise,
# make our own window.
old_window = pygame.display.get_surface()
if ((old_window is not None) and
(old_window.get_size() == (width, height)) and
(old_window.get_flags() & FULLSCREEN == fsflag)):
(old_window.get_flags() & pygame.FULLSCREEN == fsflag)):
self.window = old_window
else:
self.window = pygame.display.set_mode((width, height), fsflag, 32)
self.window = renpy.display.pgrender.set_mode((width, height), fsflag, 32)
# Window title.
self.window_caption = None
self.set_window_caption()
# Sample surface that all surfaces are created based on.
sample = pygame.Surface((10, 10), 0, self.window)
self.sample_surface = sample.convert_alpha(self.window)
pygame.event.set_grab(False)
# Load the mouse image, if any.
@@ -810,6 +985,7 @@ class Display(object):
# Setup periodic event.
pygame.time.set_timer(PERIODIC, PERIODIC_INTERVAL)
def set_window_caption(self):
caption = renpy.config.window_title + renpy.store._window_subtitle
if caption == self.window_caption:
@@ -818,8 +994,10 @@ class Display(object):
self.window_caption = caption
pygame.display.set_caption(caption.encode("utf-8"))
def iconify(self):
pygame.display.iconify()
def can_redraw(self, first_pass):
"""
@@ -854,11 +1032,13 @@ class Display(object):
return True
def mouse_event(self, ev):
if ev.type == pygame.MOUSEMOTION or pygame.MOUSEBUTTONDOWN or pygame.MOUSEBUTTONUP:
self.mouse_event_time = get_time()
def show_mouse(self, pos, info):
"""
Actually shows the mouse.
@@ -878,13 +1058,14 @@ class Display(object):
by = my - myo
self.mouse_backing_pos = (bx, by)
self.mouse_backing = pygame.Surface((mw, mh), self.window.get_flags(), self.window)
self.mouse_backing = renpy.display.pgrender.surface((mw, mh), False)
self.mouse_backing.blit(self.window, (0, 0), (bx, by, mw, mh))
self.window.blit(mouse, (bx, by))
return bx, by, mw, mh
def hide_mouse(self):
"""
Actually hides the mouse.
@@ -901,6 +1082,7 @@ class Display(object):
return rv
def draw_mouse(self, show_mouse=True):
"""
This draws the mouse to the screen, if necessary. It uses the
@@ -961,6 +1143,7 @@ class Display(object):
return updates
def update_mouse(self):
"""
Draws the mouse, and then updates the screen.
@@ -1007,6 +1190,7 @@ class Display(object):
self.suppressed_blit = suppress_blit
self.surftree = surftree
def save_screenshot(self, filename):
"""
@@ -1019,7 +1203,6 @@ class Display(object):
if renpy.config.debug:
raise
pass
def screenshot(self, scale):
@@ -1027,9 +1210,9 @@ class Display(object):
Returns a string containing the contents of the window, as a PNG.
"""
surf = self.window.convert_alpha()
surf = renpy.display.pgrender.copy_surface(self.window, True)
surf = renpy.display.scale.smoothscale(surf, scale)
surf = surf.convert()
surf = renpy.display.pgrender.copy_surface(surf, False)
sio = cStringIO.StringIO()
renpy.display.module.save_png(surf, sio, 0)
@@ -1112,6 +1295,7 @@ class Interface(object):
self.timeout_time = None
self.last_event = None
self.current_context = None
self.roll_forward = None
# Should we reset the display?
self.display_reset = False
@@ -1158,7 +1342,10 @@ class Interface(object):
# for contexts outside the current one. This is used to restore those
# in the case where nothing has changed in the new context.
self.transition_info_stack = [ ]
# The time when the event was dispatched.
self.event_time = 0
def take_screenshot(self, scale):
"""
@@ -1168,6 +1355,7 @@ class Interface(object):
self.screenshot = self.display.screenshot(scale)
def get_screenshot(self):
"""
Gets the current screenshot, as a string. Returns None if there isn't
@@ -1179,6 +1367,7 @@ class Interface(object):
return self.screenshot
def lose_screenshot(self):
"""
This deallocates the saved screenshot.
@@ -1186,17 +1375,19 @@ class Interface(object):
self.screenshot = None
def show_window(self):
if not renpy.store._window:
return
if self.shown_window:
if renpy.game.context().scene_lists.shown_window:
return
if renpy.config.empty_window:
renpy.config.empty_window()
def do_with(self, trans, paired, clear=False):
if renpy.config.with_callback:
@@ -1218,21 +1409,25 @@ class Interface(object):
be transitioning from.
"""
# Show the window, if that's necessary.
self.show_window()
# Compute the overlay.
self.compute_overlay()
scene_lists = renpy.game.context().scene_lists
old_old_scene = self.old_scene
# Compute the scene.
self.old_scene = self.compute_scene(scene_lists)
if renpy.config.overlay_during_with and old_old_scene:
for i in renpy.config.overlay_layers:
self.old_scene[i] = old_old_scene[i]
# Get rid of transient things.
for i in renpy.config.overlay_layers:
scene_lists.clear(i)
scene_lists = renpy.game.context().scene_lists
scene_lists.replace_transient()
self.shown_window = False
scene_lists.shown_window = False
def set_transition(self, transition, layer=None, force=False):
"""
@@ -1256,7 +1451,9 @@ class Interface(object):
ev = pygame.event.poll()
if ev.type == NOEVENT:
if ev.type == pygame.NOEVENT:
# Seems to prevent the CPU from speeding up.
time.sleep(0.001)
return None
self.pushed_event = ev
@@ -1299,7 +1496,25 @@ class Interface(object):
self.last_event = ev
return ev
def compute_overlay(self):
if renpy.store.suppress_overlay:
return
# Figure out what the overlay layer should look like.
renpy.ui.layer("overlay")
for i in renpy.config.overlay_functions:
i()
if renpy.game.context().scene_lists.shown_window:
for i in renpy.config.window_overlay_functions:
i()
renpy.ui.close()
def compute_scene(self, scene_lists):
"""
This converts scene lists into a dictionary mapping layer
@@ -1334,6 +1549,7 @@ class Interface(object):
else:
raise renpy.game.QuitException()
def interact(self, clear=True, suppress_window=False, **kwargs):
"""
This handles an interaction, restarting it if necessary. All of the
@@ -1344,17 +1560,15 @@ class Interface(object):
if not suppress_window:
self.show_window()
# These things can be done once per interaction.
import time
start = time.time()
preloads = self.preloads
self.preloads = [ ]
try:
renpy.game.after_rollback = False
for i in renpy.config.start_interact_callbacks:
i()
@@ -1378,8 +1592,10 @@ class Interface(object):
self.restart_interaction = True
self.shown_window = False
renpy.game.context().scene_lists.shown_window = False
def interact_core(self,
show_mouse=True,
trans_pause=False,
@@ -1404,7 +1620,8 @@ class Interface(object):
@param suppress_underlay: This suppresses the display of the underlay.
"""
suppress_overlay = suppress_overlay or renpy.store.suppress_overlay
self.roll_forward = roll_forward
suppress_transition = renpy.config.skipping or renpy.game.less_updates
# The global one.
@@ -1462,8 +1679,10 @@ class Interface(object):
renpy.display.layout.size_groups.clear()
# Clear some events.
pygame.event.clear((MOUSEMOTION, PERIODIC,
TIMEEVENT, REDRAW))
pygame.event.clear((pygame.MOUSEMOTION,
PERIODIC,
TIMEEVENT,
REDRAW))
# Add a single TIMEEVENT to the queue.
pygame.event.post(self.time_event)
@@ -1471,14 +1690,12 @@ class Interface(object):
# Figure out the scene list we want to show.
scene_lists = renpy.game.context().scene_lists
# Figure out what the overlay layer should look like.
renpy.ui.layer("overlay")
# Remove the now-hidden things.
scene_lists.remove_hidden()
# Compute the overlay.
if not suppress_overlay:
for i in renpy.config.overlay_functions:
i()
renpy.ui.close()
self.compute_overlay()
# The root widget of everything that is displayed on the screen.
root_widget = renpy.display.layout.MultiBox(layout='fixed')
@@ -1548,11 +1765,7 @@ class Interface(object):
old_root.layers = { }
for layer in renpy.config.layers:
if layer in renpy.config.overlay_layers:
d = scene[layer]
else:
d = self.transition_from[None].layers[layer]
d = self.transition_from[None].layers[layer]
old_root.layers[layer] = d
old_root.add(d)
@@ -1562,9 +1775,10 @@ class Interface(object):
if not isinstance(trans, Displayable):
raise Exception("Expected transition to be a displayable, not a %r" % trans)
trans.show()
transition_time = self.transition_time.get(None, None)
root_widget.add(trans, transition_time, transition_time)
if trans_pause:
@@ -1646,7 +1860,9 @@ class Interface(object):
self.force_redraw = False
# Redraw the screen.
if needs_redraw and self.display.can_redraw(first_pass):
if (needs_redraw and
(first_pass or not pygame.event.peek(ALL_EVENTS)) and
self.display.can_redraw(first_pass)):
# If we have a movie, start showing it.
suppress_blit = renpy.display.video.interact()
@@ -1761,7 +1977,6 @@ class Interface(object):
if self.timeout_time != old_timeout_time:
# Always set to at least 1ms.
pygame.time.set_timer(TIMEEVENT, int(time_left * 1000 + 1))
old_timeout_time = self.timeout_time
# Handle autosaving, as necessary.
@@ -1776,7 +1991,7 @@ class Interface(object):
else:
ev = self.event_wait()
if ev.type == NOEVENT:
if ev.type == pygame.NOEVENT:
continue
if renpy.config.profile:
@@ -1790,7 +2005,7 @@ class Interface(object):
ev2 = self.event_peek()
if ev2 and ev2.type not in (NOEVENT, PERIODIC, REDRAW, QUIT):
if ev2 and ev2.type not in (pygame.NOEVENT, PERIODIC, REDRAW, pygame.QUIT):
ev = self.event_poll()
# Handle redraw timeouts.
@@ -1827,12 +2042,12 @@ class Interface(object):
renpy.display.behavior.skipping(ev)
# Handle quit specially for now.
if ev.type == QUIT:
if ev.type == pygame.QUIT:
self.quit_event()
# Merge mousemotion events.
if ev.type == MOUSEMOTION:
evs = pygame.event.get([MOUSEMOTION])
if ev.type == pygame.MOUSEMOTION:
evs = pygame.event.get([pygame.MOUSEMOTION])
if len(evs):
ev = evs[-1]
@@ -1840,12 +2055,11 @@ class Interface(object):
self.focused = True
# Handle focus notifications.
if ev.type == ACTIVEEVENT:
if ev.type == pygame.ACTIVEEVENT:
if ev.state & 1:
self.focused = ev.gain
# x, y = getattr(ev, 'pos', (0, 0))
x, y = pygame.mouse.get_pos()
x, y = getattr(ev, 'pos', pygame.mouse.get_pos())
x -= self.display.screen_xoffset
y -= self.display.screen_yoffset
+8 -7
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -24,9 +24,6 @@
import pygame
import renpy
import textwrap
import select
import sys
import os
import os.path
@@ -42,6 +39,10 @@ class ReportError(object):
# In the report method, Ren'Py may be in an ill-defined state.
def report(self, error_type):
import os.path
import pygame # W0404
pygame.display.init()
msg = "Ren'Py has experienced " + error_type + ".\n"
msg += "Left-click or space reloads, right-click or escape exits."
@@ -55,17 +56,17 @@ class ReportError(object):
y += self.font.get_linesize()
pygame.display.flip()
pygame.display.flip() # E1120
pygame.time.set_timer(pygame.USEREVENT + 1, 50)
while True:
if os.path.exists(commandfile):
if commandfile and os.path.exists(commandfile):
return True
ev = pygame.event.wait()
if ev.type == pygame.MOUSEBUTTONUP:
if ev.button == 1:
+4 -9
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -21,9 +21,8 @@
# This file contains code to manage focus on the display.
import renpy
import pygame
from pygame.constants import *
import renpy
class Focus(object):
@@ -169,18 +168,14 @@ def before_interact(roots):
for f, n in fwn:
if f is not current:
f.unfocus()
if current:
current.focus(default=True)
# This changes the focus to be the widget contained inside the new
# focus object.
def change_focus(newfocus, default=False):
global argument
rv = None
if grab:
@@ -217,7 +212,7 @@ def change_focus(newfocus, default=False):
# This handles mouse events, to see if they change the focus.
def mouse_handler(ev, x, y, default=False):
if ev.type not in (MOUSEMOTION, MOUSEBUTTONUP, MOUSEBUTTONDOWN):
if ev.type not in (pygame.MOUSEMOTION, pygame.MOUSEBUTTONUP, pygame.MOUSEBUTTONDOWN):
return
new_focus = renpy.display.render.focus_at_point(x, y)
+55 -45
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -20,16 +20,12 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import pygame
from pygame.constants import *
import xml.etree.ElementTree as etree
try:
import _renpy_font
pygame.font = _renpy_font
except:
pass
import _renpy_font
pygame.font = _renpy_font
import renpy
# This contains a map from (fn, size, bold, italics, underline) to the
@@ -78,15 +74,14 @@ class ImageFont(object):
def render(self, text, antialias, color, black_color=(0, 0, 0, 255), background=None):
if not text:
return pygame.Surface((0, self.height), 0,
renpy.game.interface.display.sample_surface)
return renpy.display.pgrender.surface((0, self.height), True)
xoff, _ = self.offsets[text[0]]
x = -xoff
y = 0
surf = pygame.Surface(self.size(text), 0,
renpy.game.interface.display.sample_surface)
surf = renpy.display.pgrender.surface(self.size(text), True)
for a, b in zip(text, text[1:]):
xoff, yoff = self.offsets[a]
surf.blit(self.chars[a], (x + xoff, y + yoff))
@@ -96,15 +91,14 @@ class ImageFont(object):
surf.blit(self.chars[text[-1]], (x + xoff, y + yoff))
if renpy.config.recolor_sfonts and \
(color != (255, 255, 255, 255) or black_color != (0, 0, 0, 255) ) and \
renpy.display.module.can_twomap:
(color != (255, 255, 255, 255) or black_color != (0, 0, 0, 255)):
newsurf = pygame.Surface(surf.get_size(), surf.get_flags(), surf)
newsurf = renpy.display.pgrender.surface(surf.get_size(), True)
renpy.display.module.twomap(surf, newsurf, color, black_color)
renpy.display.render.mutated_surface(newsurf)
surf = newsurf
renpy.display.render.mutated_surface(surf)
return surf
def get_linesize(self):
@@ -129,6 +123,8 @@ class SFont(ImageFont):
kerns,
charset):
super(SFont, self).__init__()
self.filename = filename
self.spacewidth = spacewidth
self.default_kern = default_kern
@@ -137,21 +133,21 @@ class SFont(ImageFont):
def load(self):
self.chars = { }
self.width = { }
self.advance = { }
self.offsets = { }
self.chars = { } # W0201
self.width = { } # W0201
self.advance = { } # W0201
self.offsets = { } # W0201
# Load in the image.
surf = renpy.display.im.Image(self.filename).load(unscaled=True)
sw, sh = surf.get_size()
height = sh
self.height = height
self.baseline = height
self.height = height # W0201
self.baseline = height # W0201
# Create space characters.
self.chars[u' '] = pygame.Surface((self.spacewidth, height), 0, surf)
self.chars[u' '] = renpy.display.pgrender.surface((self.spacewidth, height), True)
self.width[u' '] = self.spacewidth
self.advance[u' '] = self.spacewidth
self.offsets[u' '] = (0, 0)
@@ -207,6 +203,8 @@ class MudgeFont(ImageFont):
default_kern,
kerns):
super(MudgeFont, self).__init__()
self.filename = filename
self.xml = xml
self.spacewidth = spacewidth
@@ -215,10 +213,10 @@ class MudgeFont(ImageFont):
def load(self):
self.chars = { }
self.width = { }
self.advance = { }
self.offsets = { }
self.chars = { } # W0201
self.width = { } # W0201
self.advance = { } # W0201
self.offsets = { } # W0201
# Load in the image.
surf = renpy.display.im.Image(self.filename).load(unscaled=True)
@@ -251,12 +249,12 @@ class MudgeFont(ImageFont):
height = max(height, h)
self.height = height
self.baseline = height
self.height = height # W0201
self.baseline = height # W0201
# Create space characters.
if u' ' not in self.chars:
self.chars[u' '] = pygame.Surface((self.spacewidth, height), 0, surf)
self.chars[u' '] = renpy.display.pgrender.surface((self.spacewidth, height), True)
self.width[u' '] = self.spacewidth
self.advance[u' '] = self.spacewidth
self.offsets[u' '] = (0, 0)
@@ -299,16 +297,18 @@ def parse_bmfont_line(l):
class BMFont(ImageFont):
def __init__(self, filename):
super(BMFont, self).__init__()
self.filename = filename
def load(self):
self.chars = { }
self.width = { }
self.advance = { }
self.offsets = { }
self.kerns = { }
self.default_kern = 0
self.chars = { } # W0201
self.width = { } # W0201
self.advance = { } # W0201
self.offsets = { } # W0201
self.kerns = { } # W0201
self.default_kern = 0 # W0201
pages = { }
@@ -318,8 +318,8 @@ class BMFont(ImageFont):
kind, args = parse_bmfont_line(l)
if kind == "common":
self.height = int(args["lineHeight"])
self.baseline = int(args["base"])
self.height = int(args["lineHeight"]) # W0201
self.baseline = int(args["base"]) # W0201
elif kind == "page":
pages[int(args["id"])] = renpy.display.im.Image(args["file"]).load(unscaled=True)
elif kind == "char":
@@ -378,11 +378,22 @@ def register_bmfont(name=None, size=None, bold=False, italics=False, underline=F
def load_ttf(fn, size, bold, italics, underline, expand):
# Figure out the font index.
index = 0
if "@" in fn:
index, fn = fn.split("@", 1)
index = int(index)
try:
rv = pygame.font.Font(renpy.loader.load(fn), size)
f = renpy.loader.load(fn)
rv = _renpy_font.Font(f, size, index)
rv.set_bold(bold)
rv.set_italic(italics)
except:
except IOError:
# Let's try to find the font on our own.
fonts = [ i.strip().lower() for i in fn.split(",") ]
@@ -394,7 +405,7 @@ def load_ttf(fn, size, bold, italics, underline, expand):
for flags, ffn in v.iteritems():
for i in fonts:
if ffn.lower().endswith(i):
rv = pygame.font.Font(ffn, size)
rv = _renpy_font.Font(ffn, size, index)
rv.set_bold(bold)
rv.set_italic(italics)
break
@@ -404,7 +415,7 @@ def load_ttf(fn, size, bold, italics, underline, expand):
break
else:
# Let pygame try to find the font for us.
rv = pygame.font.SysFont(fn, size, bold, italics)
rv = pygame.sysfont.SysFont(fn, size, bold, italics)
rv.set_underline(underline)
@@ -432,9 +443,8 @@ def get_font(origfn, size, origbold=False, origitalics=False, underline=False, e
try:
rv = load_ttf(fn, size, bold, italics, underline, expand)
except:
if renpy.config.debug:
raise
raise Exception("Could not find font: %r" % ((fn, size, bold, italics, underline), ))
renpy.game.exception_info = "Finding font: %r" % ((fn, size, bold, italics, underline),)
raise
font_cache[(origfn, size, origbold, origitalics, underline, expand)] = rv
+1 -1
View File
@@ -1,4 +1,4 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
+140 -107
View File
@@ -1,4 +1,5 @@
# Copyright 2004-2009 PyTom <pytom@bishoujo.us>
# Copyright 2004-2010 PyTom <pytom@bishoujo.us>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -24,14 +25,12 @@
# cropping and scaling).
import renpy
import random
import math
import zipfile
import cStringIO
import threading
import pygame
from pygame.constants import *
# This is an entry in the image cache.
class CacheEntry(object):
@@ -82,12 +81,19 @@ class Cache(object):
# Is the preload_thread alive?
self.keep_preloading = True
# A map from image object to surface, only for objects that have
# been pinned into memory.
self.pin_cache = { }
# The preload thread.
self.preload_thread = threading.Thread(target=self.preload_thread_main)
self.preload_thread = threading.Thread(target=self.preload_thread_main, name="preloader")
self.preload_thread.setDaemon(True)
self.preload_thread.start()
def quit(self):
if not self.preload_thread.isAlive():
return
self.lock.acquire()
self.keep_preloading = False
self.lock.notify()
@@ -105,6 +111,7 @@ class Cache(object):
def clear(self):
self.lock.acquire()
self.pin_cache = { }
self.cache = { }
self.preloads = [ ]
self.first_preload_in_tick = True
@@ -146,9 +153,7 @@ class Cache(object):
else:
return
self.lock.acquire()
self.preloads.append(image)
self.lock.release()
# This returns the pygame surface corresponding to the provided
# image. It also takes care of updating the age of images in the
@@ -160,9 +165,7 @@ class Cache(object):
raise Exception("Expected an image of some sort, but got" + str(image) + ".")
if not image.cache:
surf = image.load()
surf = surf.convert_alpha(renpy.game.interface.display.window)
surf = image.load()
renpy.display.render.mutated_surface(surf)
return surf
@@ -180,15 +183,21 @@ class Cache(object):
ce = self.cache.get(image, None)
if ce is not None:
self.cache.release()
self.lock.release()
# Otherwise, we keep the lock, and load the image ourselves.
if ce is None:
surf = image.load()
has_alpha = surf.get_masks()[3]
surf = surf.convert_alpha(renpy.game.interface.display.window)
try:
if image in self.pin_cache:
surf = self.pin_cache[image]
else:
surf = image.load()
except:
self.lock.release()
raise
ce = CacheEntry(image, surf)
self.total_cache_size += ce.size
self.cache[image] = ce
@@ -202,33 +211,29 @@ class Cache(object):
# RLE detection. (ce.size is used to check that we're not
# 0 pixels big.)
if id(ce.surf) not in rle_cache and ce.size:
rle = not renpy.game.less_memory
# rle = image.rle
surf = ce.surf
# # If we don't know if the image is RLE or not, guess.
# # Only do so if the image has an alpha channel.
# if rle is None and has_alpha and not renpy.game.less_memory:
# sw, sh = surf.get_size()
# for i in range(0, 10):
# if surf.get_at((random.randint(0, sw-1),
# random.randint(0, sh-1)))[3] == 0:
# rle = True
# break
if rle:
# We must copy the surface, so we have a RLE-specific version.
rle_surf = ce.surf.convert_alpha(renpy.game.interface.display.window)
rle_surf.set_alpha(255, RLEACCEL)
rle_cache[id(ce.surf)] = rle_surf
renpy.display.render.mutated_surface(ce.surf)
idsurf = id(ce.surf)
if idsurf in pin_rle_cache:
rle_surf = pin_rle_cache[idsurf]
else:
rle_surf = renpy.display.pgrender.copy_surface(ce.surf)
rle_surf.set_alpha(255, pygame.RLEACCEL)
renpy.display.render.mutated_surface(rle_surf)
rle_cache[idsurf] = rle_surf
if renpy.config.debug_image_cache:
print "Added to rle cache:", image
self.lock.release()
# Move it into the current generation. This isn't protected by
# a lock, so in certain circumstances we could have an
@@ -239,10 +244,11 @@ class Cache(object):
if ce.time != self.time:
ce.time = self.time
self.size_of_current_generation += ce.size
# Done... return the surface.
return ce.surf
# This kills off a given cache entry.
def kill(self, ce):
@@ -326,7 +332,7 @@ class Cache(object):
def preload_thread_main(self):
while self.keep_preloading:
self.lock.acquire()
self.lock.wait()
self.lock.release()
@@ -349,7 +355,14 @@ class Cache(object):
try:
image = self.preloads.pop(0)
self.get(image)
if image not in preload_blacklist:
try:
self.get(image)
except:
preload_blacklist.add(image)
except:
pass
@@ -357,12 +370,70 @@ class Cache(object):
self.cleanout()
self.lock.release()
cache = Cache()
# If we have time, preload pinned images.
if self.keep_preloading and not renpy.game.less_memory:
workset = set(renpy.store._cache_pin_set)
# Remove things that are not in the workset from the pin cache,
# and remove things that are in the workset from pin cache.
for i in self.pin_cache.keys():
if i in workset:
workset.remove(i)
else:
if renpy.config.debug_image_cache:
print "IC Pin Clear", image
idsurf = id(self.pin_cache[i])
if idsurf in pin_rle_cache:
del pin_rle_cache[idsurf]
del self.pin_cache[i]
# For each image in the worklist...
for image in workset:
if image in preload_blacklist:
continue
# If we have normal preloads, break out.
if self.preloads:
break
# Otherwise, pin preload the image.
if renpy.config.debug_image_cache:
print "IC Pin Preload", image
try:
surf = image.load()
self.pin_cache[image] = surf
rle_surf = renpy.display.pgrender.copy_surface(surf)
rle_surf.set_alpha(255, pygame.RLEACCEL)
pin_rle_cache[id(surf)] = rle_surf
except:
preload_blacklist.add(image)
# A map from id(cached surface) to rle version of cached surface.
rle_cache = { }
# Same thing, for pinned surfaces.
pin_rle_cache = { }
# Images that we tried, and failed, to preload.
preload_blacklist = set()
cache = Cache()
def free_memory():
"""
Frees some memory.
@@ -370,7 +441,8 @@ def free_memory():
cache.clear()
rle_cache.clear()
pin_rle_cache.clear()
class ImageBase(renpy.display.core.Displayable):
"""
@@ -449,13 +521,13 @@ class Image(ImageBase):
super(Image, self).__init__(filename, **properties)
self.filename = filename
def load(self, unscaled=False):
def load(self, unscaled=False): # W0221
try:
if unscaled:
surf = renpy.display.scale.image_load_unscaled(renpy.loader.load(self.filename), self.filename)
surf = renpy.display.pgrender.load_image_unscaled(renpy.loader.load(self.filename), self.filename)
else:
surf = pygame.image.load(renpy.loader.load(self.filename), self.filename)
surf = renpy.display.pgrender.load_image(renpy.loader.load(self.filename), self.filename)
return surf
@@ -493,7 +565,7 @@ class ZipFileImage(ImageBase):
def load(self):
zf = zipfile.ZipFile(self.zipfilename, 'r')
sio = cStringIO.StringIO(zf.read(self.filename))
rv = pygame.image.load(sio, self.filename)
rv = renpy.display.pgrender.load_image(sio, self.filename)
zf.close()
return rv
@@ -542,8 +614,7 @@ class Composite(ImageBase):
else:
size = cache.get(self.images[0]).get_size()
rv = pygame.Surface(size, 0,
renpy.game.interface.display.sample_surface)
rv = renpy.display.pgrender.surface(size, True)
for pos, im in zip(self.positions, self.images):
rv.blit(cache.get(im), pos)
@@ -610,9 +681,7 @@ class FrameImage(ImageBase):
dw = self.width
dh = self.height
dest = pygame.Surface((dw, dh), 0,
renpy.game.interface.display.sample_surface)
dest = renpy.display.pgrender.surface((dw, dh), True)
rv = dest
source = cache.get(self.image)
@@ -687,18 +756,17 @@ class FrameImage(ImageBase):
tilew, tileh = srcsize
dstw, dsth = dstsize
surf2 = renpy.display.scale.PygameSurface(dstsize, 0, surf)
surf2 = renpy.display.pgrender.surface_unscaled(dstsize, surf)
for y in range(0, dsth, tileh):
for x in range(0, dstw, tilew):
surf2.blit(surf, (x, y))
surf = surf2
else:
if self.bilinear and renpy.display.module.can_bilinear_scale:
surf2 = renpy.display.scale.real_bilinear(surf, dstsize)
if self.bilinear:
surf2 = renpy.display.scale.real_smoothscale(surf, dstsize)
else:
surf2 = renpy.display.scale.real_transform_scale(surf, dstsize)
@@ -740,13 +808,7 @@ class SolidImage(ImageBase):
def load(self):
if self.color[3] != 255:
sample = renpy.game.interface.display.sample_surface
else:
sample = renpy.game.interface.display.window
rv = pygame.Surface((self.width, self.height), 0,
sample)
rv = renpy.display.pgrender.surface((self.width, self.height), True)
rv.fill(self.color)
return rv
@@ -759,8 +821,6 @@ class Scale(ImageBase):
def __init__(self, im, width, height, bilinear=True, **properties):
bilinear = bilinear and renpy.display.module.can_bilinear_scale
im = image(im)
super(Scale, self).__init__(im, width, height, bilinear, **properties)
@@ -782,7 +842,7 @@ class Scale(ImageBase):
else:
try:
renpy.display.render.blit_lock.acquire()
rv = pygame.transform.scale(child, (self.width, self.height))
rv = renpy.display.pgrender.transform_scale(child, (self.width, self.height))
finally:
renpy.display.render.blit_lock.release()
@@ -828,7 +888,7 @@ class FactorScale(ImageBase):
else:
try:
renpy.display.render.blit_lock.acquire()
rv = pygame.transform.scale(surf, (width, height))
rv = renpy.display.pgrender.transform_scale(surf, (width, height))
finally:
renpy.display.render.blit_lock.release()
@@ -858,29 +918,28 @@ class Flip(ImageBase):
im = image(im)
super(Flip, self).__init__(im, horizontal, vertical, **properties)
self.image = im
self.horizontal = horizontal
self.vertical = vertical
def load(self):
child = cache.get(self.image)
try:
renpy.display.render.blit_lock.acquire()
rv = pygame.transform.flip(child, self.horizontal, self.vertical)
rv = renpy.display.pgrender.flip(child, self.horizontal, self.vertical)
finally:
renpy.display.render.blit_lock.release()
return rv
def predict_files(self):
return self.image.predict_files()
class Rotozoom(ImageBase):
"""
@@ -911,7 +970,7 @@ class Rotozoom(ImageBase):
try:
renpy.display.render.blit_lock.acquire()
rv = pygame.transform.rotozoom(child, self.angle, self.zoom)
rv = renpy.display.pgrender.rotozoom(child, self.angle, self.zoom)
finally:
renpy.display.render.blit_lock.release()
@@ -1000,13 +1059,7 @@ class Map(ImageBase):
surf = cache.get(self.image)
if not renpy.display.module.can_map:
return surf
if self.force_alpha and not (surf.get_masks()[3]):
surf = surf.convert_alpha(renpy.game.interface.display.window)
rv = pygame.Surface(surf.get_size(), surf.get_flags(), surf)
rv = renpy.display.pgrender.surface(surf.get_size(), True)
renpy.display.module.map(surf, rv,
self.rmap, self.gmap, self.bmap, self.amap)
@@ -1045,13 +1098,7 @@ class Twocolor(ImageBase):
surf = cache.get(self.image)
if not renpy.display.module.can_twomap:
return surf
if self.force_alpha and not (surf.get_masks()[3]):
surf = surf.convert_alpha(renpy.game.interface.display.window)
rv = pygame.Surface(surf.get_size(), surf.get_flags(), surf)
rv = renpy.display.pgrender.surface(surf.get_size(), True)
renpy.display.module.twomap(surf, rv,
self.white, self.black)
@@ -1088,13 +1135,7 @@ class Recolor(ImageBase):
surf = cache.get(self.image)
if not renpy.display.module.can_linmap:
return surf
if self.force_alpha and not (surf.get_masks()[3]):
surf = surf.convert_alpha(renpy.game.interface.display.window)
rv = pygame.Surface(surf.get_size(), surf.get_flags(), surf)
rv = renpy.display.pgrender.surface(surf.get_size(), True)
renpy.display.module.linmap(surf, rv,
self.rmul, self.gmul, self.bmul, self.amul)
@@ -1127,13 +1168,7 @@ class MatrixColor(ImageBase):
surf = cache.get(self.image)
if not renpy.display.module.can_colormatrix:
return surf
if not (surf.get_masks()[3]):
surf = surf.convert_alpha(renpy.game.interface.display.window)
rv = pygame.Surface(surf.get_size(), surf.get_flags(), surf)
rv = renpy.display.pgrender.surface(surf.get_size(), True)
renpy.display.module.colormatrix(surf, rv, self.matrix)
@@ -1297,9 +1332,9 @@ im.matrix(%f, %f, %f, %f, %f.
h = h * math.pi / 180
cosVal = math.cos(h)
sinVal = math.sin(h)
lumR = 0.213;
lumG = 0.715;
lumB = 0.072;
lumR = 0.213
lumG = 0.715
lumB = 0.072
return matrix(
lumR+cosVal*(1-lumR)+sinVal*(-lumR),lumG+cosVal*(-lumG)+sinVal*(-lumG),lumB+cosVal*(-lumB)+sinVal*(1-lumB),0,0,
lumR+cosVal*(-lumR)+sinVal*(0.143),lumG+cosVal*(1-lumG)+sinVal*(0.140),lumB+cosVal*(-lumB)+sinVal*(-0.283),0,0,
@@ -1366,11 +1401,11 @@ class Tile(ImageBase):
surf = cache.get(self.image)
rv = renpy.display.pgrender.surface(size, True)
width, height = size
sw, sh = surf.get_size()
rv = pygame.Surface(size, 0, surf)
for y in range(0, height, sh):
for x in range(0, width, sw):
rv.blit(surf, (x, y))
@@ -1397,10 +1432,8 @@ class AlphaMask(ImageBase):
raise Exception("AlphaMask surfaces must be the same size.")
# Used to copy the surface.
rv = basesurf.convert_alpha(renpy.game.interface.display.window)
if renpy.display.module.can_munge:
renpy.display.module.alpha_munge(masksurf, rv, identity)
rv = renpy.display.pgrender.copy_surface(basesurf)
renpy.display.module.alpha_munge(masksurf, rv, identity)
return rv
@@ -1434,8 +1467,7 @@ def image(arg, loose=False, **properties):
if isinstance(arg, renpy.display.image.ImageReference):
arg.find_target()
return image(arg.target, loose=loose, **properties)
elif isinstance(arg, basestring):
return Image(arg, **properties)
@@ -1455,7 +1487,8 @@ def image(arg, loose=False, **properties):
raise Exception("Expected an image, but got a general displayable.")
else:
raise Exception("Could not construct image from argument.")
def load_image(fn):
"""
This loads an image from the given filename, using the cache.

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