MrSapps / alive

EFFORTS HAVE NOW MOVED TO https://github.com/AliveTeam/alive_reversing Unofficial open source implementation of ALIVE engine that powers Oddworld Abes Oddysee and Oddworld Abes Exoddus.
MIT License
104 stars 9 forks source link

Allow more than 1 active subtitle/multi-line subs, and formatting #57

Open MrSapps opened 8 years ago

MrSapps commented 8 years ago

Currently if more than one sub title is active it won't render:

                // TODO: Render all active subs, not just the first one
                current_subs = subs[0]->Text().c_str();
                if (subs.size() > 1)
                {
                    LOG_WARNING("Too many active subtitles " << subs.size());
                }

And if a subtitle spans more than 1 line its draw as 1 line - i.e \n is ignored.

Additionally basic formatting such as [i]test[/i] should work. Probably at least i,b and u.

MrSapps commented 7 years ago

This is half done now, [i]test[/i] [b]test[/b] works. But displaying more than one sub does not.