Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]Sourcemaps support #6

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 56 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,59 @@ var inject = require('glsl-inject-defines')
var defines = require('glsl-token-defines')
var descope = require('glsl-token-descope')
var clean = require('./lib/clean-suffixes')
var string = require('glsl-token-string')
// var string = require('glsl-token-string')
var scope = require('glsl-token-scope')
var depth = require('glsl-token-depth')
var topoSort = require('./lib/topo-sort')
var copy = require('shallow-copy')

module.exports = function (deps) {
return inject(Bundle(deps).src, {
GLSLIFY: 1
// Mock glsl-token-string
// as it doesn't support sourcemaps
const sourceMap = require('source-map')
const convert = require('convert-source-map');
const string = (tokens) => {
const output = [];
const map = new sourceMap.SourceMapGenerator();

let line = 1
let column = 1

tokens.forEach(token => {
if (token.type === 'eof') return

output.push(token.data)

map.addMapping({
source: token.source,
original: {
line: token.original.line,
column: token.original.column,
},
generated: {
line: line,
column: column
},
});

const lines = token.data.split(/\r\n|\r|\n/)
line += lines.length - 1
column = lines.length > 1 ?
lines[lines.length - 1].length :
(column + token.data.length)
})

const src = output.join('')
const mapJSON = map.toString()
const mapComment = convert.fromJSON(mapJSON).toComment()

return src + '\n' + mapComment
}

module.exports = function (deps, opts) {
// return inject(Bundle(deps, opts).src, {
// GLSLIFY: 1
// })
return Bundle(deps, opts).src
}

function Bundle (deps) {
Expand Down Expand Up @@ -44,7 +87,7 @@ function Bundle (deps) {
}

this.src = string(this.src)
this.src = string(clean(trim(tokenize(this.src))))
// this.src = string(clean(trim(tokenize(this.src))))
}

var proto = Bundle.prototype
Expand All @@ -59,6 +102,14 @@ proto.preprocess = function (dep) {

for (var i = 0; i < tokens.length; i++) {
var token = tokens[i]
token.source = dep.file

// Save original position
token.original = {
line: token.line,
column: Math.max(token.column - token.data.length + 1, 0)
}

if (token.type !== 'preprocessor') continue
if (!glslifyPreprocessor(token.data)) continue

Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"url": "http://hughsk.io/"
},
"dependencies": {
"convert-source-map": "^1.5.0",
"glsl-inject-defines": "^1.0.1",
"glsl-token-defines": "^1.0.0",
"glsl-token-depth": "^1.1.1",
Expand All @@ -22,13 +23,15 @@
"glsl-token-whitespace-trim": "^1.0.0",
"glsl-tokenizer": "^2.0.2",
"murmurhash-js": "^1.0.0",
"shallow-copy": "0.0.1"
"shallow-copy": "0.0.1",
"source-map": "^0.5.6"
},
"devDependencies": {
"gl": "^2.1.5",
"gl": "^4.0.3",
"gl-shader": "^4.0.6",
"glslify-deps": "^1.2.1",
"standard": "^5.4.1",
"tap-spec": "^4.1.1",
"tape": "^3.5.0"
},
"repository": {
Expand Down