Giter Site home page Giter Site logo

cheapglk's People

Contributors

cspiegel avatar erkyrath avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cheapglk's Issues

Recursive call to gli_mktime on Win32

In cgdate.c, there is this:

#ifdef WIN32
#define mktime gli_mktime

Then later on:

#ifdef WIN32
time_t gli_mktime (struct tm * timeptr)
{
...
    time_t ret = mktime(timeptr) - offset;
}

But since mktime has been defined as gli_mktime, this will call itself instead of calling the standard library function.

The simplest fix may be:

#define mktime(tm) gli_mktime(tm)
...
time_t ret = (mktime)(timeptr) - offset;

to avoid macro expansion inside of gli_mktime.

Command-line arguments for resource loading

glk_stream_open_resource() only works when running from a blorb file. We would like a way to support this call in a non-blorb context.

Proposal (from discussion with Graham):

./terp -dataresource 3:FILENAME ...

This means that when calling glk_stream_open_resource() or glk_stream_open_resource_uni() with argument 3, the given filename will be opened. Multiple -dataresource arguments may be given. When running from a blorb, an argument overrides the blorb contents if the number matches.

(Glk library arguments are single-dash, interpreter arguments are double-dash. Sorry, it seemed clever when I was thirty.)

This feature will go into remglk also.

EDIT: -dataresource 3:FILENAME, no equals sign.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.