6.10 Development

In this forum we discuss the future of Ren'Py, both bug fixes and longer-term development. Pre-releases are announced and discussed here.
Message
Author
User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: 6.10 Development

#31 Post by PyTom »

Yes, it should be fairly small.

What's more, the user will be able to pick which variant of the language he wants to use. There will be two new statements added to the language:

rpy version <x>

will cause the rest of the file to be parsed using rpy version <x>.

rpy default version <x>

will cause all future files to be parsed using rpy version <x>.


I do have a vague idea that namespace support in Ren'Py might at some point become a good idea. (So that one can easily combine two games that use the same labels, images, and maybe even python functions and variables.) But I think that will strictly be extending the language, without changing existing code.


The current road map is as follows:

6.11 will:
- Add support for optional OpenGL acceleration.
- As necessary to support the previous goal, rewrite some of the special-purpose functions in terms of the transform system.
- Update more of the tutorial.

6.12 will:
- Jump us to Python 2.7 (beta?)
- Jump us to a more modern pygame. (This may move up to 6.11)
- Rewrite the Python handling
- Include the rpy2 language improvements.
- Move Character and certain other classes from the guts of Ren'Py into .rpy files, where people can more easily understand them.
- Finish the tutorial.
- Add a new default theme.

7.0 will:
- Be mostly a marketing release.

I'm also starting to think about how the Python 2 -> Python 3 transition will work, but I don't have concrete plans about that yet. Obviously, existing Python 2 games will need to be supported for gameplay forever. I'll probably also want to support development of Python 2 games for at least a couple of years, until all of the in-development games are released.

(I don't expect the Python 2->3 change to really affect Ren'Py games that much.)
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

delta
Epitome of Generic
Posts: 525
Joined: Sat Dec 22, 2007 12:59 pm
Projects: yes
Contact:

Re: 6.10 Development

#32 Post by delta »

holy, is that an actual roadmap? that is nice to have indeed.

In other news, I couldn't help noticing that you rather quietly dropped the ramplen parameter from ImageDissolve's documentation. Since it's rather important and I use it a lot I'd like to as what's up with that.
The rest is left as an exercise for the reader.

User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: 6.10 Development

#33 Post by PyTom »

ramplen may be ignored when OpenGL is used. It's not clear that I'll be able to support it --- especially on systems that don't have support for fragment shaders.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: 6.10 Development

#34 Post by PyTom »

An update on the ramplen issue: It now looks like I'll be able to support it, provided the ramplen is a power of two.

That makes the following assumptions about the user's hardware:
* It supports ARB_multitexture, with at least 4 texture units.
* It supports ARB_texture_env_combine
* It supports either ARB_texture_env_crossbar _or_ NV_texture_env_combine4

If these are not supported, then dissolves will be shut off. That includes both ImageDissolve and regular Dissolve.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

duanemoody
Regular
Posts: 100
Joined: Fri Oct 02, 2009 2:32 pm
Projects: American Jurassic
Organization: Pier 7 Media
Location: Arizona
Contact:

Re: 6.10 Development

#35 Post by duanemoody »

PyTom wrote:When Ren'Py uses a Transform (including an ATL transform) to display an image, it will record the position. If an image with the same tag is displayed with a transform, Ren'Py will initialize the new transform with the old position. If the new image doesn't use a transform, one is implicitly added. The upshot of this is that Ren'Py will now remember where things were positioned on the screen.
One might infer from the above statement that this applies to sprites positioned with Position(). One might also spend half an hour trying to figure out what they did wrong in their code when it proves not to be the case.

One might even conceivably waste another ten minutes scouring documentation until they hit an obscure part of a changelog that explained Position()'s stepmother locked her in the basement and she never got to go to the ATL dance like all the other position-related functions.

But thankfully we are all seasoned vets here and that never happens.

User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: 6.10 Development

#36 Post by PyTom »

I'm kind of mulling over a 6.10.3 release, maybe next weekend. This would be very limited in scope, probably restricted to:

- Renaming some new methods that could conflict with cardgame and other User-defined displayables.
- Updating/recompiling ffmpeg so that it works with more theora files.

What do people think? Is there anything else that should be taken care of before NaNoRenO?
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

duanemoody
Regular
Posts: 100
Joined: Fri Oct 02, 2009 2:32 pm
Projects: American Jurassic
Organization: Pier 7 Media
Location: Arizona
Contact:

Re: 6.10 Development

#37 Post by duanemoody »

I'd like a way to save images like composite to files. Documentation is sketchy on how to pass displayables to native pygame methods like image.save. The paperdoll maker would be an example of where this could be useful. If there's an obvious way of doing this I apologize.

User avatar
jack_norton
Lemma-Class Veteran
Posts: 4084
Joined: Mon Jul 21, 2008 5:41 pm
Completed: Too many! See my homepage
Projects: A lot! See www.winterwolves.com
Tumblr: winterwolvesgames
Contact:

Re: 6.10 Development

#38 Post by jack_norton »

A feature I had suggested time ago but probably was lost among all the others was to add a support for drag&drop, I think could be useful for many projects. Of course, not a priority right now (depending how long would it take).
follow me on Image Image Image
computer games

User avatar
PyTom
Ren'Py Creator
Posts: 16096
Joined: Mon Feb 02, 2004 10:58 am
Completed: Moonlight Walks
Projects: Ren'Py
IRC Nick: renpytom
Github: renpytom
itch: renpytom
Location: Kings Park, NY
Contact:

Re: 6.10 Development

#39 Post by PyTom »

Just to clarify, 6.10.3 is intended as a pure bug-fix release, to maximize usefulness and stability for NaNoRenO. So I don't really plan to add features to it.

I'm not sure that being able to save a displayable to a file is a feature I want to support. It would be a totally different code path, especially when we're using GL rendering. Wouldn't a better approach be to just output code that creates the image from data stored in an rpa file?

Drag and Drop can probably be a cookbook recipe, at least for 6.10, and then move into Ren'Py in 6.11.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom
Software > Drama • https://www.patreon.com/renpytom

nibl
Regular
Posts: 36
Joined: Sun Feb 14, 2010 2:59 am
Projects: Lit - Literacy Teaching Game
Contact:

Re: 6.10 Development

#40 Post by nibl »

PyTom wrote:Drag and Drop can probably be a cookbook recipe, at least for 6.10, and then move into Ren'Py in 6.11.
PyTom, you suggested I use the Cardgame framework for the educational game I'm working on (the student/player has to rearrange letters with the mouse to spell words correctly).

Two questions: Will Cardgame be patched in the next release, and how would a Drag and Drop feature of Cookbook recipe differ from Cardgame?

Thanks.

Post Reply

Who is online

Users browsing this forum: No registered users