Jump to content




[CC 1.33] [Beta 1.8.1] CCInput 0.27 (Big update!) - Play games on your giant monitor!


176 replies to this topic

#121 briman0094

  • Members
  • 18 posts

Posted 23 May 2012 - 05:29 PM

View Postroel15, on 21 May 2012 - 07:21 PM, said:

I'm working on a new update for CCInput. You can now freeze the player and this means you can use the spacebar and WASD keys in you program. The reason I'm not releasing it yet, is because i don't know how it should be activated. So can you tell me how you want it to be activated?

Will you, by any chance, add SMP support in this update too?

#122 Leo Verto

  • Members
  • 620 posts
  • LocationOver there

Posted 27 May 2012 - 11:06 PM

I think SMP support is gonna be difficult, you don't want someone to hack into your remote system.

But it would be totally awesome.

#123 Hackingroelz

    Peripheral Designer

  • Members
  • 213 posts
  • Locationthe Nether(lands)

Posted 28 May 2012 - 08:18 AM

View PostLeo Verto, on 27 May 2012 - 11:06 PM, said:

I think SMP support is gonna be difficult, you don't want someone to hack into your remote system.

But it would be totally awesome.

I could change it so every receiver gets an unique ID.

#124 LolHens

  • Members
  • 9 posts

Posted 01 June 2012 - 12:02 PM

Activated and deactivated by right clicking with the keyboard
or just by holding the keyboard
or maybe both, changeable in the config

#125 L5132

  • New Members
  • 9 posts

Posted 19 June 2012 - 08:04 PM

Maybe only the person who placed the iblock receiver can use the keyboard with it? I would think that would help with the SMP issues. I know that IC2 has a personal safe that they have and once you place and right click it only you can use it. Don't know how that works exactly but I would assume that you could do it somewhat like a computer is saved, then have a text file with user names allowed to use it. Like I say though, I don't know exactly how they code it, but it seems like this is at least an idea.

#126 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 28 June 2012 - 01:13 AM

View Postroel15, on 02 April 2012 - 12:59 PM, said:

The most important feature can be used with os.pullEvent(). If you want to know all the function you can type "peripheral.getMethods("side")"(I'm not sure if that's right, buti it should be something like that)
Is it
event, pram = peripheral.call("side", os.pullEvent("key"))


#127 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 28 June 2012 - 01:21 AM

View Postroel15, on 28 May 2012 - 08:18 AM, said:

View PostLeo Verto, on 27 May 2012 - 11:06 PM, said:

I think SMP support is gonna be difficult, you don't want someone to hack into your remote system.

But it would be totally awesome.

I could change it so every receiver gets an unique ID.


#128 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 28 June 2012 - 01:23 AM

View Postroel15, on 28 May 2012 - 08:18 AM, said:

View PostLeo Verto, on 27 May 2012 - 11:06 PM, said:

I think SMP support is gonna be difficult, you don't want someone to hack into your remote system.

But it would be totally awesome.

I could change it so every receiver gets an unique ID.
You would also need to make the remote ID set able so you can hide the iblock without having to worry about not being able to turn the remote off and back on. Or make it so right clicking a non iblock will turn the remote back on, on the last ID.

#129 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 28 June 2012 - 03:01 AM

View Postroel15, on 02 April 2012 - 12:59 PM, said:

The most important feature can be used with os.pullEvent(). If you want to know all the function you can type "peripheral.getMethods("side")"(I'm not sure if that's right, buti it should be something like that)
event, a=peripheral.call("bottom",os.pullEvent("key"))
Respons
No such method key
Please do everyone a huge favore and include all Apis and peripheral methods in the original post. Using peripheral.getMethods("side") just gives me a table which I don't know how to print.

#130 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 28 June 2012 - 03:45 AM

View PostButtmuncher, on 21 March 2012 - 08:36 PM, said:

OMG I DOWNLOADED IT USING BOTH THE MODS FOLDER AND MC.JAR AND ONE DIDN'T ADD ANYTHING AND THE OTHER GAVE ME AN ERROR REPORT I CANT READ! FIX THIS PERIPHERAL PLEASE! THIS IS THE SECOND OR THIRD PERIPHERAL THAT IS BROKEN!
If mod is inside a folder that's inside a folder thats in your mods folder then you need to move the mod up a level and rename the first folder to be the name of the second folder then delete the second folder

#131 Hackingroelz

    Peripheral Designer

  • Members
  • 213 posts
  • Locationthe Nether(lands)

Posted 28 June 2012 - 05:42 AM

View PostElrond1369, on 28 June 2012 - 03:01 AM, said:

View Postroel15, on 02 April 2012 - 12:59 PM, said:

The most important feature can be used with os.pullEvent(). If you want to know all the function you can type "peripheral.getMethods("side")"(I'm not sure if that's right, buti it should be something like that)
event, a=peripheral.call("bottom",os.pullEvent("key"))
Respons
No such method key
Please do everyone a huge favore and include all Apis and peripheral methods in the original post. Using peripheral.getMethods("side") just gives me a table which I don't know how to print.


