Difference between revisions of "User talk:Furrykef"

From Learning Languages Through Video Games
Jump to navigationJump to search
(→‎Dragon Warrior: new section)
Line 57: Line 57:
  
 
I do have a question: What is the "policy" on remakes? Would the SNES and GBC versions of Dragon Warrior be useful? I ask because I'm going back to concentrating on my "Side x Side" project for the time being, and that's what I'm playing. I'll be transcribing the text to pull out kanji for vocabulary anyway, so it would be no big issue to post it into the wiki as I go. Thoughts? - [[User:X loto|X loto]] 03:57, 28 March 2012 (UTC)
 
I do have a question: What is the "policy" on remakes? Would the SNES and GBC versions of Dragon Warrior be useful? I ask because I'm going back to concentrating on my "Side x Side" project for the time being, and that's what I'm playing. I'll be transcribing the text to pull out kanji for vocabulary anyway, so it would be no big issue to post it into the wiki as I go. Thoughts? - [[User:X loto|X loto]] 03:57, 28 March 2012 (UTC)
 +
 +
:I don't really have a policy on it. Do whatever makes the most sense. - [[User:furrykef|furrykef]] ([[User talk:furrykef|Talk at me]]) 04:13, 28 March 2012 (UTC)

Revision as of 04:13, 28 March 2012

I was thinking it would be helpful to show/hide furigana for templates with reading. This way, you could by default hide furigana and only show them if you are unsure about the reading. This site [1] seems to have an easy way of adding hide/show, but it requires a change to Common.js which I do not have access to. Or pehaps it is already possible and I do not know how? What do you think? Blutorange 19:50, 3 January 2011 (UTC)

I've had that idea too. I might get around to it soon, but I've been extremely busy lately... - furrykef (Talk at me) 14:04, 4 January 2011 (UTC)

Hymmnos-Reading

Did you have the Hymmnos font installed (see link at template)? It should look like this: Hymmnos Example.jpg Or do you think displaying the original script is not a good idea? Blutorange 09:23, 8 January 2011 (UTC)

Sorry, my mistake. - furrykef (Talk at me) 09:36, 8 January 2011 (UTC)

Voice Clips

Do you know how the legal situation is with uploading voice clips from games here and would you even want that (server costs, ...)? Blutorange 09:37, 21 January 2011 (UTC)

Voice clips are fine with me, though it'd certainly be easier to avoid legal trouble with older games than with ones that have just come out. I'd really love to get the clips from Star Fox 64, for instance, but, alas, I have almost no idea how to rip them. - furrykef (Talk at me) 09:44, 21 January 2011 (UTC)
It's possible without "hard ripping" http://www.megaupload.com/?d=G5PRJ0GG :) Although it requires triggering each voice you want to record in-game... If the voice clips are to be hosted on the wiki, you will need to allow an audio format for file uploading on the wiki (currently only images are allowed). For playing the audio, the easiest way would be too use <embedded> html syntax, or perhaps implement an audio player plugin on the wiki...? Blutorange 14:43, 21 January 2011 (UTC)
Will you consider allowing .mp3 files to be added (or your preferred format; I hear others are better with the filesize/quality tradeoff)? Will you consider allowing .anki files to be added? Jcdietz03 13:20, 23 April 2011 (UTC)
MP3: Yes, I will try to add support soon. I prefer OGG, but MP3 might be better because not everybody has OGG support. I've yet to look into what would be the best solution here (for one thing, I'd like the user to be able to play clips without leaving the page). As for Anki decks, I'm not sure. For one thing, not everybody uses the same methodology for making Anki decks. I doubt many Anki users use a model like mine. (For example, I typically create three cards per Japanese fact.) - furrykef (Talk at me) 13:32, 23 April 2011 (UTC)
I've added html rendering to my script and the result looks like this: http://img706.imageshack.us/f/japaneseexample.png/ . The voice clips are implemented with a few lines of javascript, the onmouse-furigana simply use the tag. Implementing this in the wiki should be easy. I think this is the tidiest of of showing the readings, and it also forces you to try to remember how the kanji. Optionally, it would be easy to add some button to trigger showing only kana (and kanji on mouseover?).
The javascript for supporting voice is this:
function DHTMLSound(surl) {
     document.getElementById("dummyspan").innerHTML=
     "<embed src=\'"+surl+"\' hidden=true autostart=true loop=false>";
     }
This works much better than <embed> and doesn't crash the browser.
You would then use it like this:
<span id=dummyspan></span>
     <form>
     <input type="button" value="Voice" onClick="DHTMLSound(\'' .. voicefile .. '\')">
     </form>
Move the mouse over this text.
Blutorange 23:37, 21 January 2011 (UTC)
I still don't know if I like the furigana idea. Furigana like that would be a mess to edit, and quizzing yourself on the reading was never really the intended purpose. As for the voice clip stuff, maybe, but I'm busy with many other things at the moment, so I'm probably only going to concern myself with basic wiki administration for a while... - furrykef (Talk at me) 06:30, 24 January 2011 (UTC)
Provided the reader understands a fair amount of kanji used in the game, leaving out the reading line makes the whole text shorter and so it may actually be easier to read. Also, if one wants to look up furigana, locating the reading in one big line of kana may be harder than moving the mouse over the the unknown kanji. Anyway, I think we should leave it to the reader to decide how to display the information. As for implementation, if the reading for each kanji word is known, it is easy to format the whole line once in kanji and once in only-kana. As for editing, I'm currently writing my text with an IME using a modified dictionary, so that "かんじ" converts +感<かん>じ or +漢字<かんじ>, thus making it ridicolous easy to provide furigana for each word. I then parse this to produce wiki syntax. Syntax such as +感<かん>じ is definitely easier to edit than, say , but I was thinking one could make this even easier by making just a slight change to the template, eg:
{{jp-r-en|「振仮名」とは、漢字又は外来語の上に発音を示す仮名。|「 ふりがな 」 とは、 かんじ また は がいらいご の うえ に はつおん を しめ す かな 。」 | Furigana are characters above kanji or foreign words displaying the pronunciation.}}
is easy to read an edit in the wiki, and can easily be parsed by javascript with
  var array_kanji = kanji.split(" ")
  var array_furigana = furigana.split(" ")
  if (array_kanji.length == array_furigana.length  and  user_wants_it_like_this == true) {
     document.write( span title=furigana[0] kanji[0] ... ) }
  else {
     document.write( kanji | furigana ...) }
This way it's also quite error proof, when the furigana don't match you can just fall back to the current style, and it would preserve backwards compatibility with the current syntax. You could also add an optional argument to the template plain_reading = (default)true you would have to explicitly set it to true, avoiding coincidental matches in the amount of spaces. Blutorange 15:27, 24 January 2011 (UTC)
And here's a working demo of how this might look: [2] or [3]. Note that this is on my home pc, so links may not work when I'm offline.

Dragon Warrior

I may assist in kanjification later on, but my first goal of posting all of my work for this game is done. Woohoo! "Wish list" to "Almost finished" in one week! ^_^

I do have a question: What is the "policy" on remakes? Would the SNES and GBC versions of Dragon Warrior be useful? I ask because I'm going back to concentrating on my "Side x Side" project for the time being, and that's what I'm playing. I'll be transcribing the text to pull out kanji for vocabulary anyway, so it would be no big issue to post it into the wiki as I go. Thoughts? - X loto 03:57, 28 March 2012 (UTC)

I don't really have a policy on it. Do whatever makes the most sense. - furrykef (Talk at me) 04:13, 28 March 2012 (UTC)