working on external file resources

This commit is contained in:
Danny Yoo 2011-08-09 18:03:15 -04:00
parent 8f7400b602
commit 2d695d700a
7 changed files with 39 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,4 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/resource))
(file-resource "images/humpback.jpg")

View File

@ -72,6 +72,7 @@
let-values
let*-values
define-struct
struct
if
cond
else

View File

@ -1,5 +1,4 @@
#lang s-exp "lang/kernel.rkt"
(provide (all-defined-out))
(define-struct bytes-resource (name type bytes))
(require "resource/main.rkt")
(provide (all-from-out "resource/main.rkt"))

22
resource/compile-time.rkt Normal file
View File

@ -0,0 +1,22 @@
#lang s-exp "../lang/kernel.rkt"
(provide file-resource)
(require "structs.rkt")
;; Macros for recording the definition of resources in a program.
(require (for-syntax racket/base))
;; file-resource:
;;
(define-for-syntax (file-resource stx)
(syntax-case stx ()
[(_ path)
(syntax/loc stx
(let-syntax ([compile-time-code
(lambda (stx)
(displayln "at compile time")
#'(void))])
(resource path)))]))

4
resource/main.rkt Normal file
View File

@ -0,0 +1,4 @@
#lang s-exp "../lang/kernel.rkt"
(require "compile-time.rkt")
(provide (all-from-out "compile-time.rkt"))

6
resource/structs.rkt Normal file
View File

@ -0,0 +1,6 @@
#lang s-exp "../lang/kernel.rkt"
(provide (all-defined-out))
(struct resource (path))