I meant the normal os.pullEvent(), not a method in my peripheral. Here’s an example
local event, par1, par2 = os.pullEvent()
if event == "key" then
print(par1)
end

The methods that are in the peripheral need to be cleaned up (you don't even need the remote in order for them to work) and
I might just delete them, but this is how you get them:
local methods = peripheral.getMethods(side)
for i=1, #methods do
	print(methods[i])
end


#132 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 28 June 2012 - 03:26 PM

View Postroel15, on 28 June 2012 - 05:42 AM, said:

View PostElrond1369, on 28 June 2012 - 03:01 AM, said:

View Postroel15, on 02 April 2012 - 12:59 PM, said:

The most important feature can be used with os.pullEvent(). If you want to know all the function you can type "peripheral.getMethods("side")"(I'm not sure if that's right, buti it should be something like that)
event,a=peripheral.call("bottom",os.pullEvent("key"))
Respons
No such method key
Please do everyone a huge favore and include all Apis and peripheral methods in the original post. Using peripheral.getMethods("side") just gives me a table which I don't know how to print.


I meant the normal os.pullEvent(), not a method in my peripheral. Here’s an example
local event, par1, par2 = os.pullEvent()
if event == "key" then
print(par1)
end

The methods that are in the peripheral need to be cleaned up (you don't even need the remote in order for them to work) and
I might just delete them, but this is how you get them:
local methods = peripheral.getMethods(side)
for i=1, #methods do
	print(methods[i])
end
The computer isn't responding to the remote. My iBlock is hooked up to my computer. My remote is linked to the Iblock
I've tryed
sleep(2)
event, pram1=os.pullEvent("key")
I've also tryed
peripheral.call("bottom","getKeyPressed")
May you please tell me how to get this working
Edit: the controller isn't working I can't play worm with it

#133 JinglebellsMan9

  • New Members
  • 4 posts

Posted 30 June 2012 - 07:15 PM

Seems like CCInput does not like Tekkit. =/

I have already changed the CCInput Id's for the keyboard/iblock so that it doesn't conflict with any other mod.
Extracted Files, placed CCinput Folder into Mods folder of my tekkit folder in my .techniclauncher folder in %appdata%

Seems odd to be conflicting with Buildcraft. =/

[Edit: However, if I remove CCInput, everything loads up and works fine....]

Minecraft: V1.2.5
CCinput: "0.27 for MC 1.2.5"

[Error Log In spoiler] VVVV
Spoiler


#134 Googie2149

  • New Members
  • 4 posts

Posted 01 July 2012 - 01:36 AM

I got bored and decided to make you a few keyboard sprites. I'm terrible at spriting, so these look terrible. Feel free to not use them :P/>

Beige (sorta) keyboard with a slight tilt (and either it has a shadow or it's a very thick keyboard): Posted Image

Black keyboard with shadow: Posted Image

Attached Thumbnails

  • Attached Image: Keyboard.png
  • Attached Image: lg.png


#135 Elrond1369

  • Members
  • 34 posts
  • LocationUnited States

Posted 18 July 2012 - 06:59 PM

It looks like another mod that uses wireless communication is jamming the signal from the remote. I know that sounds crazy but one time I installed wireless redstone chicken bones edition and a CCTV mod, when I turn the CCTV mod on, the wireless redstone gets stuck in it state before I closed the game. When I have the remote in my hand and right click on the iBlock it says test two 3 digit numbers and then "this remotes id is" id number but the light turns red meaning that its off. I right click to turn it back on but the computer does not respond. The key I'm pressing is the up or down arrow

#136 Soundlogic

  • New Members
  • 3 posts

Posted 20 July 2012 - 04:44 AM

I have a few requests:
1) Could I see the changes you made to the snake code?
2) Could we have a event when the remote is turned on?
3) When we stop holding the remote could it automatically turn off?
If any of these things are already in, could someone tell me where they are?
Thank you,
Sound Logic

#137 Hackingroelz

    Peripheral Designer

  • Members
  • 213 posts
  • Locationthe Nether(lands)

Posted 21 July 2012 - 10:27 AM

I'm almost done with the new update for CCInput. It wil include lots of bug fixes and a way to block your movement so your can use bubttons like WASD.

#138 kaj

  • Members
  • 43 posts

Posted 23 July 2012 - 11:43 AM

ok, yet to try this (just managed to install)
but incase you don't already know, I think there is an item id clash with the CCPDA peripheral (also released on here).
pretty sure it's the IBlock.
I'm trying this first because it sounds more interesting, but it mite be nice if you spoke with eachother.
Both your mods seem very interesting.
Just a heads up.

#139 meeeeep

  • New Members
  • 1 posts

Posted 24 July 2012 - 09:36 PM

HOW DO I USE THIIS?!?!?!?!!?!?!!?!?!??!!?!?!

#140 briman0094

  • Members
  • 18 posts

Posted 24 July 2012 - 09:39 PM

View Postmeeeeep, on 24 July 2012 - 09:36 PM, said:

HOW DO I USE THIIS?!?!?!?!!?!?!!?!?!??!!?!?!

Step 1: Turn off Caps Lock
Step 2: Change font size to default
Step 3: Read the first post for usage information





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users