Register FAQ Search Today's Posts Mark Forums Read
Go Back   JazzJackrabbit Community Forums » Open Forums » General Jazz Jackrabbit Talk

Online JCS level editor [moved from JJ2+]

Reply
 
Thread Tools
DarkB DarkB's Avatar

JCF Member

Joined: Jul 2008

Posts: 494

DarkB is doing well so far

Aug 9, 2009, 10:11 PM
DarkB is offline
Reply With Quote
Online JCS level editor [moved from JJ2+]

Quote:
Originally Posted by Jerrythabest View Post
Would also be cool to host a JCS server So that others can join to see it (that's a live 'making of' ) and possibly (after getting permission from the host) help building.


That would be a great start for my never-really-started-but-I-did-make-a-thread-for-it-somewhere-on-this-board 'Lets Make A Level' project. Just cut the level into a few pieces and assign those to the participants. While they are able to design their own stuff inside the assigned area, they can easily link up with the areas around them to improve the level's 'flow'.
I think it would be cool to have this 'online level editor'
dunno if is possible to make this..
__________________

Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

Aug 12, 2009, 03:36 PM
FQuist is offline
Reply With Quote
Quote:
Originally Posted by DarkB View Post
I think it would be cool to have this 'online level editor'
dunno if is possible to make this..
It's possible to make an online level editor that runs on a web page, however, if you use common web techniques (AJAX) the resulting load is too high for most webservers. JAVA or something might be a solution, but who wants to use THAT? (as a client, not as a coder) I think most luck would come from hooking up jcs.exe with something that changes its memory or shares it with other players, as someone has already done. I think the project was abandoned, unfortunately.
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 12, 2009, 11:49 PM
djazz is offline
Reply With Quote
What about this:
I working on a web-based JCS using JavaScript and PHP, it's not much preassure on the server, because the PHP is generating the tileset image, level data only, Ajax is only needed if you want to save. You can put tiles in the lvl, nothing more yet. No save feature because I don't know how to make the 2D arrays into J2l words.
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
DarkB DarkB's Avatar

JCF Member

Joined: Jul 2008

Posts: 494

DarkB is doing well so far

Aug 12, 2009, 11:58 PM
DarkB is offline
Reply With Quote
Quote:
Originally Posted by DJazz View Post
What about this:
I working on a web-based JCS using JavaScript and PHP, it's not much preassure on the server, because the PHP is generating the tileset image, level data only, Ajax is only needed if you want to save. You can put tiles in the lvl, nothing more yet. No save feature because I don't know how to make the 2D arrays into J2l words.
great, keep workin'
__________________

Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.

Last edited by DarkB; Aug 13, 2009 at 12:30 AM.
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Aug 13, 2009, 01:02 PM
Jerrythabest is offline
Reply With Quote
Quote:
Originally Posted by DJazz View Post
Ajax is only needed if you want to save.
Well, that's the whole point: you need to keep open connections to send your locally-made-changes to the server or another client. If you are interactively JCSing with someone else you'll either have to connect the clients directly, or put your server under a heavier load.
__________________
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 13, 2009, 01:35 PM
djazz is offline
Reply With Quote
Quote:
Originally Posted by DarkB View Post
great, keep workin'
Here is a screenshot of the web-based JCS: http://djazz.mine.nu/files/webJCS.png
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
plunK plunK's Avatar

JCF Member

Joined: Apr 2008

Posts: 514

plunK is an asset to this forum

Aug 13, 2009, 07:00 PM
plunK is offline
Reply With Quote
Quote:
Originally Posted by DJazz View Post
Here is a screenshot of the web-based JCS: http://djazz.mine.nu/files/webJCS.png
That looks quite neat actually. Only 1 problem. There are probably a good thousand at lest tilesets and people tend to avoid standards, and many use customs, how will you deal with that?
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 13, 2009, 09:53 PM
djazz is offline
Reply With Quote
Quote:
Originally Posted by plunK View Post
That looks quite neat actually. Only 1 problem. There are probably a good thousand at lest tilesets and people tend to avoid standards, and many use customs, how will you deal with that?
Put a upload function, people can upload tilesets, but the sets need to be admitted by an admin, so that spam-sets not get published (the JJm music uploader works the same way). Or let people enter an url to the ZIP/J2T files, maybe from J2o?
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

Aug 14, 2009, 05:15 AM
FQuist is offline
Reply With Quote
Why not plug into Jazz2Online somehow to get the tilesets? That way you only get approved ones.

I'm interested in testing this - I'm an experienced webdeveloper so I might have suggestions.

What I'm wondering is, how is it collaborative? The problem with AJAX isn't keeping a connection open (the point of AJAX is that it doesn't) but that if you want realtime collaboration you need a huge amount of requests/updates to the server. That was what broke my tool: it used one request per tile. That'd bring the server down in no time. Browser protection prevents you from opening a connection using javascript to another client. How is the level editor collaborative if it only uses AJAX while saving? Is it collaborative the way google docs is? You save a file, someone else can open it?
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 14, 2009, 06:05 AM
djazz is offline
Reply With Quote
So, this found I when I looked out the new html5 standard coming (hopefully) in a couple of years, but some features already exists (FF 3.5, more maybe):
HTML 5 for a better Web

Some parts of the site:
Quote:
- Drag and drop, copy and paste
Drag and drop support is also part of the HTML 5 specification. It is mainly based on the drag and drop support already available for a while in Internet Explorer. So the implementation of browsers that follow HTML 5 is compatible.

- Running heavy tasks on the browser using Web workers
[...] A better solution is to use Web workers. These are background processes that can execute a given segment of JavaScript code. The main process and the worker processes communicate via a messaging API.

- Responsive browser-server communication with Web Sockets
The XmlHttpRequest object (AJAX) allowed browsers to communicate with the server without reloading the page. However, when you want to send more information to the server, you need to wait for the response and setup a new connection to send a new request.
Web Sockets are meant to address this problem by allowing bidirectional communication within the same HTTP connection.
Sounds interesting, with this new features a online-collaborative-JCS would be made much easier. Let me hear what you think

EDIT1: Shouldn't this be on the JCS sub-forum?

EDIT2: Here is a web-worker example: http://www.whatwg.org/demos/workers/primes/page.html

EDIT3: I've uploaded the web-JCS so that you can try it out. Click here!
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler

Last edited by djazz; Aug 14, 2009 at 09:00 AM.
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

Aug 14, 2009, 09:02 AM
FQuist is offline
Reply With Quote
Would suggest some indication that tiles are being loaded after you select a tileset. Also, I presume the collaboration feature's not there yet?

EDIT: Oh wait, I totally misread your posts, you never announced a collaboration feature. Bummer.

In any case I would suggest thinking twice about replication offline JCS' layout for web use. I don't know what the goal of your app is, but offline layouts don't necessarily adapt to online ones well. Would suggest rethinking how JCS should work, so that a webJCS has added value above the regular one (ease of use, features that you would only be able to offer on the internet (for example: integration into existing information places, collaboration)
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

plunK plunK's Avatar

JCF Member

Joined: Apr 2008

Posts: 514

plunK is an asset to this forum

Aug 14, 2009, 10:14 AM
plunK is offline
Reply With Quote
I just opened the link to your web JCS. It works, but it ran and almost frooze loading (which took about 5 minutes) then it nearly freezes again when trying to change layers =\
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 14, 2009, 10:19 AM
djazz is offline
Reply With Quote
Quote:
Originally Posted by plunK View Post
I just opened the link to your web JCS. It works, but it ran and almost frooze loading (which took about 5 minutes) then it nearly freezes again when trying to change layers =\
That's because it not use Web Workers yet, and when click a layer button it create the array containing all tiles.
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
DarkB DarkB's Avatar

JCF Member

Joined: Jul 2008

Posts: 494

DarkB is doing well so far

Aug 14, 2009, 12:51 PM
DarkB is offline
Reply With Quote
Yes it also freeze when trying to see the mask of tiles, but is a good start of this project keep working!
__________________

Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

Aug 14, 2009, 02:05 PM
FQuist is offline
Reply With Quote
Quote:
Originally Posted by DJazz View Post
That's because it not use Web Workers yet, and when click a layer button it create the array containing all tiles.
I think you can probably make it load better without web workers.

Also, this might be interesting: http://www.sitepoint.com/article/mul...ng-javascript/
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 14, 2009, 02:09 PM
djazz is offline
Reply With Quote
Quote:
Originally Posted by plunK View Post
I just opened the link to your web JCS. It works, but it ran and almost frooze loading (which took about 5 minutes) then it nearly freezes again when trying to change layers =\
I fixed so that when a tileset is loaded, it's stored as png on the server, then it don't use the Tileset class everytime. The layers NEED Web Workers (or maybe another solution?), I've tried with big lvls (256x64) and those take loong time to load. I'm also thinking of include a save function (cookies).
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

Aug 14, 2009, 02:59 PM
FQuist is offline
Reply With Quote
Cookies? How are you going to store 256+64 tiles+events on 8 layers in a cookie? I would recommend to either save it in a homegrown format and then later on allow downloads by converting it to a j2l file (needs a 1-way .j2l implementation), or saving/loading in .j2l on the server (needs 2-way)

The app feels much more responsive now. Alternatively, maybe it works to not make 256*64 tags but create them only when you scroll. (or rather, replace the contents of those images). I'm a javascript/html n00b, this might actually make the app slower...
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 14, 2009, 03:04 PM
djazz is offline
Reply With Quote
If the data should be saved on the server, then make a php that save it. Or save it locally with cookies or LocalStorage(read that html5 page)

And the page is faster because of... read my last post
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
DarkB DarkB's Avatar

JCF Member

Joined: Jul 2008

Posts: 494

DarkB is doing well so far

Aug 14, 2009, 10:54 PM
DarkB is offline
Reply With Quote
I have the same problem the tileset respond very hard when change it.
But now when I change the layers it works very fast that's good.
__________________

Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.
Cpp Cpp's Avatar

JCF Member

Joined: Mar 2001

Posts: 1,557

Cpp is doing well so far

Aug 14, 2009, 11:00 PM
Cpp is offline
Reply With Quote
You could always use a Flash version. Flash cookies can store larger amounts of data.
__________________
<a href="http://nmap.org/"><img border="0" alt="Nmap Security Scanner" src="http://images.insecure.org/nmap/images/prop/nmap_bnr_matrix_pfos.gif"/></a>
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 15, 2009, 12:37 AM
djazz is offline
Reply With Quote
I think I found the store solution: localStorage
http://people.w3.org/mike/localstorage.html

But it's not supported in all browsers
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
DarkB DarkB's Avatar

JCF Member

Joined: Jul 2008

Posts: 494

DarkB is doing well so far

Aug 15, 2009, 12:43 AM
DarkB is offline
Reply With Quote
Quote:
Originally Posted by Cpp View Post
You could always use a Flash version. Flash cookies can store larger amounts of data.
yes this idea is actually good
__________________

Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

Aug 15, 2009, 12:46 AM
FQuist is offline
Reply With Quote
Quote:
Originally Posted by DJazz View Post
If the data should be saved on the server, then make a php that save it. Or save it locally with cookies or LocalStorage(read that html5 page)
Are you suggesting I code it, or am I misreading you? If the latter, no time, sorry
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Aug 15, 2009, 01:08 AM
djazz is offline
Reply With Quote
Quote:
Originally Posted by Fquist View Post
Are you suggesting I code it, or am I misreading you? If the latter, no time, sorry
I code on that, it's my server. The J2t fetch from J2o isn't something to think about yet, cause the web-JCS has no need for that yet. It's still a beta.
Something that someone could help me with is, my web-JCS working with the levels as 2D arrays, would be great if this somehow was converted into J2L "words" and "dictionary" so you actually can run the level in JJ2.
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Jun 5, 2010, 05:51 AM
djazz is offline
Reply With Quote
New WebJCS

Okay, time for a revival..
The old WebJCS got old, as it used old technology.
I have now made a new version, which works much better than the old, but it is still a alpha version. (Works best in Firefox, and it's slow in Chrome.. weird..)

This version got some new features than the old, which are multiple select in tileset and drag to place tiles. I will add new features, such as multiple layers, parallax scrolling, animations, level properties, open/save, collaborative level editing and so on...

And, why would you use this instead of the normal JCS you may wonder?
Because you maybe want to load/view/edit a level where you don't have access to JCS, or (which I will add later) if you want to work collaborative with someone else.

At the moment there only exists one tileset, but I will implant a "get tileset from j2o" feature so u can use any tileset on there (FQuist's idea), or maybe I will add "upload tileset" if you want to use your custom ones.




This is a project I make for fun, so, enjoy!
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler

Last edited by djazz; Jun 5, 2010 at 07:52 AM.
Stijn Stijn's Avatar

Administrator

Joined: Mar 2001

Posts: 6,964

Stijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to behold

Jun 5, 2010, 07:34 AM
Stijn is offline
Reply With Quote
Quote:
Originally Posted by DJazz View Post
At the moment there only exists one tileset, but I will implant a "get tileset from j2o" feature so u can use any tileset on there
I'd rather you don't, we don't have that much spare bandwith...
Tik Tik's Avatar

JCF Member

Joined: Mar 2001

Posts: 4,982

Tik is doing well so far

Jun 5, 2010, 11:03 PM
Tik is offline
Reply With Quote
This looks very promising, although I don't understand the point entirely if there won't be a collaborative aspect. I guess it allows people who don't have access to JJ2 or JCS to make their own levels which is a potentially excellent achievement.

I echo the sentiment that it shouldn't grab from J2O, though. Either have the tilesets preloaded for speed or host them on the same server, for courtesy's sake, or allow uploads.
__________________
&lt;table width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot;&gt;&lt;a href=&quot;http://www.jj2.info&quot; title=&quot;waaaait&quot; style=&quot;font-size: 14pt;font-family: Verdana;text-decoration: none;&quot;&gt;penny on the train track&lt;/a&gt;
&lt;a href=&quot;/junk/tick/tickbot.html&quot;&gt;readme&lt;/a&gt; - &lt;a href=&quot;/junk/tick/quote.html&quot;&gt;quotes&lt;/a&gt; - &lt;a href=&quot;/junk/tick/rsg.html&quot;&gt;formats&lt;/a&gt; - are you brained? *\o/*&lt;/td&gt;&lt;td width=&quot;1%&quot; align=&quot;right&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
Slaz Slaz's Avatar

JCF Member

Joined: Aug 2004

Posts: 1,314

Slaz is OFF DA CHARTSlaz is OFF DA CHARTSlaz is OFF DA CHART

Jun 6, 2010, 01:18 AM
Slaz is offline
Reply With Quote
The best use for this would be the fact that no JJ2 installation is required to edit levels. Thus for example, you could easely make small tweaks to your levels while at work. And collaborative editing could bring interesting community projects, perhaps LMAT level editing? Anyway, I'd say this is, together with JJ2+, one of the coolest JJ2 related programs of today!
__________________
Add SlazRabbit on Xbox Live if you want to play some GoW1/2/3/J or Destiny1/2.
Jazz Jackrabbit 2 Forever!!
Civilian Defence Force - Jazz2 Visual Fantasers
Troglobite Troglobite's Avatar

JCF Member

Joined: May 2008

Posts: 691

Troglobite is a forum legendTroglobite is a forum legendTroglobite is a forum legend

Jun 6, 2010, 12:42 PM
Troglobite is offline
Reply With Quote
Great work. The editor seems to be off to a nice start, and I can't wait to see more functions implemented.

Quote:
Originally Posted by Hunter View Post
1. Have WebJCS here on J2O available to authors. It would allow quick edits to levels, eliminating the need of re-uploading. As Slaz noted, people would be able to tweak their levels without having access to their JJ2 installation.
I like this idea. However, I have the perspective of an uploader, not someone in charge of J2O, so I don't know if there are any issues with it for them.
__________________

Lexicographer: Someone who writes dictionaries
Neophyte: A novice, or newbie
Hemisemidemiquaver: In music, a sixty-fourth note


Exit Troglobite, Stage Left
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Jun 8, 2010, 09:35 AM
djazz is offline
Reply With Quote
Seems like good ideas, ill keep them in mind

Anyway, I have implanted a save feature (File -> Save), which works very good! If you find any bugs, please let me know

Edit1: Now you can use any tileset, in the menu,

Edit2: Now you can skip that passwordbox!

Edit3: Now all layers!

__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler

Last edited by djazz; Jun 9, 2010 at 05:53 AM.
Stijn Stijn's Avatar

Administrator

Joined: Mar 2001

Posts: 6,964

Stijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to behold

Jun 8, 2010, 11:27 AM
Stijn is offline
Reply With Quote
Quote:
Originally Posted by Troglobite View Post
I like this idea. However, I have the perspective of an uploader, not someone in charge of J2O, so I don't know if there are any issues with it for them.
I think it'd be possible, at least technically. We store the files as individual .j2l and .j2t files already, so only a few changes would be required to add an interface on top of that. The real issue is of course whether uploaders would agree with their levels being "open" like that. It's something that should be discussed, were we to go through with it.
Violet CLM Violet CLM's Avatar

JCF Éminence Grise

Joined: Mar 2001

Posts: 10,990

Violet CLM has disabled reputation

Jun 8, 2010, 01:42 PM
Violet CLM is offline
Reply With Quote
I'm not sure if this is an admin post or a personal post, but I don't think that even an "open" level (were we to incorporate such distinctions) should allow edits to be uploaded automatically. This is the internet; there are trolls here. But I could imagine a system wherein you could make some small changes to someone's upload (fixing bugs, mostly) and submit your edit to the uploader for approval. The uploader would get an email notification (or PM, depending on their user preferences, I suppose) and could choose whether to approve the edit as a replacement for the original version, to approve it as an attachment (like an alternate version built to support a slightly different gametype), or disapprove it, if it's trash or something. Honestly that might even be more useful with tilesets, so that you could fix people's palettes and such more easily, if they'd allow you to.
__________________
Troglobite Troglobite's Avatar

JCF Member

Joined: May 2008

Posts: 691

Troglobite is a forum legendTroglobite is a forum legendTroglobite is a forum legend

Jun 8, 2010, 04:11 PM
Troglobite is offline
Reply With Quote
Quote:
Originally Posted by Stijn View Post
I think it'd be possible, at least technically. We store the files as individual .j2l and .j2t files already, so only a few changes would be required to add an interface on top of that. The real issue is of course whether uploaders would agree with their levels being "open" like that. It's something that should be discussed, were we to go through with it.
I was thinking more along the lines of the level only being editable by the uploader, so that if say, they check j2o on a computer without jazz, and see there's a review of their level pointing out a major bug, they can fix the bug then and there online, without having to use JCS.

Although now that it's been mentioned, I think some kind of open level system would be worth looking into.
__________________

Lexicographer: Someone who writes dictionaries
Neophyte: A novice, or newbie
Hemisemidemiquaver: In music, a sixty-fourth note


Exit Troglobite, Stage Left
Grytolle Grytolle's Avatar

JCF Member

Joined: Sep 2004

Posts: 4,126

Grytolle is a forum legendGrytolle is a forum legendGrytolle is a forum legend

Jun 9, 2010, 03:55 AM
Grytolle is offline
Reply With Quote
Quote:
Originally Posted by Hunter View Post
This is why I suggested there should be a password.
Just let the uploader manage which usernames are allowed to edit it (j2o-logins)
__________________
<center></center>
Stijn Stijn's Avatar

Administrator

Joined: Mar 2001

Posts: 6,964

Stijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to behold

Jun 9, 2010, 03:55 AM
Stijn is offline
Reply With Quote
That sounds rather unwieldy.
BlueDragon

JCF Member

Joined: Jan 2009

Posts: 97

BlueDragon is doing well so far

Jun 9, 2010, 05:04 AM
BlueDragon is offline
Reply With Quote
Quote:
Originally Posted by Hunter View Post
Yeah, that's what my idea originally was.



This is why I suggested there should be a password. Only editors trusted by the author would be able to edit the level this way. The original author could be able to delete attachments that are too bad (maybe they shouldn't be entirely deleted from J2O - some authors might possibly delete files that are completely fine but they don't like for some reason (or is that their right?)).
I imagine something like this on the upload page:

Community contribution settings:





I'm in favour of this "automatically post as attachment" option because there are authors who don't come to J2O very often or leave the site for a longer while and are therefore unable to approve proposed changes.

Another idea: something like a level wiki. I don't mean an encyclopaedia, of course, but something following the same idea that anyone can be an editor, contributing to a project as much as they could. People would say what they've changed (and specify whether it's a minor or major change), there could also be an option to compare changes. Malicious changes would be reverted with one click.
You got a jazzjackrabbit.wikia.com :P
NovaStar

JCF Member

Joined: Sep 2005

Posts: 1,791

NovaStar is doing well so far

Jun 9, 2010, 06:03 AM
NovaStar is offline
Reply With Quote
Quote:
Originally Posted by Hunter View Post
I'm in favour of this "automatically post as attachment" option because there are authors who don't come to J2O very often or leave the site for a longer while and are therefore unable to approve proposed changes.
That doesn't give you license to just edit their levels willy nilly though. Bad reason for favour! Bad!
__________________
NOM
djazz djazz's Avatar

JCF Member

Joined: Feb 2009

Posts: 257

djazz is OFF DA CHARTdjazz is OFF DA CHARTdjazz is OFF DA CHART

Jun 9, 2010, 06:09 AM
djazz is offline
Reply With Quote
Hey, I'm here to say that the save function now works very well! I made it so the passwordbox is not displayed, layer 4 is loaded by default in JCS, all layers are saved.. I will now move on to Level properties and Layer properties

About this.. to moderate others levels.. isn't really related to WebJCS as it's only J2L files, but it would be cool to somehow implant WebJCS there too.

Edit1: Implanted Level properties!
__________________
WebJCS 2 (new and in progress)
WebJCS 1 (old but complete)
SGIP Simple Games in Progress list
Level Packer v2 - With a GUI!
PHP Tileset Compiler

Last edited by djazz; Jun 9, 2010 at 12:38 PM.
Violet CLM Violet CLM's Avatar

JCF Éminence Grise

Joined: Mar 2001

Posts: 10,990

Violet CLM has disabled reputation

Jun 9, 2010, 03:00 PM
Violet CLM is offline
Reply With Quote
Project Forward once made a very collaborative level and there are plenty of smaller collaborations among two or three people, all of which seem to work out. I think making the collaboration this much more direct, along the lines of Google Docs, could only lead to bigger and better things.
__________________
Troglobite Troglobite's Avatar

JCF Member

Joined: May 2008

Posts: 691

Troglobite is a forum legendTroglobite is a forum legendTroglobite is a forum legend

Jun 9, 2010, 09:37 PM
Troglobite is offline
Reply With Quote
Quote:
Originally Posted by Unknown Rabbit View Post
Project Forward once made a very collaborative level and there are plenty of smaller collaborations among two or three people, all of which seem to work out. I think making the collaboration this much more direct, along the lines of Google Docs, could only lead to bigger and better things.
I would very much support a system like that which encourages collaborations.
__________________

Lexicographer: Someone who writes dictionaries
Neophyte: A novice, or newbie
Hemisemidemiquaver: In music, a sixty-fourth note


Exit Troglobite, Stage Left
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump

All times are GMT -8. The time now is 11:19 AM.